/external/libedit/src/ |
D | 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; 103 Char *mark; [all …]
|
D | parse.c | 61 const Char *name; 62 int (*func)(EditLine *, int, const Char **); 79 parse_line(EditLine *el, const Char *line) in parse_line() 81 const Char **argv; in parse_line() 97 FUN(el,parse)(EditLine *el, int argc, const Char *argv[]) in FUN() 99 const Char *ptr; in FUN() 106 Char *tprog; in FUN() 139 parse__escape(const Char **ptr) in parse__escape() 141 const Char *p; in parse__escape() 179 const Char hex[] = STR("0123456789ABCDEF"); in parse__escape() [all …]
|
D | 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,
|
D | el.h | 75 Char *buffer; /* Input line */ 76 Char *cursor; /* Cursor position */ 77 Char *lastchar; /* Last character */ 78 const Char *limit; /* Max position */ 91 Char thisch; /* char that generated it */ 117 Char *el_prog; /* the program name */ 127 Char **el_display; /* Real screen image = what is there */ 128 Char **el_vdisplay; /* Virtual screen image = what we see */ 151 protected int el_editmode(EditLine *, int, const Char **);
|
D | 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);
|
D | 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 *);
|
D | terminal.h | 46 const Char *name; /* name of the key */ 97 protected void terminal_overwrite(EditLine *, const Char *, size_t); 98 protected void terminal_insertwrite(EditLine *, Char *, int); 106 protected void terminal_print_arrow(EditLine *, const Char *); 107 protected int terminal_clear_arrow(EditLine *, const Char *); 108 protected int terminal_set_arrow(EditLine *, const Char *, keymacro_value_t *, int); 112 protected int terminal_settc(EditLine *, int, const Char **); 114 protected int terminal_telltc(EditLine *, int, const Char **); 115 protected int terminal_echotc(EditLine *, int, const Char **);
|
D | chartype.c | 78 ct_encode_string(const Char *s, ct_buffer_t *conv) in ct_encode_string() 111 public Char * 135 protected Char ** 140 Char *p; in ct_decode_argv() 141 Char **wargv; in ct_decode_argv() 176 ct_enc_width(Char c) in ct_enc_width() 192 ct_encode_char(char *dst, size_t len, Char c) in ct_encode_char() 207 protected const Char * 208 ct_visual_string(const Char *s) in ct_visual_string() 210 static Char *buff = NULL; in ct_visual_string() [all …]
|
D | chartype.h | 74 #define Char wchar_t macro 128 #define Char char macro 179 Char *wbuff; 185 public char *ct_encode_string(const Char *, ct_buffer_t *); 189 public Char *ct_decode_string(const char *, ct_buffer_t *); 193 protected Char **ct_decode_argv(int, const char *[], ct_buffer_t *); 197 protected ssize_t ct_encode_char(char *, size_t, Char); 198 protected size_t ct_enc_width(Char); 223 #define MB_FILL_CHAR ((Char)-1) 227 protected int ct_visual_width(Char); [all …]
|
D | prompt.c | 50 private Char *prompt_default(EditLine *); 51 private Char *prompt_default_r(EditLine *); 56 private Char * 60 static Char a[3] = {'?', ' ', '\0'}; in prompt_default() 69 private Char * 73 static Char a[1] = {'\0'}; in prompt_default_r() 86 Char *p; in prompt_print() 149 prompt_set(EditLine *el, el_pfunc_t prf, Char c, int op, int wide) in prompt_set() 181 prompt_get(EditLine *el, el_pfunc_t *prf, Char *c, int op) in prompt_get()
|
D | keymacro.c | 76 Char ch; /* single character of key */ 84 private int node_trav(EditLine *, keymacro_node_t *, Char *, 86 private int node__try(EditLine *, keymacro_node_t *, const Char *, 92 const Char *); 93 private int node_lookup(EditLine *, const Char *, 145 keymacro_map_str(EditLine *el, Char *str) in keymacro_map_str() 177 keymacro_get(EditLine *el, Char *ch, keymacro_value_t *val) in keymacro_get() 191 keymacro_add(EditLine *el, const Char *key, keymacro_value_t *val, int ntype) in keymacro_add() 219 keymacro_clear(EditLine *el, el_action_t *map, const Char *in) in keymacro_clear() 239 keymacro_delete(EditLine *el, const Char *key) in keymacro_delete() [all …]
|
D | chared.c | 83 cv_yank(EditLine *el, const Char *ptr, int size) in cv_yank() 98 Char *cp; in c_insert() 130 Char *cp; in c_delafter() 146 Char *cp; in c_delafter1() 171 Char *cp; in c_delbefore() 189 Char *cp; in c_delbefore1() 235 protected Char * 236 c__prev_word(Char *p, Char *low, int n, int (*wtest)(Int)) in c__prev_word() 259 protected Char * 260 c__next_word(Char *p, Char *high, int n, int (*wtest)(Int)) in c__next_word() [all …]
|
D | refresh.c | 56 private void re_update_line(EditLine *, Char *, Char *, int); 57 private void re_insert (EditLine *, Char *, int, int, Char *, int); 58 private void re_delete(EditLine *, Char *, int, int, int); 61 private void re__strncopy(Char *, Char *, size_t); 62 private void re__copy_and_pad(Char *, const Char *, size_t); 108 Char *firstline = el->el_vdisplay[0]; in re_nextline() 130 switch (ct_chr_class((Char)c)) { in re_addc() 149 Char visbuf[VISUAL_WIDTH_MAX]; in re_addc() 151 ct_visual_char(visbuf, VISUAL_WIDTH_MAX, (Char)c); in re_addc() 203 Char *cp, *st; in re_refresh() [all …]
|
D | search.h | 46 Char *patbuf; /* The pattern buffer */ 50 Char chacha; /* Character we are looking for */ 55 protected int el_match(const Char *, const Char *); 58 protected int c_hmatch(EditLine *, const Char *);
|
D | tokenizer.c | 75 Char *ifs; /* In field separator */ in TYPE() 77 Char **argv; /* Argument list */ in TYPE() 78 Char *wptr, *wmax; /* Space and limit on the word buffer */ in TYPE() 79 Char *wstart; /* Beginning of next word */ in TYPE() 80 Char *wspace; /* Space of word buffer */ in TYPE() 110 FUN(tok,init)(const Char *ifs) in TYPE() 196 int *argc, const Char ***argv, int *cursorc, int *cursoro) in FUN() 198 const Char *ptr; in FUN() 398 Char *s = tok_realloc(tok->wspace, in FUN() 416 Char **p; in FUN() [all …]
|
/external/avahi/avahi-daemon/ |
D | glob.c | 123 typedef uint_fast64_t Char; typedef 132 typedef char Char; typedef 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 *); 151 static DIR *g_opendir(Char *, glob_t *); 152 static const Char *g_strchr(const Char *, wchar_t); 154 static Char *g_strcat(Char *, const Char *); 156 static int g_stat(Char *, struct stat *, glob_t *); [all …]
|
/external/libxml2/result/ |
D | badcomment.xml.rdr | 4 1 8 #comment 0 1 def='NT-Char' 5 1 8 #comment 0 1 >Char</nt>* ']]>' <nt def='NT-Char'>Char</nt>*)) 9 (<nt def="NT-Char">Char</nt> - ('[' | ']'))+ 16 (<nt def='NT-Char'>Char</nt>* - 17 (<nt def='NT-Char'>Char</nt>* '&comc;' <nt def='NT-Char'>Char</nt>*))
|
D | badcomment.xml.rde | 4 1 8 #comment 0 1 def='NT-Char' 5 1 8 #comment 0 1 >Char</nt>* ']]>' <nt def='NT-Char'>Char</nt>*)) 9 (<nt def="NT-Char">Char</nt> - ('[' | ']'))+ 16 (<nt def='NT-Char'>Char</nt>* - 17 (<nt def='NT-Char'>Char</nt>* '&comc;' <nt def='NT-Char'>Char</nt>*))
|
D | badcomment.xml.sax | 6 SAX.comment( def='NT-Char') 7 SAX.comment(>Char</nt>* ']]>' <nt def='NT-Char'>Char</nt>*)) 11 (<nt def="NT-Char">Char</nt> - ('[' | ']'))+ 18 (<nt def='NT-Char'>Char</nt>* - 19 (<nt def='NT-Char'>Char</nt>* '&comc;' <nt def='NT-Char'>Char</nt>*))
|
D | badcomment.xml.sax2 | 6 SAX.comment( def='NT-Char') 7 SAX.comment(>Char</nt>* ']]>' <nt def='NT-Char'>Char</nt>*)) 11 (<nt def="NT-Char">Char</nt> - ('[' | ']'))+ 18 (<nt def='NT-Char'>Char</nt>* - 19 (<nt def='NT-Char'>Char</nt>* '&comc;' <nt def='NT-Char'>Char</nt>*))
|
/external/v8/src/runtime/ |
D | runtime-uri.cc | 19 template <typename Char> 26 template <typename Char> 33 template <typename Char> 34 static INLINE(int UnescapeChar(Vector<const Char> vector, int i, int length, 48 template <typename Char> 54 StringSearch<uint8_t, Char> search(isolate, STATIC_CHAR_VECTOR("%")); in Unescape() 55 index = search.Search(source->GetCharVector<Char>(), 0); in Unescape() 58 return UnescapeSlow<Char>(isolate, source, index); in Unescape() 62 template <typename Char> 72 Vector<const Char> vector = string->GetCharVector<Char>(); in UnescapeSlow() [all …]
|
/external/bzip2/ |
D | bzip2.c | 161 typedef char Char; typedef 205 Char inName [FILE_NAME_LEN]; 206 Char outName[FILE_NAME_LEN]; 207 Char tmpName[FILE_NAME_LEN]; 208 Char *progName; 209 Char progNameReally[FILE_NAME_LEN]; 213 static void panic ( const Char* ) NORETURN; 221 static void copyFileName ( Char*, Char* ); 385 Char buf_nin[32], buf_nout[32]; in compressStream() 746 void panic ( const Char* s ) in panic() [all …]
|
/external/avahi/avahi-common/ |
D | utf8.c | 33 #define UNICODE_VALID(Char) \ argument 34 ((Char) < 0x110000 && \ 35 (((Char) & 0xFFFFF800) != 0xD800) && \ 36 ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \ 37 ((Char) & 0xFFFE) != 0xFFFE)
|
/external/clang/test/CXX/basic/basic.start/basic.start.main/ |
D | p2.cpp | 25 typedef char Char; typedef 26 typedef Char* Carp; 35 typedef char Char; typedef 36 typedef Char* Carp; 38 Int main(Int argc, Carp argv[], Char *env[]) { in main()
|
/external/clang/lib/Lex/ |
D | Lexer.cpp | 1964 unsigned char Char = *CurPtr; in SkipWhitespace() local 1969 while (isHorizontalWhitespace(Char)) in SkipWhitespace() 1970 Char = *++CurPtr; in SkipWhitespace() 1973 if (!isVerticalWhitespace(Char)) in SkipWhitespace() 1984 Char = *++CurPtr; in SkipWhitespace() 2432 char Char = getAndAdvanceChar(CurPtr, Tmp); in ReadToEndOfLine() local 2433 switch (Char) { in ReadToEndOfLine() 2436 Result->push_back(Char); in ReadToEndOfLine() 2449 Result->push_back(Char); in ReadToEndOfLine() 2456 assert(CurPtr[-1] == Char && "Trigraphs for newline?"); in ReadToEndOfLine() [all …]
|