Home
last modified time | relevance | path

Searched refs:Char (Results 1 – 25 of 215) sorted by relevance

123456789

/external/libedit/src/
Dchared.h66 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 …]
Dparse.c61 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 …]
Dkeymacro.h45 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,
Del.h75 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 **);
Dmap.h44 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);
Dparse.h43 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 *);
Dterminal.h46 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 **);
Dchartype.h74 #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 …]
Dchartype.c78 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 …]
Dprompt.c50 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()
Dkeymacro.c76 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 …]
Dchared.c83 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 …]
/external/openssh/openbsd-compat/
Dglob.c108 typedef u_short Char; typedef
117 typedef char Char; typedef
122 #define CHAR(c) ((Char)((c)&M_ASCII))
123 #define META(c) ((Char)((c)|M_QUOTE))
153 static int g_Ctoc(const Char *, char *, u_int);
154 static int g_lstat(Char *, struct stat *, glob_t *);
155 static DIR *g_opendir(Char *, glob_t *);
156 static Char *g_strchr(const Char *, int);
157 static int g_strncmp(const Char *, const char *, size_t);
158 static int g_stat(Char *, struct stat *, glob_t *);
[all …]
/external/fmtlib/fmt/
Dprintf.h192 template <typename Impl, typename Char>
193 class BasicPrintfArgFormatter : public internal::ArgFormatterBase<Impl, Char> {
200 typedef internal::ArgFormatterBase<Impl, Char> Base;
210 BasicPrintfArgFormatter(BasicWriter<Char> &w, FormatSpec &s)
211 : internal::ArgFormatterBase<Impl, Char>(w, s) {}
225 BasicWriter<Char> &w = this->writer();
228 typedef typename BasicWriter<Char>::CharPtr CharPtr;
231 Char fill = ' ';
242 *out = static_cast<Char>(value);
265 BasicFormatter<Char> formatter(ArgList(), this->writer());
[all …]
Dformat.h425 template <typename Char>
431 template <typename Char>
434 template <typename Impl, typename Char>
466 template <typename Char>
469 const Char *data_;
474 BasicStringRef(const Char *s, std::size_t size) : data_(s), size_(size) {} in BasicStringRef()
482 BasicStringRef(const Char *s) in BasicStringRef()
483 : data_(s), size_(std::char_traits<Char>::length(s)) {} in BasicStringRef()
492 const std::basic_string<Char, std::char_traits<Char>, Allocator> &s) in BasicStringRef() argument
500 std::basic_string<Char> to_string() const { in to_string()
[all …]
Dostream.h20 template <class Char>
21 class FormatBuf : public std::basic_streambuf<Char> {
23 typedef typename std::basic_streambuf<Char>::int_type int_type;
24 typedef typename std::basic_streambuf<Char>::traits_type traits_type;
26 Buffer<Char> &buffer_;
27 Char *start_;
30 FormatBuf(Buffer<Char> &buffer) : buffer_(buffer), start_(&buffer[0]) { in FormatBuf()
75 template <typename Char, typename ArgFormatter, typename T>
76 void format_arg(BasicFormatter<Char, ArgFormatter> &f,
77 const Char *&format_str, const T &value) {
[all …]
Dstring.h20 template <typename Char, typename Allocator = std::allocator<Char> >
21 class StringBuffer : public Buffer<Char> {
23 typedef std::basic_string<Char, std::char_traits<Char>, Allocator> StringType;
80 template <typename Char, typename Allocator = std::allocator<Char> >
81 class BasicStringWriter : public BasicWriter<Char> {
83 internal::StringBuffer<Char, Allocator> buffer_;
92 : BasicWriter<Char>(buffer_), buffer_(allocator) {}
99 void move_to(std::basic_string<Char, std::char_traits<Char>, Allocator> &str) { in move_to() argument
/external/libxml2/result/
Dbadcomment.xml.rdr4 1 8 #comment 0 1 def='NT-Char'
5 1 8 #comment 0 1 >Char</nt>* ']]&gt;' <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>*))
Dbadcomment.xml.rde4 1 8 #comment 0 1 def='NT-Char'
5 1 8 #comment 0 1 >Char</nt>* ']]&gt;' <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>*))
Dbadcomment.xml.sax6 SAX.comment( def='NT-Char')
7 SAX.comment(>Char</nt>* ']]&gt;' <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>*))
Dbadcomment.xml.sax26 SAX.comment( def='NT-Char')
7 SAX.comment(>Char</nt>* ']]&gt;' <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/libxml2/result/noent/
Dbadcomment.xml.sax26 SAX.comment( def='NT-Char')
7 SAX.comment(>Char</nt>* ']]&gt;' <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/fmtlib/test/
Dutil.h71 template <typename Char>
74 std::basic_string<Char> value_;
76 static const Char EMPTY[];
79 explicit BasicTestString(const Char *value = EMPTY) : value_(value) {} in value_()
81 const std::basic_string<Char> &value() const { return value_; } in value()
84 template <typename Char>
85 const Char BasicTestString<Char>::EMPTY[] = {0};
90 template <typename Char>
91 std::basic_ostream<Char> &operator<<(
92 std::basic_ostream<Char> &os, const BasicTestString<Char> &s) {
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_string_synop.pass.cpp37 template <class Char, class PmrTypedef>
39 using StdStr = std::basic_string<Char, std::char_traits<Char>, in test_string_typedef()
40 pmr::polymorphic_allocator<Char>>; in test_string_typedef()
41 using PmrStr = pmr::basic_string<Char>; in test_string_typedef()
46 template <class Char, class Traits>
48 using StdStr = std::basic_string<Char, Traits, in test_basic_string_alias()
49 pmr::polymorphic_allocator<Char>>; in test_basic_string_alias()
50 using PmrStr = pmr::basic_string<Char, Traits>; in test_basic_string_alias()
/external/bzip2/
Dbzip2.c161 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 …]

123456789