Home
last modified time | relevance | path

Searched refs:item (Results 1276 - 1300 of 1539) sorted by relevance

1...<<51525354555657585960>>...62

/third_party/python/Python/
H A Dcompile.c670 PyObject *item = PyLong_FromSsize_t(i); in dictbytype() local
671 if (item == NULL) { in dictbytype()
677 if (PyDict_SetItem(dest, k, item) < 0) { in dictbytype()
679 Py_DECREF(item); in dictbytype()
683 Py_DECREF(item); in dictbytype()
1350 PyObject *item = PyTuple_GET_ITEM(o, i); in merge_consts_recursive() local
1351 PyObject *u = merge_consts_recursive(c, item); in merge_consts_recursive()
1365 if (v != item) { in merge_consts_recursive()
1368 Py_DECREF(item); in merge_consts_recursive()
1375 // *key* is tuple. And its first item i in merge_consts_recursive()
1391 PyObject *item; merge_consts_recursive() local
5649 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos); compiler_async_with() local
5755 withitem_ty item = asdl_seq_GET(s->v.With.items, pos); compiler_with() local
[all...]
H A Dimport.c893 /* Return a finder object for a sys.path/pkg.__path__ item 'p',
896 that can handle the path item. Return None if no hook could;
898 a finder for this path item. Cache the result in
2064 PyObject *item = PyUnicode_FromString(suffix); in _imp_extension_suffixes_impl() local
2065 if (item == NULL) { in _imp_extension_suffixes_impl()
2069 if (PyList_Append(list, item) < 0) { in _imp_extension_suffixes_impl()
2071 Py_DECREF(item); in _imp_extension_suffixes_impl()
2074 Py_DECREF(item); in _imp_extension_suffixes_impl()
/third_party/alsa-lib/src/control/
H A Dcontrol.c2850 * \brief Select item in a #SND_CTL_ELEM_TYPE_ENUMERATED CTL element id/info
2852 * \param val item number
2857 obj->value.enumerated.item = val; in snd_ctl_elem_info_set_item()
2861 * \brief Get name for selected item in a #SND_CTL_ELEM_TYPE_ENUMERATED CTL element id/info
2863 * \return name of chosen item
3495 * SNDRV_CTL_ELEM_TYPE_ENUMERATED. It returns the index of the active item. See
3500 * \return The index of the active item.
3505 assert(idx < ARRAY_SIZE(obj->value.enumerated.item)); in snd_ctl_elem_value_get_enumerated()
3506 return obj->value.enumerated.item[idx]; in snd_ctl_elem_value_get_enumerated()
3585 * SNDRV_CTL_ELEM_TYPE_ENUMERATED. It activates the specified item
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dindex.c581 int rc, item = 0; in ntfs_ie_lookup() local
641 icx->parent_pos[icx->pindex] = item; in ntfs_ie_lookup()
645 item++; in ntfs_ie_lookup()
668 ntfs_log_trace("Parent entry number %d\n", item); in ntfs_ie_lookup()
669 icx->parent_pos[icx->pindex] = item; in ntfs_ie_lookup()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfswipe.c1582 struct ntfs_list_head *item = NULL, *tmp = NULL; in free_file() local
1589 ntfs_list_for_each_safe(item, tmp, &(file->name)) { in free_file()
1592 f = ntfs_list_entry(item, struct filename, list); in free_file()
1601 ntfs_list_for_each_safe(item, tmp, &(file->data)) { in free_file()
1604 d = ntfs_list_entry(item, struct data, list); in free_file()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_cs.c892 struct lp_cs_variant_list_item *item; in llvmpipe_update_cs() local
896 item = list_last_entry(&lp->cs_variants_list.list, in llvmpipe_update_cs()
898 assert(item); in llvmpipe_update_cs()
899 assert(item->base); in llvmpipe_update_cs()
900 llvmpipe_remove_cs_shader_variant(lp, item->base); in llvmpipe_update_cs()
/third_party/rust/crates/bindgen/bindgen/
H A Dlib.rs93 use crate::ir::item::Item;
373 (&self.options.blocklisted_items, "--blocklist-item"), in command_line_flags()
389 for item in set.get_items() { in command_line_flags()
391 output_vector.push(item.to_owned()); in command_line_flags()
396 for item in set.get_items() { in command_line_flags()
398 output_vector.push(format!("{}={}", item, abi)); in command_line_flags()
831 /// referenced from an explicitly allowlisted item. One way to provide the
899 /// Hide the given item from the generated bindings, regardless of
1403 /// This is tricky, because in C++ is technically legal to override an item
1770 /// Generate bindings as `pub` only if the bound item i
[all...]
/third_party/python/Lib/
H A Denum.py25 Protects item from becoming an Enum member during class creation.
32 Forces item to become an Enum member during class creation.
867 for item in names:
868 if isinstance(item, str):
869 member_name, member_value = item, names[item]
871 member_name, member_value = item
H A Dpdb.py810 item = parts[0]
817 item = parts[1]
818 answer = find_function(item, fname)
1441 for item in self.displaying.get(self.curframe, {}).items():
1442 self.message('%s: %r' % item)
/third_party/pulseaudio/src/modules/alsa/
H A Dalsa-util.c1139 pa_rtpoll_item *item; in pa_alsa_build_pollfd() local
1148 item = pa_rtpoll_item_new(rtpoll, PA_RTPOLL_NEVER, (unsigned) n); in pa_alsa_build_pollfd()
1149 pollfd = pa_rtpoll_item_get_pollfd(item, NULL); in pa_alsa_build_pollfd()
1153 pa_rtpoll_item_free(item); in pa_alsa_build_pollfd()
1157 return item; in pa_alsa_build_pollfd()
/third_party/node/deps/v8/src/compiler/backend/
H A Dregister-allocator.cc881 // Remove the item from the list. in FilterSpillMoves()
3277 for (const auto item : left) { in ChooseOneOfTwoPredecessorStates()
3278 LiveRange* at_next_block = item->TopLevel()->GetChildCovers(boundary); in ChooseOneOfTwoPredecessorStates()
3282 left_used.emplace_back(item->TopLevel()); in ChooseOneOfTwoPredecessorStates()
3286 for (const auto item : right) { in ChooseOneOfTwoPredecessorStates()
3287 LiveRange* at_next_block = item->TopLevel()->GetChildCovers(boundary); in ChooseOneOfTwoPredecessorStates()
3291 right_used.emplace_back(item->TopLevel()); in ChooseOneOfTwoPredecessorStates()
3299 for (const auto item : left) { in ChooseOneOfTwoPredecessorStates()
3300 LiveRange* at_next_block = item->TopLevel()->GetChildCovers(boundary); in ChooseOneOfTwoPredecessorStates()
3303 left_used.emplace_back(item in ChooseOneOfTwoPredecessorStates()
[all...]
/third_party/backends/backend/
H A Dhp3900_config.c137 static SANE_Int bq5550_motormove(SANE_Int item, struct st_motormove *reg);
138 static SANE_Int hp3800_motormove(SANE_Int item, struct st_motormove *reg);
139 static SANE_Int hp3970_motormove(SANE_Int usb, SANE_Int ccd, SANE_Int item, struct st_motormove *reg);
2011 static SANE_Int cfg_motormove_get(SANE_Int sensortype, SANE_Int item, struct st_motormove *reg) in cfg_motormove_get() argument
2018 rst = bq5550_motormove(item, reg); in cfg_motormove_get()
2022 rst = hp3800_motormove(item, reg); in cfg_motormove_get()
2026 rst = hp3970_motormove(RTS_Debug->usbtype, sensortype, item, reg); in cfg_motormove_get()
2033 static SANE_Int bq5550_motormove(SANE_Int item, struct st_motormove *reg) in bq5550_motormove() argument
2050 if ((item < 2)&&(item > in bq5550_motormove()
2058 hp3800_motormove(SANE_Int item, struct st_motormove *reg) hp3800_motormove() argument
2083 hp3970_motormove(SANE_Int usb, SANE_Int ccd, SANE_Int item, struct st_motormove *reg) hp3970_motormove() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_httplib.py145 def append(self, item):
146 kv = item.split(b':')
148 # item is a 'Key: Value' header string
152 list.append(self, item)
173 def append(self, item):
174 kv = item.split(b':', 1)
177 list.append(self, item)
/third_party/skia/third_party/externals/icu/source/common/
H A Duresbund.cpp1960 // to prevent a parent item from being stored. in getAllItemsWithFallback()
1965 // then it would remove the parent's item. in getAllItemsWithFallback()
1994 // Look up the container item in the parent bundle. in getAllItemsWithFallback()
2106 /* this is a kind of TODO item. If we have an array with an index table, we could do this. */ in ures_getByKey()
2188 /* this is a kind of TODO item. If we have an array with an index table, we could do this. */ in ures_getStringByKey()
2683 /* look for default item */ in ures_getFunctionalEquivalent()
2758 /* look for default item */ in ures_getFunctionalEquivalent()
2802 do { /* search for 'default' named item */ in ures_getFunctionalEquivalent()
2834 /* look for default item */ in ures_getFunctionalEquivalent()
2937 UResourceBundle item; in ures_getKeywordValues() local
[all...]
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dparse.rs55 /// Convert this primitive into an item in a character class.
57 /// If this primitive is not a legal item (i.e., an assertion or a dot),
78 /// If this primitive is not a legal item (i.e., a class, assertion or a
766 /// single alternation item on the stack. Any other scenario produces an
849 let item = ast::ClassSet::Item(nested_union.into_item()); in pop_class()
850 let prevset = self.pop_class_op(item); in pop_class()
914 let item = ast::ClassSet::Item(next_union.into_item()); in push_class_op()
915 let new_lhs = self.pop_class_op(item); in push_class_op()
924 /// top of the stack is just an item (not an operation), then return the
1320 let item in parse_flags()
[all...]
/device/soc/rockchip/common/sdk_linux/include/linux/usb/
H A Dcomposite.h71 * @item: Represents this Extended Property in configfs
80 struct config_item item; member
/device/soc/rockchip/rk3588/kernel/include/linux/usb/
H A Dcomposite.h71 * @item: Represents this Extended Property in configfs
80 struct config_item item; member
/third_party/ffmpeg/doc/
H A Dtexi2pod.pl309 /^\@item\s+(.*\S)\s*$/ and $endw eq "multitable" and do {
313 $_ = "\n=item B&LT;". $columns ."&GT;\n";
327 $_ = "\n=item $ic\&LT;$1\&GT;\n";
329 $_ = "\n=item $ic\n";
458 $chapters{FOOTNOTES} .= "=item $fnno.\n\n"; $fnno++;
/third_party/ffmpeg/libavformat/
H A Disom.h155 MOVFragmentIndexItem * item; member
/third_party/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.h355 HRESULT GetItem(UInt32 index, CReadArcItem &item) const;
H A DArchiveExtractCallback.h580 bool CensorNode_CheckPath(const NWildcard::CCensorNode &node, const CReadArcItem &item);
/third_party/toybox/kconfig/lxdialog/
H A Dchecklist.c29 * Print list item
35 /* Clear 'residue' of last item */ in print_item()
48 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item()
118 /* which item to highlight */ in dialog_checklist()
173 /* Find length of longest item in order to center checklist */ in dialog_checklist()
218 /* De-highlight current first item */ in dialog_checklist()
243 /* De-highlight current last item before scrolling up */ in dialog_checklist()
267 /* De-highlight current item */ in dialog_checklist()
270 /* Highlight new item */ in dialog_checklist()
/third_party/unity/test/
H A Drakefile_helper.rb79 items.each { |item| result += " #{prefix}#{tackit(item)}" }
/third_party/typescript/tests/baselines/reference/
H A DcontrolFlowGenericTypes.js29 item: T;
/third_party/alsa-lib/aserver/
H A Daserver.c841 struct list_head *item; in inet_pending_handler() local
863 list_for_each(item, &inet_pendings) { in inet_pending_handler()
864 pdata = list_entry(item, inet_pending_t, list); in inet_pending_handler()

Completed in 74 milliseconds

1...<<51525354555657585960>>...62