Symbol: isalpha
headers/posix/ctype.h
17
int isalpha(int);
src/add-ons/input_server/filters/shortcut_catcher/KeyInfos.cpp
155
if ((length == 1) && (isalpha(c)))
src/add-ons/input_server/methods/pen/DumpMessage.cpp
46
else if (isalpha(p[i+j]))
src/add-ons/kernel/debugger/demangle/gcc3+.cpp
1188
isalpha(fInfo->name[0]) ? "operator " : "operator")
src/add-ons/kernel/debugger/demangle/gcc3+.cpp
1543
bool isIdentifier = isalpha(fInfo->name[0]) || fInfo->name[0] == '_';
src/add-ons/kernel/debugger/hangman/hangman.c
149
for (beg = 0; beg < got && isalpha(bigbuffer[beg]); beg++);
src/add-ons/kernel/debugger/hangman/hangman.c
150
for (; beg < got && !isalpha(bigbuffer[beg]); beg++);
src/add-ons/kernel/debugger/hangman/hangman.c
151
if (beg + 1 < got && isalpha(bigbuffer[beg])) {
src/add-ons/kernel/debugger/hangman/hangman.c
152
for (end = beg; end < got && isalpha(bigbuffer[end]); end++);
src/add-ons/kernel/debugger/hangman/hangman.c
153
if (end < got && !isalpha(bigbuffer[end]) && beg + MIN_LETTERS < end) {
src/add-ons/kernel/debugger/hangman/hangman.c
194
for (beg = 0; beg < got && isalpha(p[beg]); beg++);
src/add-ons/kernel/debugger/hangman/hangman.c
195
for (; beg < got && !isalpha(p[beg]); beg++);
src/add-ons/kernel/debugger/hangman/hangman.c
196
if (beg + 1 < got && isalpha(p[beg])) {
src/add-ons/kernel/debugger/hangman/hangman.c
197
for (end = beg; end < got && isalpha(p[end]); end++);
src/add-ons/kernel/debugger/hangman/hangman.c
198
if (end < got && !isalpha(p[end]) && beg + MIN_LETTERS < end) {
src/add-ons/kernel/debugger/hangman/hangman.c
271
if (!isalpha(str[0])) {
src/add-ons/kernel/file_systems/cdda/cdda.cpp
245
while (!isalpha(string[0])) {
src/add-ons/kernel/file_systems/cdda/cdda.cpp
268
bool newWord = isalpha(string[0]) || isspace(string[0]);
src/add-ons/kernel/file_systems/cdda/cdda.cpp
270
if (isalpha(string[0])) {
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
207
while(isalpha(*s))
src/add-ons/translators/rtf/RTF.cpp
627
while (isalpha(c = read_char(stream))) {
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1775
if (!isalpha(line[end]) && !isdigit(line[end]))
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1780
if (!isalpha(line[start - 1]) && !isdigit(line[start - 1]))
src/apps/mail/Content.cpp
1425
if (isalpha(text[offset])) {
src/apps/mail/Content.cpp
1436
(first >= 0) && (((c = text[first]) == '\'') || isalpha(c));
src/apps/mail/Content.cpp
1440
for (start = offset, c = text[start], isAlpha = isalpha(c), isApost = (c=='\'');
src/apps/mail/Content.cpp
1442
&& (((c = text[start+1]) != 's') || !isCap) && isalpha(c)
src/apps/mail/Content.cpp
1443
&& isalpha(text[start-1])));
src/apps/mail/Content.cpp
1444
start--, c = text[start], isAlpha = isalpha(c), isApost = (c == '\'')) {}
src/apps/mail/Content.cpp
1447
for (end = offset, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'');
src/apps/mail/Content.cpp
1449
&& (((c = text[end + 1]) != 's') || !isCap) && isalpha(c)));
src/apps/mail/Content.cpp
1450
end++, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'')) {}
src/apps/mail/Content.cpp
2704
|| isalpha(text[offset + 1])
src/apps/mail/Content.cpp
2705
|| (!isalpha(text[offset]) && text[offset] != '\'')
src/apps/mail/Content.cpp
2787
isAlpha = isalpha(*next);
src/apps/mail/Content.cpp
2794
} else if (word && (isAlpha || isApost) && !(isApost && !isalpha(next[1]))
src/apps/mail/Content.cpp
2872
&& (isalpha(text[start]) || text[start] == '\''); start--) {}
src/apps/mail/Content.cpp
2877
&& (isalpha(text[end]) || text[end] == '\''); end++) {}
src/apps/mail/Words.cpp
148
if (isalpha(*nptr)) {
src/apps/mail/Words.cpp
274
if (isalpha(*Word))
src/apps/mail/Words.cpp
751
while (*src && !isalpha(*src))
src/bin/bfs_tools/bfsinfo.cpp
249
while (*++arg && isalpha(*arg)) {
src/bin/bfs_tools/bfswhich.cpp
267
while (*++arg && isalpha(*arg)) {
src/bin/bfs_tools/chkindex.cpp
432
while (*++arg && isalpha(*arg))
src/bin/bfs_tools/recover.cpp
760
while (*++arg && isalpha(*arg)) {
src/bin/df.cpp
281
while (*++arg && isalpha(*arg)) {
src/bin/mail_utils/spamdbm.cpp
2040
isalpha (ProtocolStringPntr[-1]))
src/bin/pc/pc.c
1067
if (isalpha(**str) == 0 && **str != '_')
src/bin/pc/pc.c
885
else if (isalpha(**str) || **str == '_') /* a variable name */
src/bin/rc/decompile.cpp
138
if (name[0] != '_' && !isalpha(name[0]))
src/bin/setversion.cpp
200
if (isalpha(argv[i][0]))
src/bin/setversion.cpp
208
if (isalpha(argv[i][0]))
src/bin/setversion.cpp
216
if (isalpha(argv[i][0]))
src/bin/setversion.cpp
247
if (isalpha(argv[i][0]))
src/bin/shutdown.cpp
101
if (!isalpha(arg[1]))
src/bin/shutdown.cpp
104
while (arg && isalpha((++arg)[0])) {
src/build/libgnuregex/regex.c
142
#define ISALPHA(c) (isascii (c) && isalpha (c))
src/kits/app/Roster.cpp
360
if (isalpha(from[0])) {
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
165
} else if (isalpha(*fCurrentChar) || *fCurrentChar == '_') {
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
167
while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
src/kits/shared/ExpressionParser.cpp
217
} else if (isalpha(*fCurrentChar) && *fCurrentChar != 'x') {
src/kits/shared/ExpressionParser.cpp
219
while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
src/kits/shared/TextTable.cpp
82
while (!isalpha(string[charLen - 1]) && string[charLen - 1] != '\0')
src/kits/support/String.cpp
2016
if (isalpha(fPrivateData[count])) {
src/kits/support/String.cpp
2027
if (isalpha(fPrivateData[count]))
src/kits/support/Url.cpp
1388
if (index == 0 && !isalpha(c))
src/libs/bsd/readpassphrase.c
121
if (isalpha(ch)) {
src/preferences/keymap/KeyboardLayout.cpp
479
if (isalpha(data[0])) {
src/preferences/keymap/KeyboardLayout.cpp
613
while (isalpha(data[0])) {
src/preferences/keymap/KeyboardLayout.cpp
727
while (isalpha(term[length + index])) {
src/system/kernel/debug/debug_parser.cpp
262
} else if (isalpha(*fCurrentChar) || *fCurrentChar == '_'
src/system/kernel/debug/debug_parser.cpp
268
&& (isalpha(*fCurrentChar) || *fCurrentChar == '_'
src/system/libroot/add-ons/icu/ICUTimeConversion.cpp
77
while(isalpha(*tzNameEnd))
src/system/libroot/os/parsedate.cpp
607
&& !isalpha(dateString[3])) {
src/system/libroot/os/parsedate.cpp
613
} else if (isalpha(c)) {
src/system/libroot/os/parsedate.cpp
617
while (isalpha(dateString[1]))
src/system/libroot/posix/glibc/regex/regcomp.c
3634
BUILD_CHARCLASS_LOOP (isalpha);
src/system/libroot/posix/glibc/stdlib/strtol.c
198
# define ISALPHA(Ch) (IN_CTYPE_DOMAIN (Ch) && isalpha (Ch))
src/tests/add-ons/kernel/file_systems/bfs/btree/test.cpp
652
while (*++arg && isalpha(*arg)) {
src/tests/add-ons/kernel/file_systems/bfs/dump_log/dump_log.cpp
187
while (*++arg && isalpha(*arg)) {
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
312
if (!isalpha(tag2[0])) {
src/tests/kits/storage/QueryTest.cpp
142
if (isalpha(c)) {
src/tests/system/libroot/posix/locale_test.cpp
796
if (isalpha(i))
src/tools/gensyscalls/gensyscalls.cpp
636
if (*type != '_' && !isalpha(*type)) {