/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_memorypool.cpp | 35 #include <list> 49 std::list<void *> m_data;
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | visitor.py | 54 if isinstance(old_value, list): 76 can be used to enforce a list as return value. 79 if not isinstance(rv, list):
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | filter.py | 62 self._globs = defaultdict(list) 73 for s, globs in list(self._globs.items()):
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | visitor.py | 60 if isinstance(old_value, list): 82 can be used to enforce a list as return value. 85 if not isinstance(rv, list):
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | test-unssa.c | 58 static int compile(struct symbol_list *list) in compile() argument 61 FOR_EACH_PTR(list, sym) { in compile()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-list-format.h | 32 #include "torque-generated/src/objects/js-list-format-tq.inc" 49 Handle<FixedArray> list); 54 Handle<FixedArray> list); 75 // Type: identifying the list of types used.
|
/third_party/node/deps/openssl/openssl/include/internal/ |
H A D | property.h | 39 /* Free a parsed property list */ 42 /* Get a property from a property list */ 44 ossl_property_find_property(const OSSL_PROPERTY_LIST *list, 93 const OSSL_PROPERTY_LIST *list, char *buf,
|
/third_party/node/deps/uv/tools/ |
H A D | make_dist_html.py | 85 return list(map(int, re.match('^v(\d+)\.(\d+)\.(\d+)', tag).groups())) 118 groups = [group_for(list(g)) for _, g in itertools.groupby(tags, major_minor)]
|
/third_party/python/Tools/demo/ |
H A D | vector.py | 42 self.v = list(v) 46 if not isinstance(v, list):
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | json_validate.py | 79 print(list(error.path)) 81 print(list(suberror.path), suberror.message, sep="\n")
|
/third_party/openssl/include/internal/ |
H A D | property.h | 39 /* Free a parsed property list */ 42 /* Get a property from a property list */ 44 ossl_property_find_property(const OSSL_PROPERTY_LIST *list, 93 const OSSL_PROPERTY_LIST *list, char *buf,
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | visitor.py | 54 if isinstance(old_value, list): 76 can be used to enforce a list as return value. 79 if not isinstance(rv, list):
|
/third_party/skia/third_party/externals/freetype/include/freetype/ |
H A D | fttypes.h | 520 * handle to a single list element. 531 * A handle to a list record (see @FT_ListRec). 542 * A structure used to hold a single list element. 546 * The previous element in the list. `NULL` if first. 549 * The next element in the list. `NULL` if last. 569 * A structure used to hold a simple doubly-linked list. These are used 574 * The head (first element) of doubly-linked list. 577 * The tail (last element) of doubly-linked list. 589 #define FT_IS_EMPTY( list ) ( (list) [all...] |
/third_party/protobuf/python/ |
H A D | stubout.py | 72 mro = list(inspect.getmro(obj.__class__)) 74 mro = list(inspect.getmro(obj))
|
/third_party/python/Lib/turtledemo/ |
H A D | minimal_hanoi.py | 12 is derived from the built-in type list. 30 class Tower(list): 31 "Hanoi tower, a subclass of built-in type list" 40 d = list.pop(self)
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/ |
H A D | ice_flex_pipe.c | 427 * Enumerates a list of labels in the package. The caller will call 430 * the end of the list has been reached. 1010 * @pkg_info: the buffer which will receive the information list 1989 /* Add ptype to PTG at beginning of list */ in ice_ptg_add_mv_ptype() 2055 * @list1: first properties list 2056 * @list2: second properties list 2069 list_for_each_entry(tmp1, list1, list) in ice_match_prop_lst() 2071 list_for_each_entry(tmp2, list2, list) in ice_match_prop_lst() 2076 tmp1 = list_first_entry(list1, struct ice_vsig_prof, list); in ice_match_prop_lst() 2077 tmp2 = list_first_entry(list2, struct ice_vsig_prof, list); in ice_match_prop_lst() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/ |
H A D | ice_flex_pipe.c | 771 /* Add ptype to PTG at beginning of list */ in ice_ptg_add_mv_ptype() 837 * @list1: first properties list 838 * @list2: second properties list 851 list_for_each_entry(tmp1, list1, list) in ice_match_prop_lst() 853 list_for_each_entry(tmp2, list2, list) in ice_match_prop_lst() 858 tmp1 = list_first_entry(list1, struct ice_vsig_prof, list); in ice_match_prop_lst() 859 tmp2 = list_first_entry(list2, struct ice_vsig_prof, list); in ice_match_prop_lst() 868 tmp1 = list_next_entry(tmp1, list); in ice_match_prop_lst() 869 tmp2 = list_next_entry(tmp2, list); in ice_match_prop_lst() 884 * This function will lookup the VSI entry in the XLT2 list an [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_asm.c | 57 list_inithead(&cf->list); in r600_bytecode_cf() 71 list_inithead(&alu->list); in r600_bytecode_alu() 81 list_inithead(&vtx->list); in r600_bytecode_vtx() 91 list_inithead(&tex->list); in r600_bytecode_tex() 101 list_inithead(&gds->list); in r600_bytecode_gds() 181 list_addtail(&cf->list, &bc->cf); in r600_bytecode_add_cf() 390 for (alu = alu_first; alu; alu = list_entry(alu->list.next, struct r600_bytecode_alu, list)) { in assign_alu_units() 986 list_del(&result[i]->list); in merge_inst_groups() 988 list_addtail(&result[i]->list, in merge_inst_groups() [all...] |
/third_party/selinux/libsepol/src/ |
H A D | module_to_cil.c | 193 struct list { struct 197 /* A linked list of all roles stored in the pdb 201 static struct list *role_list; 203 static void list_destroy(struct list **list) in list_destroy() argument 205 struct list_node *curr = (*list)->head; in list_destroy() 214 free(*list); in list_destroy() 215 *list = NULL; in list_destroy() 236 static void attr_list_destroy(struct list **attr_list) in attr_list_destroy() 261 static int list_init(struct list **lis argument 272 list_prepend(struct list *list, void *data) list_prepend() argument [all...] |
/base/telephony/core_service/services/sim/src/ |
H A D | usim_dialling_numbers_service.cpp | 78 std::shared_ptr<std::vector<std::shared_ptr<DiallingNumbersInfo>>> list = in ProcessPbrLoadDone() local 80 SendBackResult(list); in ProcessPbrLoadDone() 116 const std::shared_ptr<std::vector<std::shared_ptr<DiallingNumbersInfo>>> &list) in FillDiallingNumbersRecords() 118 if (list != nullptr) { in FillDiallingNumbersRecords() 119 for (std::vector<std::shared_ptr<DiallingNumbersInfo>>::iterator it = list->begin(); it != list->end(); ++it) { in FillDiallingNumbersRecords() 115 FillDiallingNumbersRecords( const std::shared_ptr<std::vector<std::shared_ptr<DiallingNumbersInfo>>> &list) FillDiallingNumbersRecords() argument
|
/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | event_dump.cpp | 27 void FrameNodeSnapshot::Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const in Dump() 56 void TouchPointSnapshot::Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const in Dump() 193 void EventTreeRecord::Dump(std::list<std::pair<int32_t, std::string>>& dumpList, in Dump() 260 std::list<TouchPointSnapshot> touchPoints, std::unique_ptr<JsonValue>& json) const in BuildTouchPoints() 271 void EventTreeRecord::BuildHitTestTree(std::list<FrameNodeSnapshot> hitTestTree, std::unique_ptr<JsonValue>& json) const in BuildHitTestTree() 307 std::map<int32_t, std::list<RefPtr<GestureSnapshot>>> gestureTreeMap, std::unique_ptr<JsonValue>& json) const in BuildGestureTree()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_layout_algorithm.cpp | 24 RichEditorLayoutAlgorithm::RichEditorLayoutAlgorithm(std::list<RefPtr<SpanItem>> spans, ParagraphManager* paragraphs, in RichEditorLayoutAlgorithm() 36 std::list<RefPtr<SpanItem>> newGroup; in RichEditorLayoutAlgorithm() 64 std::list<RefPtr<SpanItem>> newGroup; in AppendNewLineSpan() 203 float RichEditorLayoutAlgorithm::GetShadowOffset(const std::list<RefPtr<SpanItem>>& group) in GetShadowOffset() 275 const std::list<RefPtr<SpanItem>>& spanGroup) in HandleEmptyParagraph() 287 RefPtr<SpanItem> RichEditorLayoutAlgorithm::GetParagraphStyleSpanItem(const std::list<RefPtr<SpanItem>>& spanGroup) in GetParagraphStyleSpanItem()
|
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/interrupt/ |
H A D | audio_interrupt_service.h | 40 std::list<std::pair<AudioInterrupt, AudioFocuState>> audioFocusInfoList; 95 std::list<std::pair<AudioInterrupt, AudioFocuState>> &focusInfoList); 173 void ProcessExistInterrupt(std::list<std::pair<AudioInterrupt, AudioFocuState>>::iterator 180 std::list<std::pair<AudioInterrupt, AudioFocuState>> SimulateFocusEntry(const int32_t zoneId); 186 std::list<std::pair<AudioInterrupt, AudioFocuState>>::iterator &iterActive, bool &removeFocusInfo); 222 const std::list<std::pair<AudioInterrupt, AudioFocuState>> &audioFocusInfoList);
|
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/ |
H A D | dash_mpd_downloader.h | 44 DASH_MPD_GET_UNDONE, // get segment null, as segment list is empty 152 bool SetOndemandSegBase(std::list<DashAdptSetInfo *> adptSetList); 153 bool SetOndemandSegBase(std::list<DashRepresentationInfo *> repList); 200 const DashMultSegBaseInfo *multSegBaseInfo, std::list<unsigned int> &durationList); 205 DashSegmentInitValue GetSegmentsWithBaseUrl(std::list<std::string> baseUrlList, 224 void BuildDashSegment(std::list<std::shared_ptr<SubSegmentIndex>> &subSegIndexList) const; 227 std::list<DashRepresentationInfo *> &repList);
|
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/src/ |
H A D | hi_fsm.cpp | 38 std::list<FsmState *> fsmStateList; 44 std::list<FsmInstanceCtx *> fsmInstanceList; 54 std::list<FsmInstanceCtx *>::iterator msgIter = g_fsmContext.fsmInstanceList.begin(); in FsmCheckInstanceExist() 79 std::list<FsmInstanceCtx *>::iterator msgIter = g_fsmContext.fsmInstanceList.begin(); in FsmDelInstance() 92 std::list<FsmState *>::iterator msgIter = fsmInstance.fsmStateList.begin(); in FsmFindState() 165 std::list<FsmState *>::iterator msgIter = fsmInstance->fsmStateList.begin(); in HI_FSM_Destroy()
|