/dports/textproc/exempi/exempi-2.5.2/XMPFiles/source/FormatSupport/ |
H A D | ReconcileIPTC.cpp | 202 chPos = 0; in ImportIPTC_Date() 204 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_Date() 208 if ( ( chPos < dsInfo.dataLen ) && dsInfo.dataPtr[chPos] == '-' ) ++chPos; in ImportIPTC_Date() 210 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_Date() 216 if ( ( chPos < dsInfo.dataLen ) && dsInfo.dataPtr[chPos] == '-' ) ++chPos; in ImportIPTC_Date() 218 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_Date() 232 chPos = 0; in ImportIPTC_Date() 234 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_Date() 240 if ( ( chPos < dsInfo.dataLen ) && dsInfo.dataPtr[chPos] == ':' ) ++chPos; in ImportIPTC_Date() 248 if ( ( chPos < dsInfo.dataLen ) && dsInfo.dataPtr[chPos] == ':' ) ++chPos; in ImportIPTC_Date() [all …]
|
/dports/graphics/dcp2icc/dcp2icc-0.1/XMP-Toolkit-SDK-4.4.2/source/XMPFiles/FormatSupport/ |
H A D | ReconcileIPTC.cpp | 303 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() 307 if ( dsInfo.dataPtr[chPos] == '-' ) ++chPos; in ImportIPTC_DateCreated() 309 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() 315 if ( dsInfo.dataPtr[chPos] == '-' ) ++chPos; in ImportIPTC_DateCreated() 317 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() 331 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() 337 if ( dsInfo.dataPtr[chPos] == ':' ) ++chPos; in ImportIPTC_DateCreated() 339 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() 345 if ( dsInfo.dataPtr[chPos] == ':' ) ++chPos; in ImportIPTC_DateCreated() 347 …if ( (chPos >= dsInfo.dataLen) || (dsInfo.dataPtr[chPos] < '0') || (dsInfo.dataPtr[chPos] > '9') )… in ImportIPTC_DateCreated() [all …]
|
/dports/www/lagrange/lagrange-1.7.3/src/ui/ |
H A D | text_simple.c | 99 const char *chPos; in runSimple_Font_() local 100 for (chPos = args->text.start; chPos != args->text.end; ) { in runSimple_Font_() 101 iAssert(chPos < args->text.end); in runSimple_Font_() 102 const char *currentPos = chPos; in runSimple_Font_() 113 if (*chPos == 0x1b) { /* ANSI escape. */ in runSimple_Font_() 114 chPos++; in runSimple_Font_() 117 if (match_RegExp(activeText_->ansiEscape, chPos, args->text.end - chPos, &m)) { in runSimple_Font_() 127 chPos = end_RegExpMatch(&m); in runSimple_Font_() 146 lastWordEnd = chPos; in runSimple_Font_() 256 chPos = wrapPos; in runSimple_Font_() [all …]
|
/dports/net/go-bapu/carlostrub-bapu-23ca6b019fbc/vendor/github.com/gizak/termui/ |
H A D | canvas.go | 45 func chPos(x, y int) (int, int) { func 51 i, j := chPos(x, y) 59 i, j := chPos(x, y)
|
/dports/finance/cointop/cointop-1.5.4/cointop/common/gizak/termui/ |
H A D | canvas.go | 45 func chPos(x, y int) (int, int) { func 51 i, j := chPos(x, y) 59 i, j := chPos(x, y)
|
/dports/net-im/slack-term/slack-term-0.4.1/vendor/github.com/erroneousboat/termui/ |
H A D | canvas.go | 45 func chPos(x, y int) (int, int) { func 51 i, j := chPos(x, y) 59 i, j := chPos(x, y)
|
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/gizak/termui/ |
H A D | canvas.go | 45 func chPos(x, y int) (int, int) { func 51 i, j := chPos(x, y) 59 i, j := chPos(x, y)
|
/dports/lang/voc/voc-63008f6/src/tools/coco/ |
H A D | CRS.Mod | 27 chPos: LONGINT; (*position of current character*) 40 Texts.Read(r, ch); INC(chPos); 41 IF ch = EOL THEN INC(chLine); lineStart := chPos + 1 END 72 DEC(chPos, 2); Texts.OpenReader(r, src, chPos+1); NextCh; RETURN FALSE 125 nextPos := chPos; nextCol := SHORT(chPos - lineStart); nextLine := chLine; nextLen := 0; 204 chPos := pos - 1; chLine := 1; lineStart := 0;
|
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/stc/scintilla/lexers/ |
H A D | LexErrorList.cxx | 210 Sci_PositionU j, chPos; in RecogniseErrorListLine() local 212 chPos = 0; in RecogniseErrorListLine() 217 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 218 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 219 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/devel/codeblocks/codeblocks-20.03/src/sdk/wxscintilla/src/scintilla/lexers/ |
H A D | LexErrorList.cxx | 211 Sci_PositionU j, chPos; in RecogniseErrorListLine() local 213 chPos = 0; in RecogniseErrorListLine() 218 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 219 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 220 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/devel/qscintilla2-qt5/QScintilla_src-2.13.0/scintilla/lexers/ |
H A D | LexErrorList.cpp | 209 Sci_PositionU j, chPos; in RecogniseErrorListLine() local 211 chPos = 0; in RecogniseErrorListLine() 216 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 217 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 218 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/devel/qscintilla2-designerplugin-qt5/QScintilla_src-2.13.0/scintilla/lexers/ |
H A D | LexErrorList.cpp | 209 Sci_PositionU j, chPos; in RecogniseErrorListLine() local 211 chPos = 0; in RecogniseErrorListLine() 216 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 217 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 218 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/devel/py-qt5-qscintilla2/QScintilla_src-2.13.0/scintilla/lexers/ |
H A D | LexErrorList.cpp | 209 Sci_PositionU j, chPos; in RecogniseErrorListLine() local 211 chPos = 0; in RecogniseErrorListLine() 216 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 217 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 218 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/graphics/cfdg/cfdg-3.3_1/src-scintilla/lexers/ |
H A D | LexErrorList.cxx | 216 Sci_PositionU chPos = 0; in RecogniseErrorListLine() local 217 …for (Sci_PositionU j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeo… in RecogniseErrorListLine() 218 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 219 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/x11-toolkits/scintilla/scintilla/lexers/ |
H A D | LexErrorList.cxx | 236 Sci_PositionU chPos = 0; in RecogniseErrorListLine() local 237 …for (Sci_PositionU j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeo… in RecogniseErrorListLine() 238 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 239 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/devel/codequery/codequery-0.24.0/scintilla/lexers/ |
H A D | LexErrorList.cxx | 216 Sci_PositionU chPos = 0; in RecogniseErrorListLine() local 217 …for (Sci_PositionU j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeo… in RecogniseErrorListLine() 218 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 219 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/editors/textadept/scintilla/lexers/ |
H A D | LexErrorList.cxx | 236 Sci_PositionU chPos = 0; in RecogniseErrorListLine() local 237 …for (Sci_PositionU j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeo… in RecogniseErrorListLine() 238 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 239 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/editors/scite/scintilla/lexers/ |
H A D | LexErrorList.cxx | 236 Sci_PositionU chPos = 0; in RecogniseErrorListLine() local 237 …for (Sci_PositionU j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeo… in RecogniseErrorListLine() 238 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 239 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/libs/qmuparser/ |
H A D | qmudef.cpp | 340 int chPos = pos; in FindFirstNotOf() local 347 return chPos; in FindFirstNotOf() 350 ++chPos; in FindFirstNotOf()
|
/dports/math/fricas/fricas-1.3.7/src/interp/ |
H A D | msg.boot | 351 chPos := 2 353 chPos := chPos + $preLength - 1 354 if $showKeyNum then chPos := chPos + 8 355 ["%t",:chPos]
|
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/external/scintilla/lexers/ |
H A D | LexOthers.cxx | 1026 unsigned int j, chPos; in RecogniseErrorListLine() local 1028 chPos = 0; in RecogniseErrorListLine() 1033 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 1034 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 1035 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/deskutils/presage/presage-0.9.1/apps/gtk/gprompter/scintilla/lexers/ |
H A D | LexOthers.cxx | 1026 unsigned int j, chPos; in RecogniseErrorListLine() local 1028 chPos = 0; in RecogniseErrorListLine() 1033 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 1034 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 1035 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/editors/fxite/fxite-FXITE-0_92/fxscintilla/ |
H A D | LexOthers.cxx | 1023 unsigned int j, chPos; in RecogniseErrorListLine() local 1025 chPos = 0; in RecogniseErrorListLine() 1030 …for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j… in RecogniseErrorListLine() 1031 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 1032 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/src/stc/scintilla/src/ |
H A D | LexOthers.cxx | 935 unsigned int j, chPos; in RecogniseErrorListLine() local 937 chPos = 0; in RecogniseErrorListLine() 942 … for (j = i + numstep; j < lengthLine && isalpha(lineBuffer[j]) && chPos < sizeof(word) - 1; j++) in RecogniseErrorListLine() 943 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 944 word[chPos] = 0; in RecogniseErrorListLine()
|
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/src/stc/scintilla/src/ |
H A D | LexOthers.cxx | 935 unsigned int j, chPos; in RecogniseErrorListLine() local 937 chPos = 0; in RecogniseErrorListLine() 942 … for (j = i + numstep; j < lengthLine && isalpha(lineBuffer[j]) && chPos < sizeof(word) - 1; j++) in RecogniseErrorListLine() 943 word[chPos++] = lineBuffer[j]; in RecogniseErrorListLine() 944 word[chPos] = 0; in RecogniseErrorListLine()
|