Home
last modified time | relevance | path

Searched refs:names (Results 301 - 325 of 2483) sorted by relevance

1...<<11121314151617181920>>...100

/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
H A DCldrDataProcessorTest.java65 ImmutableMap<String, String> names = ImmutableMap.of(); field in CldrDataProcessorTest.State
69 names = ImmutableMap.copyOf(map); in setNames()
123 assertThat(state.names) in testTwoLevelProcessing()
/third_party/python/Tools/scripts/
H A Dpathfix.py100 names = os.listdir(dirname)
104 names.sort()
106 for name in names:
/third_party/python/Lib/
H A Dfnmatch.py48 def filter(names, pat):
55 for name in names:
59 for name in names:
/third_party/python/Lib/distutils/
H A Ddir_util.py103 Both 'src' and 'dst' must be directory names. If 'src' is not a
110 the list of all files under 'src', with the names changed to be
126 names = os.listdir(src)
129 names = []
139 for n in names:
/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsExportForms.js46 module.exports.names = ns;
148 module.exports.names = ns;
196 export { ns as names };
/third_party/python/Objects/
H A Dcodeobject.c160 PyObject *names, PyObject *kinds) in _Py_set_localsplus_info()
163 PyTuple_SET_ITEM(names, offset, name); in _Py_set_localsplus_info()
168 get_localsplus_counts(PyObject *names, PyObject *kinds, in get_localsplus_counts() argument
176 Py_ssize_t nlocalsplus = PyTuple_GET_SIZE(names); in get_localsplus_counts()
210 PyObject *names = PyTuple_New(num); in get_localsplus_names() local
211 if (names == NULL) { in get_localsplus_names()
223 PyTuple_SET_ITEM(names, index, name); in get_localsplus_names()
227 return names; in get_localsplus_names()
239 con->names == NULL || !PyTuple_Check(con->names) || in _PyCode_Validate()
159 _Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind, PyObject *names, PyObject *kinds) _Py_set_localsplus_info() argument
498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_NewWithPosOnlyArgs() argument
622 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_New() argument
1522 code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable, PyObject *freevars, PyObject *cellvars) code_new_impl() argument
[all...]
/kernel/linux/linux-5.10/drivers/virtio/
H A Dvirtio_balloon.c505 const char *names[VIRTIO_BALLOON_VQ_MAX]; in init_vqs() local
509 * Inflateq and deflateq are used unconditionally. The names[] in init_vqs()
514 names[VIRTIO_BALLOON_VQ_INFLATE] = "inflate"; in init_vqs()
516 names[VIRTIO_BALLOON_VQ_DEFLATE] = "deflate"; in init_vqs()
518 names[VIRTIO_BALLOON_VQ_STATS] = NULL; in init_vqs()
520 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL; in init_vqs()
521 names[VIRTIO_BALLOON_VQ_REPORTING] = NULL; in init_vqs()
524 names[VIRTIO_BALLOON_VQ_STATS] = "stats"; in init_vqs()
529 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = "free_page_vq"; in init_vqs()
534 names[VIRTIO_BALLOON_VQ_REPORTIN in init_vqs()
[all...]
/kernel/linux/linux-6.6/drivers/virtio/
H A Dvirtio_balloon.c498 const char *names[VIRTIO_BALLOON_VQ_MAX]; in init_vqs() local
502 * Inflateq and deflateq are used unconditionally. The names[] in init_vqs()
507 names[VIRTIO_BALLOON_VQ_INFLATE] = "inflate"; in init_vqs()
509 names[VIRTIO_BALLOON_VQ_DEFLATE] = "deflate"; in init_vqs()
511 names[VIRTIO_BALLOON_VQ_STATS] = NULL; in init_vqs()
513 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL; in init_vqs()
514 names[VIRTIO_BALLOON_VQ_REPORTING] = NULL; in init_vqs()
517 names[VIRTIO_BALLOON_VQ_STATS] = "stats"; in init_vqs()
522 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = "free_page_vq"; in init_vqs()
527 names[VIRTIO_BALLOON_VQ_REPORTIN in init_vqs()
[all...]
/third_party/mesa3d/src/amd/registers/
H A Dregdb.py356 def merge_enums(self, names, newname, union=False):
358 Given a list of enum names, merge them all into one with a new name and
361 if newname not in names and newname in self.__enums:
365 [(name, self.__enums[name]) for name in names],
369 for name in names:
375 if getattr(field, 'enum_ref', None) in names:
416 def merge_register_types(self, names, newname, union=False):
418 Given a list of register type names, merge them all into one with a
421 if newname not in names and newname in self.__register_types:
425 [(name, self.__register_types[name]) for name in names],
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Denvironment.py810 names = self.loader.list_templates()
822 names = [name for name in names if filter_func(name)]
824 return names
886 def select_template(self, names, parent=None, globals=None):
892 If names is :class:`Undefined`, an :exc:`UndefinedError` is
893 raised instead. If no templates were found and names
897 If `names` contains a :class:`Template` object it is returned
902 if isinstance(names, Undefined):
903 names
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dtransformfeedback.c881 /* allocate new memory for varying names */ in transform_feedback_varyings()
890 /* Save the new names and the count */ in transform_feedback_varyings()
1100 _mesa_GenTransformFeedbacks(GLsizei n, GLuint *names) in _mesa_GenTransformFeedbacks() argument
1104 /* GenTransformFeedbacks should just reserve the object names that a in _mesa_GenTransformFeedbacks()
1106 * the sake of simplicity, we reserve the names and create the objects in _mesa_GenTransformFeedbacks()
1110 create_transform_feedbacks(ctx, n, names, false); in _mesa_GenTransformFeedbacks()
1120 _mesa_CreateTransformFeedbacks(GLsizei n, GLuint *names) in _mesa_CreateTransformFeedbacks() argument
1124 create_transform_feedbacks(ctx, n, names, true); in _mesa_CreateTransformFeedbacks()
1205 _mesa_DeleteTransformFeedbacks(GLsizei n, const GLuint *names) in _mesa_DeleteTransformFeedbacks() argument
1215 if (!names) in _mesa_DeleteTransformFeedbacks()
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Denvironment.py810 names = self.loader.list_templates()
822 names = [name for name in names if filter_func(name)]
824 return names
886 def select_template(self, names, parent=None, globals=None):
892 If names is :class:`Undefined`, an :exc:`UndefinedError` is
893 raised instead. If no templates were found and names
897 If `names` contains a :class:`Template` object it is returned
902 if isinstance(names, Undefined):
903 names
[all...]
/kernel/linux/linux-5.10/arch/mips/txx9/rbtx4939/
H A Dsetup.c382 static char names[4][8]; in rbtx4939_mtd_init() local
391 sprintf(names[i], "img%d", 4 - i); in rbtx4939_mtd_init()
392 parts[i].name = names[i]; in rbtx4939_mtd_init()
399 strcpy(names[0], "big"); in rbtx4939_mtd_init()
400 strcpy(names[1], "little"); in rbtx4939_mtd_init()
402 parts[i].name = names[i]; in rbtx4939_mtd_init()
/kernel/linux/linux-5.10/drivers/bcma/
H A Dscan.c115 const struct bcma_device_id_name *names; in bcma_device_name() local
118 /* search manufacturer specific names */ in bcma_device_name()
121 names = bcma_arm_device_names; in bcma_device_name()
125 names = bcma_bcm_device_names; in bcma_device_name()
129 names = bcma_mips_device_names; in bcma_device_name()
137 if (names[i].id == id->id) in bcma_device_name()
138 return names[i].name; in bcma_device_name()
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-lpc32xx.c81 * GPIO names
409 .names = gpio_p0_names,
425 .names = gpio_p1_names,
440 .names = gpio_p2_names,
456 .names = gpio_p3_names,
470 .names = gpi_p3_names,
484 .names = gpo_p3_names,
/kernel/linux/linux-5.10/drivers/infiniband/hw/qib/
H A Dqib_fs.c114 * driver stats field names, one line per stat, single string. Used by
161 char *names; in dev_names_read() local
165 avail = dd->f_read_cntrs(dd, *ppos, &names, NULL); in dev_names_read()
166 return simple_read_from_buffer(buf, count, ppos, names, avail); in dev_names_read()
179 /* read the per-port names (same for each port) */
183 char *names; in portnames_read() local
187 avail = dd->f_read_portcntrs(dd, *ppos, 0, &names, NULL); in portnames_read()
188 return simple_read_from_buffer(buf, count, ppos, names, avail); in portnames_read()
/kernel/linux/linux-5.10/sound/pci/oxygen/
H A Dxonar_dg_mixer.c50 static const char *const names[3] = { in output_select_info() local
56 return snd_ctl_enum_info(info, 1, 3, names); in output_select_info()
272 static const char *const names[4] = { in input_sel_info() local
276 return snd_ctl_enum_info(info, 1, 4, names); in input_sel_info()
322 static const char *const names[2] = { "Active", "Frozen" }; in hpf_info() local
324 return snd_ctl_enum_info(info, 1, 2, names); in hpf_info()
/kernel/linux/linux-6.6/drivers/bcma/
H A Dscan.c115 const struct bcma_device_id_name *names; in bcma_device_name() local
118 /* search manufacturer specific names */ in bcma_device_name()
121 names = bcma_arm_device_names; in bcma_device_name()
125 names = bcma_bcm_device_names; in bcma_device_name()
129 names = bcma_mips_device_names; in bcma_device_name()
137 if (names[i].id == id->id) in bcma_device_name()
138 return names[i].name; in bcma_device_name()
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-lpc32xx.c81 * GPIO names
409 .names = gpio_p0_names,
425 .names = gpio_p1_names,
440 .names = gpio_p2_names,
456 .names = gpio_p3_names,
470 .names = gpi_p3_names,
484 .names = gpo_p3_names,
/kernel/linux/linux-6.6/drivers/infiniband/hw/qib/
H A Dqib_fs.c112 * driver stats field names, one line per stat, single string. Used by
159 char *names; in dev_names_read() local
163 avail = dd->f_read_cntrs(dd, *ppos, &names, NULL); in dev_names_read()
164 return simple_read_from_buffer(buf, count, ppos, names, avail); in dev_names_read()
177 /* read the per-port names (same for each port) */
181 char *names; in portnames_read() local
185 avail = dd->f_read_portcntrs(dd, *ppos, 0, &names, NULL); in portnames_read()
186 return simple_read_from_buffer(buf, count, ppos, names, avail); in portnames_read()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dtest_bpftool_synctypes.py172 Return a set containing all member names, for example:
187 def make_enum_map(self, names, enum_prefix):
190 does. However, instead of just returning a set of the variant names,
200 for name in names:
215 Search for and parse a list of type names from RST documentation, for
223 Return a set containing all type names, for example:
236 Search for and parse a list of type names from a help message in
242 Return a set containing all type names, for example:
261 Return a set containing all item names, for example:
274 Search for and parse a list of type names fro
[all...]
/kernel/linux/linux-6.6/sound/pci/oxygen/
H A Dxonar_dg_mixer.c50 static const char *const names[3] = { in output_select_info() local
56 return snd_ctl_enum_info(info, 1, 3, names); in output_select_info()
272 static const char *const names[4] = { in input_sel_info() local
276 return snd_ctl_enum_info(info, 1, 4, names); in input_sel_info()
322 static const char *const names[2] = { "Active", "Frozen" }; in hpf_info() local
324 return snd_ctl_enum_info(info, 1, 2, names); in hpf_info()
/third_party/rust/crates/clap/clap_complete_fig/src/
H A Dfig.rs150 let mut names = vec![]; in gen_options() variables
153 names.extend( in gen_options()
161 names.extend( in gen_options()
168 if names.len() > 1 { in gen_options()
172 &names in gen_options()
185 escape_string(&names[0]), in gen_options()
/third_party/openssl/apps/
H A Dspeed.c275 static const char *names[ALGOR_NUM] = { variable
1819 if (!have_md(names[i])) in speed_main()
1823 if (!have_cipher(names[i])) in speed_main()
1868 print_message(names[D_MD2], c[D_MD2][testnum], lengths[testnum], in speed_main()
1881 print_message(names[D_MDC2], c[D_MDC2][testnum], lengths[testnum], in speed_main()
1894 print_message(names[D_MD4], c[D_MD4][testnum], lengths[testnum], in speed_main()
1907 print_message(names[D_MD5], c[D_MD5][testnum], lengths[testnum], in speed_main()
1920 print_message(names[D_SHA1], c[D_SHA1][testnum], lengths[testnum], in speed_main()
1933 print_message(names[D_SHA256], c[D_SHA256][testnum], in speed_main()
1946 print_message(names[D_SHA51 in speed_main()
[all...]
/third_party/selinux/libsepol/src/
H A Dmodule_to_cil.c952 static int set_to_names(struct policydb *pdb, int is_type, void *set, struct list *attr_list, char ***names, unsigned int *num_names) in set_to_names() argument
957 *names = NULL; in set_to_names()
976 *names = malloc(sizeof(char *)); in set_to_names()
977 if (!*names) { in set_to_names()
982 *names[0] = attr_name; in set_to_names()
989 static int ebitmap_to_names(struct ebitmap *map, char **vals_to_names, char ***names, unsigned int *num_names) in ebitmap_to_names() argument
1008 *names = NULL; in ebitmap_to_names()
1026 *names = name_arr; in ebitmap_to_names()
1033 static int process_roleset(struct policydb *pdb, struct role_set *rs, struct list *attr_list, char ***names, unsigned int *num_names) in process_roleset() argument
1037 *names in process_roleset()
1056 process_typeset(struct policydb *pdb, struct type_set *ts, struct list *attr_list, char ***names, unsigned int *num_names) process_typeset() argument
1079 names_destroy(char ***names, unsigned int *num_names) names_destroy() argument
1131 name_list_to_string(char **names, unsigned int num_names, char **string) name_list_to_string() argument
1723 char *names = NULL; constraint_expr_to_string() local
[all...]

Completed in 26 milliseconds

1...<<11121314151617181920>>...100