Home
last modified time | relevance | path

Searched refs:prevEscape (Results 1 – 25 of 168) sorted by relevance

1234567

/dports/databases/db5/db-5.3.28/lang/sql/sqlite/ext/icu/
H A Dicu.c79 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
95 if( !prevEscape && uPattern==MATCH_ALL ){ in icuLikeCompare()
121 }else if( !prevEscape && uPattern==MATCH_ONE ){ in icuLikeCompare()
126 }else if( !prevEscape && uPattern==uEsc){ in icuLikeCompare()
128 prevEscape = 1; in icuLikeCompare()
139 prevEscape = 0; in icuLikeCompare()
/dports/databases/kdb/kdb-3.2.0/src/drivers/sqlite/icu/
H A Dicu.cpp85 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
101 if( !prevEscape && uPattern==MATCH_ALL ){ in icuLikeCompare()
127 }else if( !prevEscape && uPattern==MATCH_ONE ){ in icuLikeCompare()
132 }else if( !prevEscape && uPattern==uEsc){ in icuLikeCompare()
134 prevEscape = 1; in icuLikeCompare()
145 prevEscape = 0; in icuLikeCompare()
/dports/audio/mixxx/mixxx-2.3.0/src/util/db/
H A Ddbconnection.cpp99 bool prevEscape = false; // True if the previous character was uEsc in likeCompareInner() local
110 if (!prevEscape && uPattern == kSqlLikeMatchAll) { in likeCompareInner()
143 } else if (!prevEscape && uPattern == kSqlLikeMatchOne) { in likeCompareInner()
148 } else if (!prevEscape && uPattern == esc) { in likeCompareInner()
150 prevEscape = true; in likeCompareInner()
160 prevEscape = false; in likeCompareInner()
/dports/graphics/darktable38/darktable-3.8.0/src/common/
H A Dsqliteicu.c134 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
150 if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
176 }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
181 }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ in icuLikeCompare()
183 prevEscape = 1; in icuLikeCompare()
194 prevEscape = 0; in icuLikeCompare()
/dports/graphics/darktable/darktable-3.6.1/src/common/
H A Dsqliteicu.c134 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
150 if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
176 }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
181 }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ in icuLikeCompare()
183 prevEscape = 1; in icuLikeCompare()
194 prevEscape = 0; in icuLikeCompare()
/dports/databases/sqlite3/sqlite-src-3350500/ext/icu/
H A Dicu.c130 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
146 if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
172 }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
177 }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ in icuLikeCompare()
179 prevEscape = 1; in icuLikeCompare()
190 prevEscape = 0; in icuLikeCompare()
/dports/databases/sqlcipher/sqlcipher-3.4.2/ext/icu/
H A Dicu.c108 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
124 if( !prevEscape && uPattern==MATCH_ALL ){ in icuLikeCompare()
150 }else if( !prevEscape && uPattern==MATCH_ONE ){ in icuLikeCompare()
155 }else if( !prevEscape && uPattern==uEsc){ in icuLikeCompare()
157 prevEscape = 1; in icuLikeCompare()
168 prevEscape = 0; in icuLikeCompare()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/ext/icu/
H A Dicu.c130 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
146 if( !prevEscape && uPattern==MATCH_ALL ){ in icuLikeCompare()
172 }else if( !prevEscape && uPattern==MATCH_ONE ){ in icuLikeCompare()
177 }else if( !prevEscape && uPattern==(uint32_t)uEsc){ in icuLikeCompare()
179 prevEscape = 1; in icuLikeCompare()
190 prevEscape = 0; in icuLikeCompare()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/ext/icu/
H A Dicu.c130 int prevEscape = 0; /* True if the previous character was uEsc */ in icuLikeCompare() local
146 if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
172 }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ in icuLikeCompare()
177 }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ in icuLikeCompare()
179 prevEscape = 1; in icuLikeCompare()
190 prevEscape = 0; in icuLikeCompare()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dfunc.c564 int prevEscape = 0; /* True if the previous character was 'escape' */ in patternCompare() local
567 if( !prevEscape && c==matchAll ){ in patternCompare()
606 }else if( !prevEscape && c==matchOne ){ in patternCompare()
642 }else if( esc==c && !prevEscape ){ in patternCompare()
643 prevEscape = 1; in patternCompare()
653 prevEscape = 0; in patternCompare()
/dports/biology/mothur/mothur-1.46.1/source/
H A Dutils.cpp4902 bool prevEscape = false; in splitAtDash() local
4906 …if (prevEscape) { individual += estim[i]; prevEscape = false; } //add in dash because it was esc… in splitAtDash()
4913 … if (estim[i+1] == '-') { prevEscape=true; } //are you a backslash before a dash, if yes ignore in splitAtDash()
4914 else { individual += estim[i]; prevEscape = false; } //if no, add in in splitAtDash()
4937 bool prevEscape = false; in splitAtDash() local
4941 …if (prevEscape) { individual += estim[i]; prevEscape = false; } //add in dash because it was esc… in splitAtDash()
4948 … if (estim[i+1] == '-') { prevEscape=true; } //are you a backslash before a dash, if yes ignore in splitAtDash()
4949 else { individual += estim[i]; prevEscape = false; } //if no, add in in splitAtDash()
4970 bool prevEscape = false; in splitAtDash() local
4974 …if (prevEscape) { individual += estim[i]; prevEscape = false; } //add in dash because it was esc… in splitAtDash()
[all …]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/sqlite/vtksqlite/
H A Dvtk_sqlite3.c71581 if( !prevEscape && c==matchAll ){
71620 }else if( !prevEscape && c==matchOne ){
71656 }else if( esc==c && !prevEscape ){
71657 prevEscape = 1;
71667 prevEscape = 0;
110216 int prevEscape = 0; /* True if the previous character was uEsc */
110232 if( !prevEscape && uPattern==MATCH_ALL ){
110258 }else if( !prevEscape && uPattern==MATCH_ONE ){
110263 }else if( !prevEscape && uPattern==uEsc){
110265 prevEscape = 1;
[all …]
/dports/devel/raknet/raknet-3.9.2_10,1/DependentExtensions/SQLite3Plugin/
H A Dsqlite3.c67576 if( !prevEscape && c==matchAll ){
67615 }else if( !prevEscape && c==matchOne ){
67651 }else if( esc==c && !prevEscape ){
67652 prevEscape = 1;
67662 prevEscape = 0;
104136 int prevEscape = 0; /* True if the previous character was uEsc */
104152 if( !prevEscape && uPattern==MATCH_ALL ){
104178 }else if( !prevEscape && uPattern==MATCH_ONE ){
104183 }else if( !prevEscape && uPattern==uEsc){
104185 prevEscape = 1;
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/generated/
H A Dsqlite3.c73335 if( !prevEscape && c==matchAll ){
73374 }else if( !prevEscape && c==matchOne ){
73410 }else if( esc==c && !prevEscape ){
73411 prevEscape = 1;
73421 prevEscape = 0;
116517 int prevEscape = 0; /* True if the previous character was uEsc */
116533 if( !prevEscape && uPattern==MATCH_ALL ){
116559 }else if( !prevEscape && uPattern==MATCH_ONE ){
116564 }else if( !prevEscape && uPattern==uEsc){
116566 prevEscape = 1;
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/sqlite/
H A Dsqlite3.amalgamation.c66808 if( !prevEscape && c==matchAll ){
66847 }else if( !prevEscape && c==matchOne ){
66883 }else if( esc==c && !prevEscape ){
66884 prevEscape = 1;
66894 prevEscape = 0;
109915 int prevEscape = 0; /* True if the previous character was uEsc */
109931 if( !prevEscape && uPattern==MATCH_ALL ){
109957 }else if( !prevEscape && uPattern==MATCH_ONE ){
109962 }else if( !prevEscape && uPattern==uEsc){
109964 prevEscape = 1;
[all …]
/dports/databases/py-unqlite/unqlite-0.5.3/src/
H A Dunqlite.c35025 int prevEscape = 0; /* True if the previous character was 'escape' */ in patternCompare() local
35029 if( !prevEscape && c==matchAll ){ in patternCompare()
35067 }else if( !prevEscape && c==matchOne ){ in patternCompare()
35103 }else if( esc==c && !prevEscape ){ in patternCompare()
35104 prevEscape = 1; in patternCompare()
35114 prevEscape = 0; in patternCompare()
/dports/games/pokerth/pokerth-1.1.2-rc/src/third_party/sqlite3/
H A Dsqlite3.c86696 if( !prevEscape && c==matchAll ){
86735 }else if( !prevEscape && c==matchOne ){
86771 }else if( esc==c && !prevEscape ){
86772 prevEscape = 1;
86782 prevEscape = 0;
133478 int prevEscape = 0; /* True if the previous character was uEsc */
133494 if( !prevEscape && uPattern==MATCH_ALL ){
133520 }else if( !prevEscape && uPattern==MATCH_ONE ){
133525 }else if( !prevEscape && uPattern==uEsc){
133527 prevEscape = 1;
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/sqlite/
H A Dsqlite3.c82803 if( !prevEscape && c==matchAll ){
82842 }else if( !prevEscape && c==matchOne ){
82878 }else if( esc==c && !prevEscape ){
82879 prevEscape = 1;
82889 prevEscape = 0;
127773 int prevEscape = 0; /* True if the previous character was uEsc */
127789 if( !prevEscape && uPattern==MATCH_ALL ){
127815 }else if( !prevEscape && uPattern==MATCH_ONE ){
127820 }else if( !prevEscape && uPattern==uEsc){
127822 prevEscape = 1;
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/sqlite/
H A Dsqlite3.c82767 if( !prevEscape && c==matchAll ){
82806 }else if( !prevEscape && c==matchOne ){
82842 }else if( esc==c && !prevEscape ){
82843 prevEscape = 1;
82853 prevEscape = 0;
127737 int prevEscape = 0; /* True if the previous character was uEsc */
127753 if( !prevEscape && uPattern==MATCH_ALL ){
127779 }else if( !prevEscape && uPattern==MATCH_ONE ){
127784 }else if( !prevEscape && uPattern==uEsc){
127786 prevEscape = 1;
[all …]
/dports/irc/ircd-ratbox-devel/ircd-ratbox-3.0.7/bandb/sqlite3/
H A Dsqlite3.c84615 if( !prevEscape && c==matchAll ){
84654 }else if( !prevEscape && c==matchOne ){
84690 }else if( esc==c && !prevEscape ){
84691 prevEscape = 1;
84701 prevEscape = 0;
130386 int prevEscape = 0; /* True if the previous character was uEsc */
130402 if( !prevEscape && uPattern==MATCH_ALL ){
130428 }else if( !prevEscape && uPattern==MATCH_ONE ){
130433 }else if( !prevEscape && uPattern==uEsc){
130435 prevEscape = 1;
[all …]
/dports/games/craft/Craft-1.0fbsd/deps/sqlite/
H A Dsqlite3.c90953 if( c==matchAll && !prevEscape ){
90992 }else if( c==matchOne && !prevEscape ){
91028 }else if( esc==c && !prevEscape ){
91029 prevEscape = 1;
91039 prevEscape = 0;
145698 int prevEscape = 0; /* True if the previous character was uEsc */
145714 if( !prevEscape && uPattern==MATCH_ALL ){
145740 }else if( !prevEscape && uPattern==MATCH_ONE ){
145745 }else if( !prevEscape && uPattern==uEsc){
145747 prevEscape = 1;
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/vendor/github.com/mattn/go-sqlite3/code/
H A Dsqlite3-binding.c91494 if( c==matchAll && !prevEscape ){
91533 }else if( c==matchOne && !prevEscape ){
91569 }else if( esc==c && !prevEscape ){
91570 prevEscape = 1;
91580 prevEscape = 0;
147093 int prevEscape = 0; /* True if the previous character was uEsc */
147109 if( !prevEscape && uPattern==MATCH_ALL ){
147135 }else if( !prevEscape && uPattern==MATCH_ONE ){
147140 }else if( !prevEscape && uPattern==uEsc){
147142 prevEscape = 1;
[all …]
/dports/deskutils/coolreader/coolreader-cr3.2.55/thirdparty_unman/sqlite/
H A Dsqlite3.c87756 if( c==matchAll && !prevEscape ){
87795 }else if( c==matchOne && !prevEscape ){
87831 }else if( esc==c && !prevEscape ){
87832 prevEscape = 1;
87842 prevEscape = 0;
139770 int prevEscape = 0; /* True if the previous character was uEsc */
139786 if( !prevEscape && uPattern==MATCH_ALL ){
139812 }else if( !prevEscape && uPattern==MATCH_ONE ){
139817 }else if( !prevEscape && uPattern==uEsc){
139819 prevEscape = 1;
[all …]
/dports/databases/R-cran-RSQLite/RSQLite/src/sqlite/
H A Dsqlite3.c92297 if( c==matchAll && !prevEscape ){
92336 }else if( c==matchOne && !prevEscape ){
92372 }else if( esc==c && !prevEscape ){
92373 prevEscape = 1;
92383 prevEscape = 0;
148193 int prevEscape = 0; /* True if the previous character was uEsc */
148209 if( !prevEscape && uPattern==MATCH_ALL ){
148235 }else if( !prevEscape && uPattern==MATCH_ONE ){
148240 }else if( !prevEscape && uPattern==uEsc){
148242 prevEscape = 1;
[all …]
/dports/chinese/libchewing/libchewing-0.5.1/thirdparty/sqlite-amalgamation/
H A Dsqlite3.c88059 if( c==matchAll && !prevEscape ){
88098 }else if( c==matchOne && !prevEscape ){
88134 }else if( esc==c && !prevEscape ){
88135 prevEscape = 1;
88145 prevEscape = 0;
140654 int prevEscape = 0; /* True if the previous character was uEsc */
140670 if( !prevEscape && uPattern==MATCH_ALL ){
140696 }else if( !prevEscape && uPattern==MATCH_ONE ){
140701 }else if( !prevEscape && uPattern==uEsc){
140703 prevEscape = 1;
[all …]

1234567