/external/libedit/src/ |
parse.h | 43 protected int parse_line(EditLine *, const Char *); 44 protected int parse__escape(const Char **); 45 protected Char *parse__string(Char *, const Char *); 46 protected int parse_cmd(EditLine *, const Char *);
|
chared.h | 66 Char **macro; 75 Char *buf; /* full saved text */ 80 Char *buf; /* redo insert key sequence */ 81 Char *pos; 82 Char *lim; 84 Char ch; /* char that invoked it */ 94 Char *pos; 101 Char *buf; 102 Char *last [all...] |
filecomplete.h | 35 char *(*)(const char *, int), 36 char **(*)(const char *, int, int), 37 const Char *, const Char *, const char *(*)(const char *), size_t, 40 void fn_display_match_list(EditLine *, char **, size_t, size_t); 41 char *fn_tilde_expand(const char *) [all...] |
prompt.h | 45 typedef Char *(*el_pfunc_t)(EditLine *); 50 Char p_ignore; /* character to start/end literal */ 55 protected int prompt_set(EditLine *, el_pfunc_t, Char, int, int); 56 protected int prompt_get(EditLine *, el_pfunc_t *, Char *, int);
|
map.h | 44 const Char *name; /* function name for bind command */ 46 const Char *description; /* description of function */ 68 protected int map_bind(EditLine *, int, const Char **); 73 protected int map_set_editor(EditLine *, Char *); 74 protected int map_get_editor(EditLine *, const Char **); 75 protected int map_addfunc(EditLine *, const Char *, const Char *, el_func_t);
|
keymacro.h | 45 Char *str; /* If it is a string... */ 51 Char *buf; /* Key print buffer */ 64 protected keymacro_value_t *keymacro_map_str(EditLine *, Char *); 66 protected int keymacro_get(EditLine *, Char *, keymacro_value_t *); 67 protected void keymacro_add(EditLine *, const Char *, keymacro_value_t *, int); 68 protected void keymacro_clear(EditLine *, el_action_t *, const Char *); 69 protected int keymacro_delete(EditLine *, const Char *); 70 protected void keymacro_print(EditLine *, const Char *); 71 protected void keymacro_kprint(EditLine *, const Char *, keymacro_value_t *, 73 protected size_t keymacro__decode_str(const Char *, char *, size_t [all...] |
search.h | 46 Char *patbuf; /* The pattern buffer */ 50 Char chacha; /* Character we are looking for */ 51 char chatflg; /* 0 if f, 1 if t */ 55 protected int el_match(const Char *, const Char *); 58 protected int c_hmatch(EditLine *, const Char *);
|
el.h | 67 typedef unsigned char el_action_t; /* Index to command array */ 75 Char *buffer; /* Input line */ 76 Char *cursor; /* Cursor position */ 77 Char *lastchar; /* Last character */ 78 const Char *limit; /* Max position */ 88 int metanext; /* Is the next char a meta char */ 91 Char thisch; /* char that generated it */ 117 Char *el_prog; /* the program name * [all...] |
terminal.h | 46 const Char *name; /* name of the key */ 53 const char *t_name; /* the terminal name */ 65 char *t_buf; /* Termcap buffer */ 67 char **t_str; /* termcap strings */ 69 char *t_cap; /* Termcap buffer */ 86 extern int tgetent(char *, const char *); 87 extern int tgetflag(char *); 88 extern int tgetnum(char *); 89 extern int tputs(const char *, int, int (*)(int)) [all...] |
parse.c | 38 static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93"; 61 const Char *name; 62 int (*func)(EditLine *, int, const Char **); 79 parse_line(EditLine *el, const Char *line) 81 const Char **argv; 97 FUN(el,parse)(EditLine *el, int argc, const Char *argv[]) 99 const Char *ptr; 106 Char *tprog; 135 * Parse a string of the form ^<char> \<odigit> \<char> \U+xxxx and retur [all...] |
prompt.c | 38 static char sccsid[] = "@(#)prompt.c 8.1 (Berkeley) 6/4/93"; 50 private Char *prompt_default(EditLine *); 51 private Char *prompt_default_r(EditLine *); 56 private Char * 60 static Char a[3] = {'?', ' ', '\0'}; 69 private Char * 73 static Char a[1] = {'\0'}; 86 Char *p; 97 p = ct_decode_string((char *)(void *)(*elp->p_func)(el), 149 prompt_set(EditLine *el, el_pfunc_t prf, Char c, int op, int wide [all...] |
read.h | 38 typedef int (*el_rfunc_t)(EditLine *, Char *);
|
chartype.c | 77 public char * 78 ct_encode_string(const Char *s, ct_buffer_t *conv) 80 char *dst; 111 public Char * 112 ct_decode_string(const char *s, ct_buffer_t *conv) 135 protected Char ** 136 ct_decode_argv(int argc, const char *argv[], ct_buffer_t *conv) 140 Char *p; 141 Char **wargv; 176 ct_enc_width(Char c [all...] |
chartype.h | 74 #define Char wchar_t 128 #define Char char 135 #define UC(c) (unsigned char)(c) 137 #define Isalpha(x) isalpha((unsigned char)x) 138 #define Isalnum(x) isalnum((unsigned char)x) 139 #define Isgraph(x) isgraph((unsigned char)x) 140 #define Isspace(x) isspace((unsigned char)x) 141 #define Isdigit(x) isdigit((unsigned char)x) 142 #define Iscntrl(x) iscntrl((unsigned char)x [all...] |
/external/avahi/avahi-common/ |
utf8.c | 33 #define UNICODE_VALID(Char) \ 34 ((Char) < 0x110000 && \ 35 (((Char) & 0xFFFFF800) != 0xD800) && \ 36 ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \ 37 ((Char) & 0xFFFE) != 0xFFFE) 42 if ((*(const unsigned char *)p & 0xc0) != 0x80) /* 10xxxxxx */ \ 45 val |= (*(const unsigned char *)p) & 0x3f; \ 49 const char * 50 avahi_utf8_valid (const char *str [all...] |
/frameworks/base/tools/aapt2/util/ |
Util.h | 34 std::vector<std::string> split(const StringPiece& str, char sep); 35 std::vector<std::string> splitAndLowercase(const StringPiece& str, char sep); 119 const char* sep) { 163 const char* str = pool.string8At(idx, &len); 225 template <typename Char> 234 BasicStringPiece<Char> operator*(); 239 friend class Tokenizer<Char>; 241 iterator(BasicStringPiece<Char> s, Char sep, BasicStringPiece<Char> tok, bool end) [all...] |
/external/avahi/avahi-daemon/ |
glob.c | 38 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; 123 typedef uint_fast64_t Char; 132 typedef char Char; 137 #define CHAR(c) ((Char)((c)&M_CHAR)) 138 #define META(c) ((Char)((c)|M_QUOTE)) 149 static int g_Ctoc(const Char *, char *, size_t); 150 static int g_lstat(Char *, struct stat *, glob_t *) [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/ |
implementation_help.hpp | 35 inline const char* str_end( const char* s, const char* ) 56 template< class Char > 57 inline Char* str_end( Char* s ) 59 return const_cast<Char*>( str_end( s, s ) ); 78 template< class Char > 79 inline std::size_t str_size( const Char* const& s )
|
/hardware/bsp/intel/peripheral/libmraa/src/glob/ |
glob.c | 38 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; 135 typedef unsigned short Char; 139 #define M_QUOTE (Char)0x80 140 #define M_PROTECT (Char)0x40 141 #define M_MASK (Char)0xff 142 #define M_ASCII (Char)0x7f 144 typedef char Char; 149 #define CHAR(c) ((Char)((c)&M_ASCII) [all...] |
/external/clang/test/CXX/basic/basic.start/basic.start.main/ |
p2.cpp | 25 typedef char Char; 26 typedef Char* Carp; 35 typedef char Char; 36 typedef Char* Carp; 38 Int main(Int argc, Carp argv[], Char *env[]) { 70 int main(int argc, const char* const* argv) { 86 typedef char charT; 92 typedef char charT [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_put.cpp | 29 template <class Char> 31 __insert_grouping_aux(Char* first, Char* last, const string& grouping, 32 Char separator, Char Plus, Char Minus, 47 Char* cur_group = last; // Points immediately beyond the rightmost 72 template <class Char, class Str> 74 __insert_grouping_aux( /* __basic_iostring<Char> */ Str& iostr, size_t __group_pos, 76 Char separator, Char Plus, Char Minus [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/ |
as_literal.hpp | 36 inline std::size_t length( const char* s ) 54 inline bool is_char_ptr( char* ) 59 inline bool is_char_ptr( const char* ) 112 template< class Char, std::size_t sz > 113 inline iterator_range<Char*> as_literal( Char (&arr)[sz] ) 118 template< class Char, std::size_t sz > 119 inline iterator_range<const Char*> as_literal( const Char (&arr)[sz] )
|
/external/v8/src/runtime/ |
runtime-uri.cc | 19 template <typename Char> 24 static const signed char kHexValue['g']; 26 template <typename Char> 33 template <typename Char> 34 static INLINE(int UnescapeChar(Vector<const Char> vector, int i, int length, 39 const signed char URIUnescape::kHexValue[] = { 48 template <typename Char> 54 StringSearch<uint8_t, Char> search(isolate, STATIC_CHAR_VECTOR("%")); 55 index = search.Search(source->GetCharVector<Char>(), 0); 58 return UnescapeSlow<Char>(isolate, source, index) [all...] |
/hardware/ti/omap3/dspbridge/inc/ |
rmstypes.h | 48 typedef Char RMS_CHAR;
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
rmstypes.h | 48 typedef Char RMS_CHAR;
|