HomeSort by relevance Sort by last modified time
    Searched refs:CTL_LAST (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 49 #define CTL_LAST '\211' /* last 'special' character */

Completed in 129 milliseconds