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

12

/haiku/src/add-ons/input_server/methods/pen/
H A DDumpMessage.cpp46 else if (isalpha(p[i+j]))
/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/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp207 while(isalpha(*s))
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1741 if (!isalpha(line[end]) && !isdigit(line[end]))
1746 if (!isalpha(line[start - 1]) && !isdigit(line[start - 1]))
/haiku/src/bin/bfs_tools/
H A Dbfsinfo.cpp249 while (*++arg && isalpha(*arg)) {
H A Dbfswhich.cpp267 while (*++arg && isalpha(*arg)) {
H A Dchkindex.cpp432 while (*++arg && isalpha(*arg))
/haiku/src/bin/pc/
H A Dpc.c885 else if (isalpha(**str) || **str == '_') /* a variable name */
1067 if (isalpha(**str) == 0 && **str != '_')
/haiku/src/bin/rc/
H A Ddecompile.cpp138 if (name[0] != '_' && !isalpha(name[0]))
/haiku/src/bin/
H A Dshutdown.cpp101 if (!isalpha(arg[1]))
104 while (arg && isalpha((++arg)[0])) {
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.cpp165 } else if (isalpha(*fCurrentChar) || *fCurrentChar == '_') {
167 while (*fCurrentChar != 0 && (isalpha(*fCurrentChar)
/haiku/src/kits/support/
H A DUrl.cpp1410 if (index == 0 && !isalpha(c))
/haiku/src/libs/bsd/
H A Dreadpassphrase.c121 if (isalpha(ch)) {
/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/system/libroot/posix/glibc/regex/
H A Dregcomp.c3529 BUILD_CHARCLASS_LOOP (isalpha);
/haiku/src/tests/kits/storage/
H A DQueryTest.cpp142 if (isalpha(c)) {
/haiku/src/tests/system/libroot/posix/
H A Dlocale_test.cpp796 if (isalpha(i))
/haiku/headers/posix/
H A Dctype.h17 int isalpha(int);
87 #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/bus_managers/acpi/acpica/include/
H A Dacclib.h182 #define isalpha(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) macro
/haiku/src/add-ons/kernel/debugger/demangle/
H A Dgcc3+.cpp1188 isalpha(fInfo->name[0]) ? "operator " : "operator")
1543 bool isIdentifier = isalpha(fInfo->name[0]) || fInfo->name[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...]
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp627 while (isalpha(c = read_char(stream))) {
/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...]
H A DWords.cpp148 if (isalpha(*nptr)) {
274 if (isalpha(*Word))
751 while (*src && !isalpha(*src))

Completed in 245 milliseconds

12