| /third_party/typescript/tests/baselines/reference/ |
| D | constDeclarations-scopes.js | 3 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 …]
|
| D | classExpressionES63.js | 2 let C = class extends class extends class { a = 1 } { b = 2 } { c = 3 }; field in C 3 let c = new C(); field in C 4 c.a; field in C 5 c.b; field in C 6 c.c; field in C 25 let c = new C(); variable
|
| D | classExpression3.js | 2 let C = class extends class extends class { a = 1 } { b = 2 } { c = 3 }; field in C 3 let c = new C(); field in C 4 c.a; field in C 5 c.b; field in C 6 c.c; field in C 47 var c = new C(); field in C 48 c.a; field in C 49 c.b; field in C 50 c.c; field in C
|
| D | internalAliasInitializedModule.js | 11 export var x: b.c = new b.c(); variable in export 19 var c = /** @class */ (function () { function 20 function c() { function 27 var c; variable 28 (function (c) { argument 37 class c { class
|
| /third_party/typescript/tests/cases/compiler/ |
| D | constDeclarations-scopes.ts | 4 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 …]
|
| D | commentsModules.ts | 15 export class c { class 46 export class c { class 53 export class c { class 61 export class c { class 71 export class c { class 79 export class c { class 88 export class c { class
|
| /third_party/openssl/include/crypto/ |
| D | ctype.h | 56 # 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/icu/icu4c/source/common/unicode/ |
| D | utf.h | 130 #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/ |
| D | utf.h | 130 #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/abseil-cpp/absl/strings/ |
| D | ascii.h | 80 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/ |
| D | ctype.c | 227 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/python/Lib/curses/ |
| D | ascii.py | 48 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/icu/source/common/ |
| D | uchar.cpp | 43 #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/ |
| D | uchar.cpp | 43 #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/ |
| D | civil_time.cc | 45 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/typescript/tests/cases/conformance/expressions/typeGuards/ |
| D | typeGuardOfFormTypeOfPrimitiveSubtype.ts | 4 let c: number = a; variable 7 let c: string = a; variable 10 let c: boolean = a; variable 14 let c: number = b; variable 17 let c: string = b; variable 20 let c: boolean = b; variable
|
| /third_party/pulseaudio/src/daemon/ |
| D | ohos_daemon-conf.c | 152 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 …]
|
| D | daemon-conf.c | 152 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/python/Include/cpython/ |
| D | pyctype.h | 21 #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
|
| /third_party/gn/src/base/third_party/icu/ |
| D | icu_utf.h | 90 #define CBU_IS_UNICODE_NONCHAR(c) \ argument 111 #define CBU_IS_UNICODE_CHAR(c) \ argument 121 #define CBU_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800) argument 130 #define CBU_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) argument 174 #define CBU8_IS_SINGLE(c) (((c)&0x80)==0) argument 182 #define CBU8_IS_LEAD(c) ((uint8_t)((c)-0xc2)<=0x32) argument 190 #define CBU8_IS_TRAIL(c) ((int8_t)(c)<-0x40) argument 199 #define CBU8_LENGTH(c) \ argument 237 #define CBU8_NEXT(s, i, length, c) CBU8_INTERNAL_NEXT_OR_SUB(s, i, length, c, CBU_SENTINEL) argument 240 #define CBU8_INTERNAL_NEXT_OR_SUB(s, i, length, c, sub) CBUPRV_BLOCK_MACRO_BEGIN { \ argument [all …]
|
| /third_party/mesa3d/src/intel/compiler/ |
| D | brw_vec4_dead_code_eliminate.cpp | 61 for (int c = 0; c < 4; c++) { in dead_code_eliminate() local 67 for (unsigned c = 0; c < 4; c++) in dead_code_eliminate() local 90 for (int c = 0; c < 4; c++) { in dead_code_eliminate() local 111 for (int c = 0; c < 4; c++) { in dead_code_eliminate() local 131 for (unsigned c = 0; c < 4; c++) in dead_code_eliminate() local 143 for (int c = 0; c < 4; c++) { in dead_code_eliminate() local 153 for (unsigned c = 0; c < 4; c++) in dead_code_eliminate() local 165 for (int c = 0; c < 4; c++) { in dead_code_eliminate() local 173 for (unsigned c = 0; c < 4; c++) { in dead_code_eliminate() local
|
| /third_party/pulseaudio/src/pulse/ |
| D | context.c | 111 static void reset_callbacks(pa_context *c) { in reset_callbacks() 134 pa_context *c; in pa_context_new_with_proplist() local 217 static void context_unlink(pa_context *c) { in context_unlink() 257 static void context_free(pa_context *c) { in context_free() 297 pa_context* pa_context_ref(pa_context *c) { in pa_context_ref() 305 void pa_context_unref(pa_context *c) { in pa_context_unref() 313 void pa_context_set_state(pa_context *c, pa_context_state_t st) { in pa_context_set_state() 333 int pa_context_set_error(const pa_context *c, int error) { in pa_context_set_error() 343 void pa_context_fail(pa_context *c, int error) { in pa_context_fail() 352 pa_context *c = userdata; in pstream_die_callback() local [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
| D | Color.hpp | 84 inline Color<byte>::Color(const Color<byte> &c) in Color() 93 inline Color<byte>::Color(const Color<short> &c) in Color() 102 inline Color<byte>::Color(const Color<float> &c) in Color() 111 inline Color<short>::Color(const Color<short> &c) in Color() 120 inline Color<short>::Color(const Color<byte> &c) in Color() 129 inline Color<float>::Color(const Color<float> &c) in Color() 138 inline Color<short>::Color(const Color<float> &c) in Color() 147 inline Color<float>::Color(const Color<byte> &c) in Color() 156 inline Color<float>::Color(const Color<short> &c) in Color() 165 inline Color<float>::Color(unsigned short c) in Color() [all …]
|
| /third_party/gn/src/base/strings/ |
| D | string_util.h | 57 inline char ToLowerASCII(char c) { in ToLowerASCII() 60 inline char16_t ToLowerASCII(char16_t c) { in ToLowerASCII() 66 inline char ToUpperASCII(char c) { in ToUpperASCII() 69 inline char16_t ToUpperASCII(char16_t c) { in ToUpperASCII() 268 inline bool IsAsciiWhitespace(Char c) { in IsAsciiWhitespace() 272 inline bool IsAsciiAlpha(Char c) { in IsAsciiAlpha() 276 inline bool IsAsciiUpper(Char c) { in IsAsciiUpper() 280 inline bool IsAsciiLower(Char c) { in IsAsciiLower() 284 inline bool IsAsciiDigit(Char c) { in IsAsciiDigit() 289 inline bool IsHexDigit(Char c) { in IsHexDigit()
|
| /third_party/python/Modules/cjkcodecs/ |
| D | alg_jisx0201.h | 1 #define JISX0201_R_ENCODE(c, assi) \ argument 12 #define JISX0201_K_ENCODE(c, assi) \ argument 17 #define JISX0201_ENCODE(c, assi) \ argument 21 #define JISX0201_R_DECODE_CHAR(c, assi) \ argument 38 #define JISX0201_R_DECODE(c, writer) \ argument 55 #define JISX0201_K_DECODE(c, writer) \ argument 59 #define JISX0201_K_DECODE_CHAR(c, assi) \ argument 63 #define JISX0201_DECODE(c, writer) \ argument
|