Home
last modified time | relevance | path

Searched refs:isPunct (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/dports/x11/kf5-kdelibs4support/kdelibs4support-5.89.0/src/kdecore/
H A Dkstringhandler_deprecated.cpp77 while (!currA->isNull() && !currA->isDigit() && !currA->isPunct() && !currA->isSpace()) { in naturalCompare()
81 while (!currB->isNull() && !currB->isDigit() && !currB->isPunct() && !currB->isSpace()) { in naturalCompare()
98 while ((currA->isPunct() || currA->isSpace()) && (currB->isPunct() || currB->isSpace())) { in naturalCompare()
/dports/textproc/goldendict/goldendict-73ec1b5/
H A Dfolding.cc47 && ( !isPunct( ch ) in apply()
137 if ( !isPunct( *nextChar ) ) in applyPunctOnly()
167 if ( !isWhitespace( *nextChar ) && !isPunct( *nextChar ) ) in applyWhitespaceAndPunctOnly()
210 bool isPunct( wchar ch ) in isPunct() function
613 while( *wordBegin && ( Folding::isWhitespace( *wordBegin ) || Folding::isPunct( *wordBegin ) ) ) in trimWhitespaceOrPunct()
621 Folding::isPunct( wordBegin[ wordSize - 1 ] ) ) ) in trimWhitespaceOrPunct()
/dports/security/yapet/yapet-2.3/tests/pwgen/
H A Dcharacterpool.cc32 CPPUNIT_ASSERT(isPunct(PUNCT)); in arePools()
38 CPPUNIT_ASSERT(isPunct(ALL)); in arePools()
44 CPPUNIT_ASSERT(!isPunct(DIGITS)); in arePools()
/dports/games/libretro-scummvm/scummvm-7b1e929/test/common/
H A Dutil.h241 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
243 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
245 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
247 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
249 TS_ASSERT_EQUALS(Common::isPunct(c), 0); in test_is_punct()
/dports/games/scummvm/scummvm-2.5.1/test/common/
H A Dutil.h241 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
243 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
245 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
247 TS_ASSERT_EQUALS(Common::isPunct(c), 1); in test_is_punct()
249 TS_ASSERT_EQUALS(Common::isPunct(c), 0); in test_is_punct()
/dports/sysutils/lxqt-config/lxqt-config-1.0.0/src/qcategorizedview/
H A Dqcategorizedsortfilterproxymodel.cpp86 while (!currA->isNull() && !currA->isDigit() && !currA->isPunct() && !currA->isSpace()) { in naturalCompare()
90 while (!currB->isNull() && !currB->isDigit() && !currB->isPunct() && !currB->isSpace()) { in naturalCompare()
107 while ((currA->isPunct() || currA->isSpace()) && (currB->isPunct() || currB->isSpace())) { in naturalCompare()
/dports/devel/okteta/okteta-0.26.6/gui/
H A Dhelper.hpp23 byteChar.isPunct() ? Qt::red : in colorForChar()
33 byteChar.isPunct() ? KColorScheme::InactiveText : in foregroundRoleForChar()
/dports/www/kf5-khtml/khtml-5.89.0/src/misc/
H A Dhelper.cpp63 } else if (chars[position].isPunct()) { in findWordBoundary()
65 while (pos >= 0 && chars[pos].isPunct()) { in findWordBoundary()
70 while (pos < (int)len && chars[pos].isPunct()) { in findWordBoundary()
76 while (pos >= 0 && !chars[pos].isSpace() && !chars[pos].isPunct()) { in findWordBoundary()
81 while (pos < (int)len && !chars[pos].isSpace() && !chars[pos].isPunct()) { in findWordBoundary()
/dports/devel/poco/poco-1.10.1-all/Foundation/include/Poco/
H A DAscii.h89 static bool isPunct(int ch);
172 inline bool Ascii::isPunct(int ch) in isPunct() function
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/avr/cores/arduino/
H A DWCharacter.h35 inline boolean isPunct(int c) __attribute__((always_inline));
112 inline boolean isPunct(int c) in isPunct() function
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/cores/arduino/
H A DWCharacter.h40 inline boolean isPunct(int c) __attribute__((always_inline));
119 inline boolean isPunct(int c) in isPunct() function
/dports/www/otter-browser/otter-browser-1.0.03/3rdparty/sonnet/src/core/
H A Dtextbreaks.cpp62 return character.isSpace() || character.isMark() || character.isPunct() || character.isSymbol(); in isWordSeparator()
102 …return character.isMark() || character.isPunct() || character.category() == QChar::Separator_Parag… in isSentenceSeparator()
/dports/multimedia/kaffeine/kaffeine-2.0.18/src/
H A Ddatetimeedit.cpp120 if ((beginRemove > 0) && timeFormat.at(beginRemove - 1).isPunct() && in localQtTimeFormat()
137 timeFormat.at(endRemove).isPunct() && in localQtTimeFormat()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/Parser/
H A DLexer.cpp26 static bool isPunct(char c) { in isPunct() function
346 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
349 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/security/yapet/yapet-2.3/src/libs/pwgen/
H A Dpwgen.cc52 if (isPunct(pools)) { in countPools()
99 if (isPunct(pools)) { in containsSelectedPools()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
351 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
354 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
357 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
360 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
351 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
354 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
357 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
360 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
351 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
354 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
357 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
360 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) { in isPunct() function
351 } else if (isalpha(*curPtr) || isPunct(*curPtr)) { in lexPrefixedIdentifier()
354 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr)); in lexPrefixedIdentifier()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Parser/
H A DLexer.cpp28 static bool isPunct(char c) {
357 } else if (isalpha(*curPtr) || isPunct(*curPtr)) {
360 } while (isalpha(*curPtr) || isdigit(*curPtr) || isPunct(*curPtr));
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java45 protected boolean isPunct(char c) { in isPunct() method in NameUtil
110 if(isPunct(c1)) return i; in nextBreak()
206 if (!isPunct(s.charAt(i))) in toWordList()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java45 protected boolean isPunct(char c) { in isPunct() method in NameUtil
110 if(isPunct(c1)) return i; in nextBreak()
206 if (!isPunct(s.charAt(i))) in toWordList()

12345678910>>...16