Home
last modified time | relevance | path

Searched refs:propIsLike (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/mapserver/mapserver-7.6.4/
H A Dmapogcfilter.c954 if( propIsLike->pszWildCard ) in FLTFreeFilterEncodingNode()
955 free( propIsLike->pszWildCard ); in FLTFreeFilterEncodingNode()
956 if( propIsLike->pszSingleChar ) in FLTFreeFilterEncodingNode()
957 free( propIsLike->pszSingleChar ); in FLTFreeFilterEncodingNode()
958 if( propIsLike->pszEscapeChar ) in FLTFreeFilterEncodingNode()
1560 FEPropertyIsLike* propIsLike; in FLTInsertElementInNode() local
1565 propIsLike->bCaseInsensitive = 0; in FLTInsertElementInNode()
2641 FEPropertyIsLike* propIsLike; in FLTGetIsLikeComparisonSQLExpression() local
2648 pszWild = propIsLike->pszWildCard; in FLTGetIsLikeComparisonSQLExpression()
2649 pszSingle = propIsLike->pszSingleChar; in FLTGetIsLikeComparisonSQLExpression()
[all …]
H A Dmapogcfiltercommon.cpp46 const FEPropertyIsLike* propIsLike = (const FEPropertyIsLike *)psFilterNode->pOther; in FLTGetIsLikeComparisonCommonExpression() local
47 const char* pszWild = propIsLike->pszWildCard; in FLTGetIsLikeComparisonCommonExpression()
48 const char* pszSingle = propIsLike->pszSingleChar; in FLTGetIsLikeComparisonCommonExpression()
49 const char* pszEscape = propIsLike->pszEscapeChar; in FLTGetIsLikeComparisonCommonExpression()
50 const bool bCaseInsensitive = propIsLike->bCaseInsensitive != 0; in FLTGetIsLikeComparisonCommonExpression()