HomeSort by relevance Sort by last modified time
    Searched refs:Char (Results 1 - 25 of 432) 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...]
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...]
  /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...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/ParsePcdLib/
ParsePcdLib.c 44 IN CHAR16 Char
48 if (Char >= L'a' && Char <= L'z') {
49 return (CHAR16) (Char - (L'a' - L'A'));
52 return Char;
58 IN CHAR16 Char
62 return (BOOLEAN) (Char >= L'0' && Char <= L'9');
69 IN CHAR16 Char
72 if (IsDecimalDigitChar (Char)) {
    [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/r16/sources/cxx-stl/llvm-libc++/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...]
  /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
  /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...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
Rtc.c 30 It assumes the input Char is in the scope of L'0' ~ L'9' and L'A' ~ L'F'
32 @param Char The input char which need to change to a hex number.
37 IN CHAR16 Char
40 if ((Char >= L'0') && (Char <= L'9')) {
41 return (UINTN) (Char - L'0');
44 if ((Char >= L'A') && (Char <= L'F')) {
45 return (UINTN) (Char - L'A' + 0xA);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Glob/
glob.c 137 typedef u_short Char;
141 #define M_QUOTE (Char)0x80
142 #define M_PROTECT (Char)0x40
143 #define M_MASK (Char)0xff
144 #define M_ASCII (Char)0x7f
146 typedef char Char;
151 #define CHAR(c) ((Char)((c)&M_ASCII))
152 #define META(c) ((Char)((c)|M_QUOTE))
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/GdbSerialLib/
GdbSerialLib.c 68 CHAR8 Char;
71 Char = MmioRead8(RBR);
73 return Char;
79 IN CHAR8 Char
86 MmioWrite8(THR, Char);
  /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...]

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 91011>>