Searched refs:isalpha (Results 1 - 25 of 45) sorted by last modified time

12

/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/system/libroot/add-ons/icu/
H A DICUTimeConversion.cpp77 while(isalpha(*tzNameEnd))
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp262 } else if (isalpha(*fCurrentChar) || *fCurrentChar == '_'
268 && (isalpha(*fCurrentChar) || *fCurrentChar == '_'
/haiku/src/bin/
H A Ddf.cpp204 while (*++arg && isalpha(*arg)) {
/haiku/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A Dtest.cpp652 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/os/
H A Dparsedate.cpp607 && !isalpha(dateString[3])) {
613 } else if (isalpha(c)) {
617 while (isalpha(dateString[1]))
/haiku/src/bin/mail_utils/
H A Dspamdbm.cpp2040 isalpha (ProtocolStringPntr[-1]))
/haiku/src/bin/bfs_tools/
H A Drecover.cpp760 while (*++arg && isalpha(*arg)) {
H A Dchkindex.cpp432 while (*++arg && isalpha(*arg))
H A Dbfswhich.cpp267 while (*++arg && isalpha(*arg)) {
/haiku/src/apps/mail/
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/system/libroot/stubbed/
H A Dlibroot_stubs_legacy.c1896 void isalpha() {} function
H A Dlibroot_stubs.c1929 void isalpha() {} function
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyInfos.cpp155 if ((length == 1) && (isalpha(c)))
/haiku/src/kits/support/
H A DString.cpp2034 if (isalpha(fPrivateData[count])) {
2045 if (isalpha(fPrivateData[count]))
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp12 #undef isalpha macro
54 isalpha(int c) function
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h97 __exctype (isalpha); variable
156 # define isalpha(c) __isctype((c), _ISalpha) macro
/haiku/headers/posix/
H A Dctype.h17 int isalpha(int);
87 #define isalpha(c) __isctype((c), _ISalpha) macro
/haiku/src/kits/shared/
H A DExpressionParser.cpp217 } else if (isalpha(*fCurrentChar) && *fCurrentChar != 'x') {
219 while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
/haiku/src/build/libgnuregex/
H A Dregex.c122 /* isalpha etc. are used for the character classes. */
143 #define ISALPHA(c) (isascii (c) && isalpha (c))
/haiku/src/tools/gensyscalls/
H A Dgensyscalls.cpp636 if (*type != '_' && !isalpha(*type)) {
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp627 while (isalpha(c = read_char(stream))) {
/haiku/src/tests/kits/midi/synth_file_reader/
H A DSynthFileReader.cpp312 if (!isalpha(tag2[0])) {
/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...]

Completed in 302 milliseconds

12