Home
last modified time | relevance | path

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

12345678910>>...279

/third_party/typescript/tests/baselines/reference/
DconstDeclarations-scopes.js3 const c = "string"; constant
9 const c = 0; constant
13 const c = 0; constant
18 const c = 0; constant
23 const c = 0; constant
29 const c = 0; constant
34 const c = 0; constant
39 const c = 0; constant
55 const c = 0; constant
59 const c = 0; constant
[all …]
/third_party/typescript/tests/cases/compiler/
DconstDeclarations-scopes.ts4 const c = "string"; constant
10 const c = 0; constant
14 const c = 0; constant
19 const c = 0; constant
24 const c = 0; constant
30 const c = 0; constant
35 const c = 0; constant
40 const c = 0; constant
45 label: const c = 0; constant
50 label2: label3: label4: const c = 0; constant
[all …]
/third_party/node/test/fixtures/wpt/webmessaging/broadcastchannel/
Dinterface.any.js5 let c = new BroadcastChannel(null); variable
10 let c = new BroadcastChannel(undefined); variable
15 let c = new BroadcastChannel('fooBar'); variable
20 let c = new BroadcastChannel(123); variable
25 let c = new BroadcastChannel(''); variable
30 let c = new BroadcastChannel(''); variable
35 let c = new BroadcastChannel(''); variable
40 let c = new BroadcastChannel(''); variable
46 let c = new BroadcastChannel(''); variable
52 let c = new BroadcastChannel(''); variable
[all …]
/third_party/node/deps/v8/src/strings/
Dchar-predicates-inl.h18 inline constexpr int AsciiAlphaToLower(base::uc32 c) { return c | 0x20; } in AsciiAlphaToLower()
20 inline constexpr bool IsCarriageReturn(base::uc32 c) { return c == 0x000D; } in IsCarriageReturn()
22 inline constexpr bool IsLineFeed(base::uc32 c) { return c == 0x000A; } in IsLineFeed()
24 inline constexpr bool IsAsciiIdentifier(base::uc32 c) { in IsAsciiIdentifier()
28 inline constexpr bool IsAlphaNumeric(base::uc32 c) { in IsAlphaNumeric()
32 inline constexpr bool IsDecimalDigit(base::uc32 c) { in IsDecimalDigit()
37 inline constexpr bool IsHexDigit(base::uc32 c) { in IsHexDigit()
42 inline constexpr bool IsOctalDigit(base::uc32 c) { in IsOctalDigit()
47 inline constexpr bool IsNonOctalDecimalDigit(base::uc32 c) { in IsNonOctalDecimalDigit()
51 inline constexpr bool IsBinaryDigit(base::uc32 c) { in IsBinaryDigit()
[all …]
/third_party/openssl/ohos_lite/include/crypto/
Dctype.h53 # define ossl_toascii(c) (c) argument
54 # define ossl_fromascii(c) (c) argument
62 # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum)) argument
63 # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha)) argument
65 # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii)) argument
67 # define ossl_isascii(c) (((c) & ~127) == 0) argument
69 # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank)) argument
70 # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl)) argument
71 # define ossl_isdigit(c) (ossl_ctype_check((c), CTYPE_MASK_digit)) argument
72 # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph)) argument
[all …]
/third_party/openssl/include/crypto/
Dctype.h56 # define ossl_toascii(c) (c) argument
57 # define ossl_fromascii(c) (c) argument
70 # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum)) argument
71 # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha)) argument
73 # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii)) argument
75 # define ossl_isascii(c) (((c) & ~127) == 0) argument
77 # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank)) argument
78 # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl)) argument
79 # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph)) argument
80 # define ossl_isprint(c) (ossl_ctype_check((c), CTYPE_MASK_print)) argument
[all …]
/third_party/node/deps/openssl/openssl/include/crypto/
Dctype.h56 # define ossl_toascii(c) (c) argument
57 # define ossl_fromascii(c) (c) argument
70 # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum)) argument
71 # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha)) argument
73 # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii)) argument
75 # define ossl_isascii(c) (((c) & ~127) == 0) argument
77 # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank)) argument
78 # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl)) argument
79 # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph)) argument
80 # define ossl_isprint(c) (ossl_ctype_check((c), CTYPE_MASK_print)) argument
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Duchar.cpp43 #define GET_PROPS(c, result) ((result)=UTRIE2_GET16(&propsTrie, c)) argument
49 u_charType(UChar32 c) { in u_charType()
90 u_islower(UChar32 c) { in u_islower()
98 u_isupper(UChar32 c) { in u_isupper()
106 u_istitle(UChar32 c) { in u_istitle()
114 u_isdigit(UChar32 c) { in u_isdigit()
121 u_isxdigit(UChar32 c) { in u_isxdigit()
138 u_isalpha(UChar32 c) { in u_isalpha()
145 u_isUAlphabetic(UChar32 c) { in u_isUAlphabetic()
151 u_isalnum(UChar32 c) { in u_isalnum()
[all …]
/third_party/icu/icu4c/source/common/
Duchar.cpp43 #define GET_PROPS(c, result) ((result)=UTRIE2_GET16(&propsTrie, c)) argument
49 u_charType(UChar32 c) { in u_charType()
90 u_islower(UChar32 c) { in u_islower()
98 u_isupper(UChar32 c) { in u_isupper()
106 u_istitle(UChar32 c) { in u_istitle()
114 u_isdigit(UChar32 c) { in u_isdigit()
121 u_isxdigit(UChar32 c) { in u_isxdigit()
138 u_isalpha(UChar32 c) { in u_isalpha()
145 u_isUAlphabetic(UChar32 c) { in u_isUAlphabetic()
151 u_isalnum(UChar32 c) { in u_isalnum()
[all …]
/third_party/python/Lib/curses/
Dascii.py48 def _ctoi(c): argument
54 def isalnum(c): return isalpha(c) or isdigit(c) argument
55 def isalpha(c): return isupper(c) or islower(c) argument
56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ? argument
57 def isblank(c): return _ctoi(c) in (9, 32) argument
58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127 argument
59 def isdigit(c): return 48 <= _ctoi(c) <= 57 argument
60 def isgraph(c): return 33 <= _ctoi(c) <= 126 argument
61 def islower(c): return 97 <= _ctoi(c) <= 122 argument
62 def isprint(c): return 32 <= _ctoi(c) <= 126 argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dascii.h80 inline bool ascii_isalpha(unsigned char c) { in ascii_isalpha()
87 inline bool ascii_isalnum(unsigned char c) { in ascii_isalnum()
95 inline bool ascii_isspace(unsigned char c) { in ascii_isspace()
102 inline bool ascii_ispunct(unsigned char c) { in ascii_ispunct()
109 inline bool ascii_isblank(unsigned char c) { in ascii_isblank()
116 inline bool ascii_iscntrl(unsigned char c) { in ascii_iscntrl()
124 inline bool ascii_isxdigit(unsigned char c) { in ascii_isxdigit()
132 inline bool ascii_isdigit(unsigned char c) { return c >= '0' && c <= '9'; } in ascii_isdigit()
137 inline bool ascii_isprint(unsigned char c) { return c >= 32 && c < 127; } in ascii_isprint()
142 inline bool ascii_isgraph(unsigned char c) { return c > 32 && c < 127; } in ascii_isgraph()
[all …]
/third_party/openssl/crypto/
Dctype.c227 int ossl_toascii(int c) in ossl_toascii()
242 int ossl_fromascii(int c) in ossl_fromascii()
252 int ossl_ctype_check(int c, unsigned int mask) in ossl_ctype_check()
265 #define ASCII_IS_DIGIT(c) (c >= 0x30 && c <= 0x39) argument
266 #define ASCII_IS_UPPER(c) (c >= 0x41 && c <= 0x5A) argument
267 #define ASCII_IS_LOWER(c) (c >= 0x61 && c <= 0x7A) argument
269 int ossl_isdigit(int c) in ossl_isdigit()
276 int ossl_isupper(int c) in ossl_isupper()
283 int ossl_islower(int c) in ossl_islower()
296 int ossl_tolower(int c) in ossl_tolower()
[all …]
/third_party/node/deps/openssl/openssl/crypto/
Dctype.c227 int ossl_toascii(int c) in ossl_toascii()
242 int ossl_fromascii(int c) in ossl_fromascii()
252 int ossl_ctype_check(int c, unsigned int mask) in ossl_ctype_check()
265 #define ASCII_IS_DIGIT(c) (c >= 0x30 && c <= 0x39) argument
266 #define ASCII_IS_UPPER(c) (c >= 0x41 && c <= 0x5A) argument
267 #define ASCII_IS_LOWER(c) (c >= 0x61 && c <= 0x7A) argument
269 int ossl_isdigit(int c) in ossl_isdigit()
276 int ossl_isupper(int c) in ossl_isupper()
283 int ossl_islower(int c) in ossl_islower()
296 int ossl_tolower(int c) in ossl_tolower()
[all …]
/third_party/gn/src/base/third_party/icu/
Dicu_utf.h71 #define CBU_IS_UNICODE_NONCHAR(c) \ argument
92 #define CBU_IS_UNICODE_CHAR(c) \ argument
102 #define CBU_IS_SURROGATE(c) (((c)&0xfffff800) == 0xd800) argument
111 #define CBU_IS_SURROGATE_LEAD(c) (((c)&0x400) == 0) argument
181 #define CBU8_IS_SINGLE(c) (((c)&0x80) == 0) argument
189 #define CBU8_IS_LEAD(c) ((uint8_t)((c)-0xc2) <= 0x32) argument
197 #define CBU8_IS_TRAIL(c) ((int8_t)(c) < -0x40) argument
206 #define CBU8_LENGTH(c) \ argument
245 #define CBU8_NEXT(s, i, length, c) \ argument
283 #define CBU8_APPEND_UNSAFE(s, i, c) \ argument
[all …]
/third_party/node/deps/icu-small/source/common/unicode/
Dutf.h130 #define U_IS_UNICODE_NONCHAR(c) \ argument
151 #define U_IS_UNICODE_CHAR(c) \ argument
161 #define U_IS_BMP(c) ((uint32_t)(c)<=0xffff) argument
169 #define U_IS_SUPPLEMENTARY(c) ((uint32_t)((c)-0x10000)<=0xfffff) argument
177 #define U_IS_LEAD(c) (((c)&0xfffffc00)==0xd800) argument
185 #define U_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00) argument
193 #define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800) argument
202 #define U_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) argument
211 #define U_IS_SURROGATE_TRAIL(c) (((c)&0x400)!=0) argument
/third_party/icu/icu4c/source/common/unicode/
Dutf.h130 #define U_IS_UNICODE_NONCHAR(c) \ argument
151 #define U_IS_UNICODE_CHAR(c) \ argument
161 #define U_IS_BMP(c) ((uint32_t)(c)<=0xffff) argument
169 #define U_IS_SUPPLEMENTARY(c) ((uint32_t)((c)-0x10000)<=0xfffff) argument
177 #define U_IS_LEAD(c) (((c)&0xfffffc00)==0xd800) argument
185 #define U_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00) argument
193 #define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800) argument
202 #define U_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) argument
211 #define U_IS_SURROGATE_TRAIL(c) (((c)&0x400)!=0) argument
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dutf.h130 #define U_IS_UNICODE_NONCHAR(c) \ argument
151 #define U_IS_UNICODE_CHAR(c) \ argument
161 #define U_IS_BMP(c) ((uint32_t)(c)<=0xffff) argument
169 #define U_IS_SUPPLEMENTARY(c) ((uint32_t)((c)-0x10000)<=0xfffff) argument
177 #define U_IS_LEAD(c) (((c)&0xfffffc00)==0xd800) argument
185 #define U_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00) argument
193 #define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800) argument
202 #define U_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) argument
211 #define U_IS_SURROGATE_TRAIL(c) (((c)&0x400)!=0) argument
/third_party/node/deps/icu-small/source/common/
Duchar.cpp43 #define GET_PROPS(c, result) ((result)=UTRIE2_GET16(&propsTrie, c)) argument
49 u_charType(UChar32 c) { in u_charType()
90 u_islower(UChar32 c) { in u_islower()
98 u_isupper(UChar32 c) { in u_isupper()
106 u_istitle(UChar32 c) { in u_istitle()
114 u_isdigit(UChar32 c) { in u_isdigit()
121 u_isxdigit(UChar32 c) { in u_isxdigit()
138 u_isalpha(UChar32 c) { in u_isalpha()
145 u_isUAlphabetic(UChar32 c) { in u_isUAlphabetic()
151 u_isalnum(UChar32 c) { in u_isalnum()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dcivil_time.cc45 bool ParseYearAnd(string_view fmt, string_view s, CivilT* c) { in ParseYearAnd()
72 bool ParseAs(string_view s, CivilT2* c) { in ParseAs()
82 bool ParseLenient(string_view s, CivilT* c) { in ParseLenient()
98 std::string FormatCivilTime(CivilSecond c) { in FormatCivilTime()
101 std::string FormatCivilTime(CivilMinute c) { in FormatCivilTime()
104 std::string FormatCivilTime(CivilHour c) { in FormatCivilTime()
107 std::string FormatCivilTime(CivilDay c) { return FormatYearAnd("-%m-%d", c); } in FormatCivilTime()
108 std::string FormatCivilTime(CivilMonth c) { return FormatYearAnd("-%m", c); } in FormatCivilTime()
109 std::string FormatCivilTime(CivilYear c) { return FormatYearAnd("", c); } in FormatCivilTime()
111 bool ParseCivilTime(string_view s, CivilSecond* c) { in ParseCivilTime()
[all …]
/third_party/pulseaudio/src/daemon/
Ddaemon-conf.c152 pa_daemon_conf *c; in pa_daemon_conf_new() local
176 void pa_daemon_conf_free(pa_daemon_conf *c) { in pa_daemon_conf_free()
190 int pa_daemon_conf_set_log_target(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_log_target()
208 int pa_daemon_conf_set_log_level(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_log_level()
234 int pa_daemon_conf_set_resample_method(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_resample_method()
246 int pa_daemon_conf_set_local_server_type(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_local_server_type()
263 pa_daemon_conf *c; in parse_log_target() local
278 pa_daemon_conf *c; in parse_log_level() local
293 pa_daemon_conf *c; in parse_resample_method() local
334 pa_daemon_conf *c; in parse_sample_format() local
[all …]
Dohos_daemon-conf.c152 pa_daemon_conf *c; in pa_daemon_conf_new() local
176 void pa_daemon_conf_free(pa_daemon_conf *c) { in pa_daemon_conf_free()
190 int pa_daemon_conf_set_log_target(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_log_target()
208 int pa_daemon_conf_set_log_level(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_log_level()
234 int pa_daemon_conf_set_resample_method(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_resample_method()
246 int pa_daemon_conf_set_local_server_type(pa_daemon_conf *c, const char *string) { in pa_daemon_conf_set_local_server_type()
263 pa_daemon_conf *c; in parse_log_target() local
278 pa_daemon_conf *c; in parse_log_level() local
293 pa_daemon_conf *c; in parse_resample_method() local
334 pa_daemon_conf *c; in parse_sample_format() local
[all …]
/third_party/node/deps/acorn/acorn-walk/dist/
Dwalk.js27 ; }(function c(node, st, override) { function
40 ; }(function c(node, st, override) { function
57 ;(function c(node, st, override) { function
77 ;(function c(node, st, override) { function
92 ;(function c(node, st, override) { function
112 (function c(node, st, override) { function
134 (function c(node, st, override) { function
151 (function c(node, st, override) { function
168 ;(function c(node, st, override) { function
186 function skipThrough(node, st, c) { c(node, st); } argument
[all …]
Dwalk.mjs21 ; }(function c(node, st, override) { function
34 ; }(function c(node, st, override) { function
51 ;(function c(node, st, override) { function
71 ;(function c(node, st, override) { function
86 ;(function c(node, st, override) { function
106 (function c(node, st, override) { function
128 (function c(node, st, override) { function
145 (function c(node, st, override) { function
162 ;(function c(node, st, override) { function
180 function skipThrough(node, st, c) { c(node, st); } argument
[all …]
/third_party/pulseaudio/src/pulse/
Dcontext.c108 static void reset_callbacks(pa_context *c) { in reset_callbacks()
131 pa_context *c; in pa_context_new_with_proplist() local
214 static void context_unlink(pa_context *c) { in context_unlink()
254 static void context_free(pa_context *c) { in context_free()
294 pa_context* pa_context_ref(pa_context *c) { in pa_context_ref()
302 void pa_context_unref(pa_context *c) { in pa_context_unref()
310 void pa_context_set_state(pa_context *c, pa_context_state_t st) { in pa_context_set_state()
330 int pa_context_set_error(const pa_context *c, int error) { in pa_context_set_error()
340 void pa_context_fail(pa_context *c, int error) { in pa_context_fail()
349 pa_context *c = userdata; in pstream_die_callback() local
[all …]
/third_party/python/Include/cpython/
Dpyctype.h21 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER) argument
22 #define Py_ISUPPER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_UPPER) argument
23 #define Py_ISALPHA(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA) argument
24 #define Py_ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT) argument
25 #define Py_ISXDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_XDIGIT) argument
26 #define Py_ISALNUM(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALNUM) argument
27 #define Py_ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE) argument
32 #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) argument
33 #define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) argument

12345678910>>...279