HomeSort by relevance Sort by last modified time
    Searched refs:Char (Results 1 - 25 of 444) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/
EntryPointGlue.c 61 CHAR8 *Char;
75 for (Char = CmdLine, Arg = 0, Index = 0; *Char != '\0' && *Char != CMD_SEPARATOR; Char++, Index++) {
77 if (*Char == '\t') {
79 *Char = ' ';
84 if (*Char == '"') {
85 Argv[Arg++] = ++Char;
88 } else if (*Char != ' ') {
    [all...]
  /external/fmtlib/fmt/
string.h 20 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;
61 | StringWriter | BasicStringWriter<char> |
80 template <typename Char, typename Allocator = std::allocator<Char> >
81 class BasicStringWriter : public BasicWriter<Char> {
83 internal::StringBuffer<Char, Allocator> buffer_
    [all...]
ostream.h 20 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]) {
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...]
printf.cc 15 template <typename Char>
16 void printf(BasicWriter<Char> &w, BasicCStringRef<Char> format, ArgList args);
27 template void PrintfFormatter<char>::format(CStringRef format);
printf.h 127 // Converts an integer argument to char for printf.
139 arg_.type = internal::Arg::CHAR;
140 arg_.int_value = static_cast<char>(value);
192 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
    [all...]
  /external/fmtlib/test/
util.h 43 void safe_sprintf(char (&buffer)[SIZE], const char *format, ...) {
51 void increment(char *s);
55 extern const char *const FILE_CONTENT;
60 inline FILE *safe_fopen(const char *filename, const char *mode) {
71 template <typename Char>
74 std::basic_string<Char> value_;
76 static const Char EMPTY[];
79 explicit BasicTestString(const Char *value = EMPTY) : value_(value) {
    [all...]
  /external/libcxx/test/std/experimental/memory/memory.resource.aliases/
header_string_synop.pass.cpp 17 // template <class Char, class Traits = ...>
19 // ::std::basic_string<Char, Traits, polymorphic_allocator<Char>>
37 template <class Char, class PmrTypedef>
39 using StdStr = std::basic_string<Char, std::char_traits<Char>,
40 pmr::polymorphic_allocator<Char>>;
41 using PmrStr = pmr::basic_string<Char>;
46 template <class Char, class Traits>
48 using StdStr = std::basic_string<Char, Traits
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.aliases/
header_string_synop.pass.cpp 16 // template <class Char, class Traits = ...>
18 // ::std::basic_string<Char, Traits, polymorphic_allocator<Char>>
36 template <class Char, class PmrTypedef>
38 using StdStr = std::basic_string<Char, std::char_traits<Char>,
39 pmr::polymorphic_allocator<Char>>;
40 using PmrStr = pmr::basic_string<Char>;
45 template <class Char, class Traits>
47 using StdStr = std::basic_string<Char, Traits
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/
memset.c 33 IN int Char,
40 *Ptr = (UINT8) Char;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/
GdbDebugAgent.c 47 CHAR8 Char;
58 Char = *Str++;
59 if ((Char == 0x7d) || (Char == 0x23) || (Char == 0x24) || (Char == 0x2a)) {
63 Char ^= 0x20;
65 *OutBufPtr++ = Char;
131 IN unsigned char *Address,
164 IN unsigned char *Address
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbSerialDebugPortLib/
GdbSerialDebugPortLib.c 128 CHAR8 Char;
132 BufferSize = sizeof (Char);
133 Status = gDebugPort->Read (gDebugPort, gTimeOut, &BufferSize, &Char);
134 } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));
136 return Char;
144 @param Char Send a character to GDB
151 IN CHAR8 Char
158 BufferSize = sizeof (Char);
159 Status = gDebugPort->Write (gDebugPort, gTimeOut, &BufferSize, &Char);
160 } while (EFI_ERROR (Status) || BufferSize != sizeof (Char));
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
Debug.h 26 CHAR8 Char
  /device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
Debug.h 26 CHAR8 Char
  /external/openssh/openbsd-compat/
glob.c 107 typedef u_short Char;
116 typedef char Char;
121 #define CHAR(c) ((Char)((c)&M_ASCII))
122 #define META(c) ((Char)((c)|M_QUOTE))
146 char *gps_path;
152 static int g_Ctoc(const Char *, char *, u_int);
153 static int g_lstat(Char *, struct stat *, glob_t *)
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Main.c 174 CHAR8 *Char;
186 for (Char = CmdLine, Arg = 0; *Char != '\0'; Char++) {
187 if (!InQuote && *Char == CMD_SEPARATOR) {
192 if (*Char == '\t') {
194 *Char = ' ';
199 if (*Char == '"') {
200 Argv[Arg++] = ++Char;
203 } else if (*Char != ' ') {
    [all...]

Completed in 434 milliseconds

1 2 3 4 5 6 7 8 91011>>