Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 58) sorted by relevance

123

/ndk/sources/host-tools/sed-4.2.1/lib/
Dc-ctype.h147 #define c_isascii(c) \ argument
156 #define c_isalnum(c) \ argument
163 #define c_isalnum(c) \ argument
175 #define c_isalpha(c) \ argument
181 #define c_isalpha(c) \ argument
189 #define c_isblank(c) \ argument
196 #define c_iscntrl(c) \ argument
204 #define c_isdigit(c) \ argument
212 #define c_islower(c) \ argument
220 #define c_isgraph(c) \ argument
[all …]
Dc-ctype.c30 c_isascii (int c) in c_isascii()
36 c_isalnum (int c) in c_isalnum()
71 c_isalpha (int c) in c_isalpha()
100 c_isblank (int c) in c_isblank()
106 c_iscntrl (int c) in c_iscntrl()
140 c_isdigit (int c) in c_isdigit()
157 c_islower (int c) in c_islower()
177 c_isgraph (int c) in c_isgraph()
211 c_isprint (int c) in c_isprint()
245 c_ispunct (int c) in c_ispunct()
[all …]
Dmbrtowc.c133 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
191 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
198 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
216 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
227 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
234 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
245 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
252 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
278 unsigned char c = (unsigned char) p[0]; in mbrtowc() local
Dbtowc.c26 btowc (int c) in btowc()
Dstdio-write.c113 putchar (int c) in putchar()
119 fputc (int c, FILE *stream) in fputc()
Dmemchr.c72 unsigned reg_char c; in __memchr() local
Ddirname.h36 # define _IS_DRIVE_LETTER(c) (((unsigned int) (c) | ('a' - 'A')) - 'a' \ argument
Dstring.in.h111 # define memrchr(a,b,c) \ argument
166 # define strchr(s,c) \ argument
291 # define strrchr(s,c) \ argument
Dstrverscmp.c48 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) argument
/ndk/sources/host-tools/sed-4.2.1/
Dbasicdefs.h141 # define ISASCII(c) 1 argument
143 # define ISASCII(c) isascii(c) argument
147 # define ISBLANK(c) (ISASCII (c) && isblank (c)) argument
149 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') argument
153 #define ISPRINT(c) (ISASCII (c) && isprint (c)) argument
154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c)) argument
155 #define ISALNUM(c) (ISASCII (c) && isalnum (c)) argument
156 #define ISALPHA(c) (ISASCII (c) && isalpha (c)) argument
157 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c)) argument
158 #define ISLOWER(c) (ISASCII (c) && islower (c)) argument
[all …]
/ndk/sources/cxx-stl/stlport/src/
Dstdio_streambuf.cpp159 int c = fgetc(_M_file); in underflow() local
173 int c = fgetc(_M_file); in uflow() local
180 stdio_istreambuf::int_type stdio_istreambuf::pbackfail(int_type c) { in pbackfail()
203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { in overflow()
Dnum_get.cpp78 bool _STLP_CALL __get_fdigit(wchar_t& c, const wchar_t* digits) { in __get_fdigit()
88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep, in __get_fdigit_or_sep()
Dlocale.cpp193 locale::category c) { in _Stl_loc_combine_names_aux()
210 locale::category c) { in _Stl_loc_combine_names()
224 locale::category c) { in _Stl_loc_combine_names()
246 locale::locale(const locale& L, const char* name, locale::category c) in locale() function in locale
295 locale::locale(const locale& L1, const locale& L2, category c) in locale()
Dctype.cpp403 wchar_t c; in do_is() local
432 wchar_t c = *low; in do_toupper() local
447 wchar_t c = *low; in do_tolower() local
466 char ctype<wchar_t>::do_narrow(wchar_t c, char dfault) const in do_narrow()
473 wchar_t c = *low++; in do_narrow() local
/ndk/sources/host-tools/sed-4.2.1/sed/
Dfmt.c104 #define isopen(c) (strchr ("([`'\"", (c)) != NULL) argument
105 #define isclose(c) (strchr (")]'\"", (c)) != NULL) argument
106 #define isperiod(c) (strchr (".?!", (c)) != NULL) argument
237 register int c; in get_paragraph() local
277 copy_rest (register int c) in copy_rest()
293 same_para (register int c) in same_para()
307 get_line (register int c) in get_line()
358 get_space (register int c) in get_space()
Dmbcs.c35 char c = ch; local
/ndk/sources/host-tools/ndk-stack/regex/
Dregcomp.c117 #define SEE(c) (MORE() && PEEK() == (c)) argument
119 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0) argument
127 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) argument
128 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) argument
129 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) argument
251 char c; in p_ere() local
294 char c; in p_ere_exp() local
491 int c; in p_simp_re() local
706 char c; in p_b_term() local
773 char c; in p_b_cclass() local
[all …]
Dutils.h54 #define memmove(d, s, c) bcopy(s, d, c) argument
Dregex2.h113 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c)) argument
114 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c)) argument
115 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask) argument
157 #define ISWORD(c) (isalnum(c) || (c) == '_') argument
/ndk/tests/device/test-gnustl-full/unit/
Dsstream_test.cpp110 char c; in input() local
161 char c; in io() local
304 char c; in buf() local
322 char c; in rdbuf() local
Dfull_streambuf.h26 int_type overflow(int_type c) { in overflow()
Dtransform_test.cpp34 static char shift( char c ) { in shift()
/ndk/tests/device/test-stlport/unit/
Dsstream_test.cpp110 char c; in input() local
161 char c; in io() local
304 char c; in buf() local
322 char c; in rdbuf() local
Dfull_streambuf.h26 int_type overflow(int_type c) { in overflow()
Dtransform_test.cpp34 static char shift( char c ) { in shift()

123