Home
last modified time | relevance | path

Searched refs:PreviousChar (Results 1 – 25 of 34) sorted by relevance

12

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/wxSmith/
H A Dwxsversionconverter.cpp287 wxChar PreviousChar = _T('\0'); in LineContainDirectivesOnly() local
293 if ( Ch==_T('/') && PreviousChar==_T('/') ) in LineContainDirectivesOnly()
298 PreviousChar = Ch; in LineContainDirectivesOnly()
307 PreviousChar = _Ch; in LineContainDirectivesOnly()
340 PreviousChar = Ch; in LineContainDirectivesOnly()
356 else if ( PreviousChar==_T('/') ) in LineContainDirectivesOnly()
373 PreviousChar = Ch; in LineContainDirectivesOnly()
395 if ( PreviousChar == _T('\\') ) in LineContainDirectivesOnly()
404 PreviousChar = Ch; in LineContainDirectivesOnly()
428 PreviousChar = Ch; in LineContainDirectivesOnly()
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins_3rdparty/umuscle/src/muscle/
H A Dfasta2.cpp61 int PreviousChar = NL; in GetFastaSeq() local
79 if (NL == PreviousChar || CR == PreviousChar) in GetFastaSeq()
109 PreviousChar = c; in GetFastaSeq()
/dports/biology/muscle/muscle-3.8.1551/
H A Dfasta2.cpp58 int PreviousChar = NL; in GetFastaSeq() local
76 if (NL == PreviousChar || CR == PreviousChar) in GetFastaSeq()
106 PreviousChar = c; in GetFastaSeq()
/dports/sysutils/acpica-tools/acpica-unix-20210930/source/compiler/
H A Dprscan.c1008 int PreviousChar; in PrGetNextLine() local
1025 PreviousChar = c; in PrGetNextLine()
1051 if ((PreviousChar == '/') && (c == '*')) in PrGetNextLine()
1058 else if ((PreviousChar == '/') && (c == '/')) in PrGetNextLine()
1065 else if (PreviousChar == '"') in PrGetNextLine()
1073 if (PreviousChar == '"') in PrGetNextLine()
1083 if ((PreviousChar == '*') && (c == '/')) in PrGetNextLine()
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/acpica/dist/compiler/
H A Dprscan.c901 int PreviousChar; in PrGetNextLine() local
918 PreviousChar = c; in PrGetNextLine()
944 if ((PreviousChar == '/') && (c == '*')) in PrGetNextLine()
951 else if ((PreviousChar == '/') && (c == '/')) in PrGetNextLine()
958 else if (PreviousChar == '"') in PrGetNextLine()
966 if (PreviousChar == '"') in PrGetNextLine()
976 if ((PreviousChar == '*') && (c == '/')) in PrGetNextLine()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/codecompletion/parser/
H A Dtokenizer.h359 wxChar PreviousChar() const in PreviousChar() function
391 wxChar last = PreviousChar(); in IsBackslashBeforeEOL()
H A Dtokenizer.cpp297 if (PreviousChar() != '\\') in IsEscapedChar()
357 if (PreviousChar() == _T('\n')) in MoveToNextChar()
401 PreviousChar(), NextChar()); in ReadToEOL()
485 m_LineNumber, CurrentChar(), PreviousChar(), NextChar()); in ReadToEOL()
572 PreviousChar(), NextChar()); in SkipToEOL()
596 m_LineNumber, CurrentChar(), PreviousChar(), NextChar()); in SkipToEOL()
605 PreviousChar(), NextChar()); in SkipToInlineCommentEnd()
618 _T(" NextChar='%c'"), m_LineNumber, CurrentChar(), PreviousChar(), NextChar()); in SkipToInlineCommentEnd()
/dports/graphics/krita/krita-4.4.8/plugins/flake/textshape/kotext/commands/
H A DChangeTrackedDeleteCommand.h38 PreviousChar, enumerator
H A DDeleteCommand.h45 PreviousChar, enumerator
H A DDeleteCommand.cpp408 if (m_mode == PreviousChar) { in doDelete()
486 if (m_mode != PreviousChar || !caretAtBeginOfBlock) { in doDelete()
H A DChangeTrackedDeleteCommand.cpp113 if(m_mode == PreviousChar) in redo()
/dports/editors/calligra/calligra-3.2.1/libs/text/commands/
H A DChangeTrackedDeleteCommand.h38 PreviousChar, enumerator
H A DDeleteCommand.h45 PreviousChar, enumerator
H A DDeleteCommand.cpp410 if (m_mode == PreviousChar) { in doDelete()
488 if (m_mode != PreviousChar || !caretAtBeginOfBlock) { in doDelete()
H A DChangeTrackedDeleteCommand.cpp113 if(m_mode == PreviousChar) in redo()
/dports/textproc/uni2ascii/uni2ascii-4.18/
H A DSetFormat.c354 char PreviousChar = '\0'; in CountSlots() local
362 if(PreviousChar != '\%') cnt++; in CountSlots()
364 PreviousChar = c; in CountSlots()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dtokenizerf.h75 wxChar PreviousChar();
/dports/www/firefox/firefox-99.0/editor/libeditor/
H A DEditorDOMPoint.h424 MOZ_NEVER_INLINE_DEBUG char16_t PreviousChar() const { in PreviousChar() function
430 return nsCRT::IsAsciiSpace(PreviousChar()); in IsPreviousCharASCIISpace()
433 return PreviousChar() == 0x00A0; in IsPreviousCharNBSP()
436 char16_t ch = PreviousChar(); in IsPreviousCharASCIISpaceOrNBSP()
440 return PreviousChar() == '\n'; in IsPreviousCharNewLine()
H A DWSRunObject.cpp1141 enum class PreviousChar { in ReplaceText() enum
1146 PreviousChar previousChar = PreviousChar::NonCollapsibleChar; in ReplaceText()
1152 if (previousChar == PreviousChar::CollapsibleChar) { in ReplaceText()
1163 if (previousChar == PreviousChar::PreformattedNewLine) { in ReplaceText()
1166 previousChar = PreviousChar::NonCollapsibleChar; in ReplaceText()
1170 previousChar = PreviousChar::CollapsibleChar; in ReplaceText()
1175 previousChar = PreviousChar::NonCollapsibleChar; in ReplaceText()
1184 if (previousChar == PreviousChar::CollapsibleChar) { in ReplaceText()
1188 previousChar = PreviousChar::PreformattedNewLine; in ReplaceText()
/dports/www/firefox-esr/firefox-91.8.0/editor/libeditor/
H A DEditorDOMPoint.h380 MOZ_NEVER_INLINE_DEBUG char16_t PreviousChar() const { in PreviousChar() function
386 return nsCRT::IsAsciiSpace(PreviousChar()); in IsPreviousCharASCIISpace()
389 return PreviousChar() == 0x00A0; in IsPreviousCharNBSP()
392 char16_t ch = PreviousChar(); in IsPreviousCharASCIISpaceOrNBSP()
/dports/mail/thunderbird/thunderbird-91.8.0/editor/libeditor/
H A DEditorDOMPoint.h380 MOZ_NEVER_INLINE_DEBUG char16_t PreviousChar() const { in PreviousChar() function
386 return nsCRT::IsAsciiSpace(PreviousChar()); in IsPreviousCharASCIISpace()
389 return PreviousChar() == 0x00A0; in IsPreviousCharNBSP()
392 char16_t ch = PreviousChar(); in IsPreviousCharASCIISpaceOrNBSP()
/dports/lang/spidermonkey78/firefox-78.9.0/editor/libeditor/
H A DEditorDOMPoint.h339 MOZ_NEVER_INLINE_DEBUG char16_t PreviousChar() const { in PreviousChar() function
345 return nsCRT::IsAsciiSpace(PreviousChar()); in IsPreviousCharASCIISpace()
348 return PreviousChar() == 0x00A0; in IsPreviousCharNBSP()
/dports/lang/swi-pl/swipl-8.2.3/bench/
H A Dfast_mu.pl60 % ScanPtrIn, ScanPtrOut, StrPosition, PreviousChar,
/dports/editors/libreoffice/libreoffice-7.2.6.2/svl/source/numbers/
H A Dzforscan.hxx246 …sal_Unicode PreviousChar(sal_uInt16 i) const; // Returns last char before index skips EMPTY, STRIN…
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svl/source/numbers/
H A Dzforscan.hxx246 …sal_Unicode PreviousChar(sal_uInt16 i) const; // Returns last char before index skips EMPTY, STRIN…

12