Home
last modified time | relevance | path

Searched refs:ci_equal (Results 1 – 25 of 30) sorted by relevance

12

/dports/graphics/proj/proj-7.2.1/src/apps/
H A Dprojinfo.cpp821 if (ci_equal(format, "all")) { in main()
934 if (ci_equal(kind, "crs") || ci_equal(kind, "srs")) { in main()
940 } else if (ci_equal(kind, "datum")) { in main()
972 if (ci_equal(value, "contains")) { in main()
986 if (ci_equal(value, "NONE")) { in main()
989 } else if (ci_equal(value, "BOTH")) { in main()
1006 if (ci_equal(value, "none")) { in main()
1012 } else if (ci_equal(value, "sort")) { in main()
1029 } else if (ci_equal(std::string(value), in main()
1069 } else if (ci_equal(arg, "--3d")) { in main()
[all …]
H A Dprojsync.cpp196 if (ci_equal(value, "contains")) { in main()
198 } else if (ci_equal(value, "intersects")) { in main()
/dports/graphics/proj/proj-7.2.1/src/iso19111/
H A Dio.cpp943 if (ci_equal(v, name)) { in lookForChild()
955 if (ci_equal(v, name) || ci_equal(v, name2)) { in lookForChild()
968 if (ci_equal(v, name) || ci_equal(v, name2) || ci_equal(v, name3)) { in lookForChild()
980 if (ci_equal(v, name) || ci_equal(v, name2) || ci_equal(v, name3) || in lookForChild()
981 ci_equal(v, name4)) { in lookForChild()
1859 if (ci_equal(unitName, "METER") || ci_equal(unitName, "METRE")) { in buildUnit()
2722 ci_equal(csType, "ellipsoidal") in buildCS()
2724 : ci_equal(csType, "ordinal") in buildCS()
2747 if (ci_equal(csType, "ellipsoidal")) { in buildCS()
8201 if (ci_equal(pair.key, key)) { in hasParamValue()
[all …]
H A Dinternal.cpp87 bool ci_equal(const std::string &a, const std::string &b) noexcept { in ci_equal() function
95 bool ci_equal(const std::string &a, const char *b) noexcept { in ci_equal() function
103 bool ci_equal(const char *a, const char *b) noexcept { in ci_equal() function
H A Dcommon.cpp205 if (ci_equal(l_name, "degree")) { in _exportToWKT()
207 } else if (ci_equal(l_name, "grad")) { in _exportToWKT()
209 } else if (ci_equal(l_name, "metre")) { in _exportToWKT()
686 if (ci_equal(*(id->codeSpace()), metadata::Identifier::EPSG)) { in getEPSGCode()
921 if (!ci_equal(nameStr(), otherIdObj->nameStr())) { in _isEquivalentTo()
H A Dc_api.cpp558 parser.setStrict(ci_equal(value, "YES")); in proj_create_from_wkt()
1466 formatter->setMultiLine(ci_equal(value, "YES")); in proj_as_wkt()
1470 if (!ci_equal(value, "AUTO")) { in proj_as_wkt()
1472 ci_equal(value, "YES") in proj_as_wkt()
1477 formatter->setStrict(ci_equal(value, "YES")); in proj_as_wkt()
1482 ci_equal(value, "YES")); in proj_as_wkt()
1567 formatter->setMultiLine(ci_equal(value, "YES")); in proj_as_proj_string()
1640 formatter->setMultiLine(ci_equal(value, "YES")); in proj_as_projjson()
1949 if (ci_equal(value, "YES") || ci_equal(value, "ALWAYS")) { in proj_crs_create_bound_crs_to_WGS84()
2937 return name ? (ci_equal(name, "degree") in createAngularUnit()
[all …]
H A Dcrs.cpp2210 ci_equal(thisName, "unknown") || in identify()
2211 ci_equal(thisName, "unnamed"); in identify()
3273 ci_equal(thisName, "unknown") || in identify()
3274 ci_equal(thisName, "unnamed"); in identify()
4273 ci_equal(thisName, "unknown") || in identify()
4274 ci_equal(thisName, "unnamed"); in identify()
4834 ci_equal(thisName, "unnamed"); in identify()
5210 ci_equal(d->hubCRS()->nameStr(), "WGS 84"); in isTOWGS84Compatible()
5216 if (ci_equal(d->hubCRS()->nameStr(), "WGS 84")) { in getHDatumPROJ4GRIDS()
5226 ci_equal(d->hubCRS()->nameStr(), "WGS 84")) { in getVDatumPROJ4GRIDS()
[all …]
/dports/graphics/proj/proj-7.2.1/include/proj/internal/
H A Dinternal.hpp146 bool ci_equal(const char *a, const char *b) noexcept;
149 bool ci_equal(const char *a, const std::string &b) = delete;
152 PROJ_FOR_TEST bool ci_equal(const std::string &a, const char *b) noexcept;
154 PROJ_FOR_TEST bool ci_equal(const std::string &a,
/dports/games/scummvm/scummvm-2.5.1/engines/glk/quest/
H A Dgeas_runner.cpp43 if (ci_equal(v[i].name, name)) in get_obj_record()
296 if (ci_equal(dat, not_prop)) { in get_obj_property()
301 if (ci_equal(dat, is_prop)) { in get_obj_property()
317 if (ci_equal(prop, "hidden") || ci_equal(prop, "not hidden") || in set_obj_property()
318 ci_equal(prop, "invisible") || ci_equal(prop, "not invisible")) { in set_obj_property()
593 assert(ci_equal(p[0], room)); in exit_dest()
1315 if (ci_equal(text, alias)) in match_object()
1784 if (ci_equal(cmd, "inventory") || ci_equal(cmd, "i")) { in try_match()
1797 if (ci_equal(cmd, "help")) { in try_match()
1802 if (ci_equal(cmd, "about")) { in try_match()
[all …]
H A Dstring.cpp79 bool ci_equal(const String &str1, const String &str2) { in ci_equal() function
89 return !ci_equal(str1, str2); in ci_notequal()
H A Dstring.h100 bool ci_equal(const String &str1, const String &str2);
110 return ci_equal(str1, str2); in operator()
H A Dgeas_util.cpp142 return (a.length() >= b.length()) && ci_equal(a.substr(0, b.length()), b); in starts_with_i()
147 ci_equal(a.substr(a.length() - b.length(), b.length()), b); in ends_with_i()
H A Dgeas_file.cpp55 if (ci_equal(block(type, i).name, name)) in find_by_name()
386 if (ci_equal(subtype, supertype)) in type_of_type()
531 if (ci_equal(blocks[i].name, varname)) { in static_svar_lookup()
573 if (ci_equal(blocks[i].name, varname)) { in static_ivar_lookup()
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Applications/src/
H A Dedit-dof.cc77 struct ci_equal { struct
78 ci_equal(const std::locale& loc) : _loc(loc) {} in ci_equal() argument
97 ci_equal<typename T::value_type>(loc)); in ci_find() argument
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-audio/lib/osx/
H A Dosx_impl.cc103 struct ci_equal { struct
104 ci_equal(const std::locale& loc) : loc_(loc) {} in ci_equal() function
123 ci_equal<std::string::value_type>(loc)); in ci_find_substr()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/src/
H A DitkSmapsFileParser.cxx22 bool ITKCommon_EXPORT ci_equal(char a, char b) in ci_equal() function
313 m_Filter.begin(), m_Filter.end(), ci_equal) != second->m_RecordName.end() ) in operator ()()
/dports/math/cadabra2/cadabra2-2.3.6.8/client_server/
H A DDocumentThread.cc120 struct ci_equal { struct
132 str2.begin(), str2.end(), ci_equal<typename T::value_type>() ); in ci_find_substr() argument
/dports/graphics/proj/proj-7.2.1/src/iso19111/operation/
H A Dtransformation.cpp1840 ci_equal(l_method->nameStr(), INVERSE_OF + EPSG_NAME_METHOD_NTV2))) { in _getNTv2Filename()
1871 ci_equal(methodName, INVERSE_OF + EPSG_NAME_METHOD_NTV1))) { in _getNTv1Filename()
1891 if (ci_equal(methodName, PROJ_WKT2_NAME_METHOD_CTABLE2) || in _getCTABLE2Filename()
1893 ci_equal(methodName, INVERSE_OF + PROJ_WKT2_NAME_METHOD_CTABLE2))) { in _getCTABLE2Filename()
1913 if (ci_equal(methodName, PROJ_WKT2_NAME_METHOD_HORIZONTAL_SHIFT_GTIFF) || in _getHorizontalShiftGTIFFFilename()
1915 ci_equal(methodName, in _getHorizontalShiftGTIFFFilename()
1940 ci_equal( in _getGeocentricTranslationFilename()
1964 if (ci_equal(methodName, PROJ_WKT2_NAME_METHOD_HEIGHT_TO_GEOG3D) || in _getHeightToGeographic3DFilename()
1966 ci_equal(methodName, in _getHeightToGeographic3DFilename()
2021 if (ci_equal(srcAuthName, "EPSG") && srcCode == code) { in isGeographic3DToGravityRelatedHeight()
[all …]
H A Dconversion.cpp2775 ci_equal(wkt2_name, mapping.wkt2_name)) { in getESRIMapping()
3545 } else if (ci_equal(convName, "Popular Visualisation Mercator")) { in _exportToPROJString()
3564 } else if (ci_equal(methodName, in _exportToPROJString()
3581 } else if (ci_equal(methodName, "Adams_Square_II")) { in _exportToPROJString()
H A Desriparammappings.cpp1111 if (ci_equal(esri_name, mapping.esri_name)) { in getMappingsFromESRI()
H A Dsingleoperation.cpp1600 ci_equal(parameter->nameStr(), paramMapping->wkt2_name)) { in validateParameters()
1623 if (ci_equal(parameter->nameStr(), paramMapping->wkt2_name)) { in validateParameters()
/dports/graphics/proj/proj-7.2.1/src/
H A Dfilemanager.cpp1858 ctx->networking.enabled = ci_equal(value, "ON") ||
1859 ci_equal(value, "YES") ||
1860 ci_equal(value, "TRUE");
1863 ctx->gridChunkCache.enabled = ci_equal(value, "ON") ||
1864 ci_equal(value, "YES") ||
1865 ci_equal(value, "TRUE");
H A Dnetworkfilemanager.cpp2063 ctx->networking.enabled = ci_equal(enabled, "ON") || in proj_context_is_network_enabled()
2064 ci_equal(enabled, "YES") || in proj_context_is_network_enabled()
2065 ci_equal(enabled, "TRUE"); in proj_context_is_network_enabled()
/dports/net-im/gloox/gloox-1.0.24/src/
H A Dconnectionbosh.cpp306 bool ci_equal( char ch1, char ch2 ) in ci_equal() function
314 str2.begin(), str2.end(), ci_equal ); in ci_find()
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarth/
H A DStringUtils.cpp480 struct ci_equal { struct
481 ci_equal( const std::locale& loc ) : _loc(loc) { } in ci_equal() argument

12