OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CTL_FIRST
(Results
1 - 3
of
3
) sorted by null
/system/core/sh/
syntax.c
18
set_range(
CTL_FIRST
, CTL_LAST, CCTL)
39
set_range(
CTL_FIRST
, CTL_LAST, CCTL)
60
set_range(
CTL_FIRST
, CTL_LAST, CCTL)
77
set_range(
CTL_FIRST
, CTL_LAST, CCTL)
syntax.h
73
#define is_alpha(c) (((char)(c)) != UPEOF && ((c) <
CTL_FIRST
|| (c) > CTL_LAST) && isalpha((unsigned char)(c)))
74
#define is_name(c) (((char)(c)) != UPEOF && ((c) <
CTL_FIRST
|| (c) > CTL_LAST) && ((c) == '_' || isalpha((unsigned char)(c))))
75
#define is_in_name(c) (((char)(c)) != UPEOF && ((c) <
CTL_FIRST
|| (c) > CTL_LAST) && ((c) == '_' || isalnum((unsigned char)(c))))
parser.h
38
#define
CTL_FIRST
'\201' /* first 'special' character */
Completed in 749 milliseconds