OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buf_append
(Results
1 - 3
of
3
) sorted by null
/external/libxkbcommon/xkbcommon/src/xkbcomp/
scanner.c
89
if (chr(s, '\\'))
buf_append
(s, '\\');
90
else if (chr(s, 'n'))
buf_append
(s, '\n');
91
else if (chr(s, 't'))
buf_append
(s, '\t');
92
else if (chr(s, 'r'))
buf_append
(s, '\r');
93
else if (chr(s, 'b'))
buf_append
(s, '\b');
94
else if (chr(s, 'f'))
buf_append
(s, '\f');
95
else if (chr(s, 'v'))
buf_append
(s, '\v');
96
else if (chr(s, 'e'))
buf_append
(s, '\033');
97
else if (oct(s, &o))
buf_append
(s, (char) o);
103
buf_append
(s, next(s))
[
all
...]
/external/libxkbcommon/xkbcommon/src/compose/
parser.c
186
buf_append
(s, next(s));
191
if (!
buf_append
(s, '\0')) {
214
buf_append
(s, '\\');
217
buf_append
(s, '"');
221
buf_append
(s, (char) o);
226
buf_append
(s, (char) o);
233
buf_append
(s, next(s));
240
if (!
buf_append
(s, '\0')) {
257
buf_append
(s, next(s));
258
if (!
buf_append
(s, '\0'))
[
all
...]
/external/libxkbcommon/xkbcommon/src/
scanner-utils.h
154
buf_append
(struct scanner *s, char ch)
function
Completed in 210 milliseconds