/third_party/libevdev/tools/ |
H A D | libevdev-list-codes.c | 17 const char *typestr = libevdev_event_type_get_name(type); in list_event_codes() local 19 if (!typestr) in list_event_codes() 22 printf("- %s:\n", typestr); in list_event_codes()
|
/third_party/python/Objects/clinic/ |
H A D | floatobject.c.h | 248 "__getformat__($type, typestr, /)\n" 253 " typestr\n" 260 "C type named by typestr."); 266 float___getformat___impl(PyTypeObject *type, const char *typestr); 272 const char *typestr; in float___getformat__() local 279 typestr = PyUnicode_AsUTF8AndSize(arg, &typestr_length); in float___getformat__() 280 if (typestr == NULL) { in float___getformat__() 283 if (strlen(typestr) != (size_t)typestr_length) { in float___getformat__() 287 return_value = float___getformat___impl(type, typestr); in float___getformat__()
|
/third_party/elfutils/libasm/ |
H A D | asm_newscn.c | 67 const char *typestr = ""; in text_newscn() local 90 typestr = ",@progbits"; in text_newscn() 92 typestr = ",@nobits"; in text_newscn() 98 result->name, flagstr, typestr); in text_newscn()
|
/third_party/toybox/porting/liteos_a/toys/lsb/ |
H A D | umount.c | 95 char *typestr = 0; in umount_main() local 98 for (tal = TT.t; tal; tal = tal->next) comma_collate(&typestr, tal->arg); in umount_main() 100 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags); in umount_main() 102 free(typestr); in umount_main()
|
/third_party/toybox/toys/lsb/ |
H A D | umount.c | 126 char *typestr = 0; in umount_main() local 129 for (tal = TT.t; tal; tal = tal->next) comma_collate(&typestr, tal->arg); in umount_main() 131 if (mountlist_istype(ml, typestr)) do_umount(ml->dir, ml->device, flags); in umount_main() 133 free(typestr); in umount_main()
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | options.c | 146 int type_from_string(const char *typestr) in type_from_string() argument 151 if (!strcmp(typestr, "PickOne")) in type_from_string() 153 else if (!strcmp(typestr, "PickMany")) in type_from_string() 155 else if (!strcmp(typestr, "Boolean")) in type_from_string() 159 else if (strcasecmp(typestr, "enum") == 0) in type_from_string() 161 else if (strcasecmp(typestr, "pickmany") == 0) in type_from_string() 163 else if (strcasecmp(typestr, "bool") == 0) in type_from_string() 165 else if (strcasecmp(typestr, "int") == 0) in type_from_string() 167 else if (strcasecmp(typestr, "float") == 0) in type_from_string() 169 else if (strcasecmp(typestr, "strin in type_from_string() 1378 char typestr[33]; option_add_custom_param_from_string() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_export.cpp | 128 string typestr; in from_string_impl() local 132 is >> typestr >> pos >> value_str; in from_string_impl() 136 if (typestr == "PARAM") in from_string_impl() 138 else if (typestr == "POS") in from_string_impl() 140 else if (typestr == "PIXEL") in from_string_impl()
|
/third_party/node/deps/v8/tools/ |
H A D | gen-postmortem-metadata.py | 414 typestr = ''; 454 typestr += line; 489 entries = typestr.split(',');
|
/third_party/python/Lib/test/ |
H A D | test_dataclasses.py | 3475 for typestr in ('ClassVar[int]', 3493 with self.subTest(typestr=typestr): 3496 x: typestr 3506 for typestr in ('CV', 3517 with self.subTest(typestr=typestr): 3520 x: typestr 3528 for typestr in ('InitVar[int]', 3546 with self.subTest(typestr [all...] |
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 1910 char *typestr = bp; in parse_name() local 1923 opt_getprog(), typestr, desc); in parse_name() 1950 nid = OBJ_txt2nid(typestr); in parse_name() 1954 opt_getprog(), desc, typestr); in parse_name() 1964 opt_getprog(), desc, typestr); in parse_name() 1973 opt_getprog(), desc, typestr ,valstr); in parse_name()
|
/third_party/openssl/apps/lib/ |
H A D | apps.c | 1905 char *typestr = bp; in parse_name() local 1918 opt_getprog(), typestr, desc); in parse_name() 1945 nid = OBJ_txt2nid(typestr); in parse_name() 1949 opt_getprog(), desc, typestr); in parse_name() 1958 opt_getprog(), desc, typestr); in parse_name() 1967 opt_getprog(), desc, typestr ,valstr); in parse_name()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | show-parse.c | 50 static const char *typestr[] = { in do_debug_symbol() local 74 indent, indent_string, typestr[sym->type], in do_debug_symbol()
|
/third_party/python/Objects/ |
H A D | floatobject.c | 1738 typestr: str 1748 C type named by typestr. 1752 float___getformat___impl(PyTypeObject *type, const char *typestr) in float___getformat___impl() argument 1757 if (strcmp(typestr, "double") == 0) { in float___getformat___impl() 1760 else if (strcmp(typestr, "float") == 0) { in float___getformat___impl()
|