Searched refs:isalpha (Results 1 - 25 of 45) sorted by relevance

12

/haiku/src/add-ons/kernel/debugger/hangman/
H A Dhangman.c149 for (beg = 0; beg < got && isalpha(bigbuffer[beg]); beg++);
150 for (; beg < got && !isalpha(bigbuffer[beg]); beg++);
151 if (beg + 1 < got && isalpha(bigbuffer[beg])) {
152 for (end = beg; end < got && isalpha(bigbuffer[end]); end++);
153 if (end < got && !isalpha(bigbuffer[end]) && beg + MIN_LETTERS < end) {
194 for (beg = 0; beg < got && isalpha(p[beg]); beg++);
195 for (; beg < got && !isalpha(p[beg]); beg++);
196 if (beg + 1 < got && isalpha(p[beg])) {
197 for (end = beg; end < got && isalpha(p[end]); end++);
198 if (end < got && !isalpha(
[all...]
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp12 #undef isalpha macro
54 isalpha(int c) function
/haiku/src/bin/
H A Dshutdown.cpp101 if (!isalpha(arg[1]))
104 while (arg && isalpha((++arg)[0])) {
H A Dsetversion.cpp200 if (isalpha(argv[i][0]))
208 if (isalpha(argv[i][0]))
216 if (isalpha(argv[i][0]))
247 if (isalpha(argv[i][0]))
H A Ddf.cpp204 while (*++arg && isalpha(*arg)) {
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.cpp165 } else if (isalpha(*fCurrentChar) || *fCurrentChar == '_') {
167 while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
/haiku/headers/posix/
H A Dctype.h17 int isalpha(int);
87 #define isalpha(c) __isctype((c), _ISalpha) macro
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h97 __exctype (isalpha); variable
156 # define isalpha(c) __isctype((c), _ISalpha) macro
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyInfos.cpp155 if ((length == 1) && (isalpha(c)))
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp245 while (!isalpha(string[0])) {
268 bool newWord = isalpha(string[0]) || isspace(string[0]);
270 if (isalpha(string[0])) {
/haiku/src/apps/mail/
H A DWords.cpp148 if (isalpha(*nptr)) {
274 if (isalpha(*Word))
751 while (*src && !isalpha(*src))
H A DContent.cpp1425 if (isalpha(text[offset])) {
1436 (first >= 0) && (((c = text[first]) == '\'') || isalpha(c));
1440 for (start = offset, c = text[start], isAlpha = isalpha(c), isApost = (c=='\'');
1442 && (((c = text[start+1]) != 's') || !isCap) && isalpha(c)
1443 && isalpha(text[start-1])));
1444 start--, c = text[start], isAlpha = isalpha(c), isApost = (c == '\'')) {}
1447 for (end = offset, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'');
1449 && (((c = text[end + 1]) != 's') || !isCap) && isalpha(c)));
1450 end++, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'')) {}
2704 || isalpha(tex
[all...]
/haiku/src/libs/bsd/
H A Dreadpassphrase.c121 if (isalpha(ch)) {
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacclib.h182 #define isalpha(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) macro
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp479 if (isalpha(data[0])) {
613 while (isalpha(data[0])) {
727 while (isalpha(term[length + index])) {
/haiku/src/add-ons/input_server/methods/pen/
H A DDumpMessage.cpp46 else if (isalpha(p[i+j]))
/haiku/src/bin/bfs_tools/
H A Dbfswhich.cpp267 while (*++arg && isalpha(*arg)) {
H A Dbfsinfo.cpp249 while (*++arg && isalpha(*arg)) {
/haiku/src/tests/add-ons/kernel/file_systems/bfs/dump_log/
H A Ddump_log.cpp187 while (*++arg && isalpha(*arg)) {
/haiku/src/system/libroot/add-ons/icu/
H A DICUTimeConversion.cpp77 while(isalpha(*tzNameEnd))
/haiku/src/bin/pc/
H A Dpc.c885 else if (isalpha(**str) || **str == '_') /* a variable name */
1067 if (isalpha(**str) == 0 && **str != '_')
/haiku/src/kits/shared/
H A DExpressionParser.cpp217 } else if (isalpha(*fCurrentChar) && *fCurrentChar != 'x') {
219 while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c198 # define ISALPHA(Ch) (IN_CTYPE_DOMAIN (Ch) && isalpha (Ch))
/haiku/src/system/libroot/os/
H A Dparsedate.cpp607 && !isalpha(dateString[3])) {
613 } else if (isalpha(c)) {
617 while (isalpha(dateString[1]))
/haiku/src/tests/kits/midi/synth_file_reader/
H A DSynthFileReader.cpp312 if (!isalpha(tag2[0])) {

Completed in 365 milliseconds

12