Home
last modified time | relevance | path

Searched refs:list (Results 1101 - 1125 of 6176) sorted by relevance

1...<<41424344454647484950>>...248

/third_party/skia/src/gpu/
H A DGrFinishCallbacks.h14 #include <list>
19 * Maintains a list of callbacks to be called when work on the GPU is complete.
28 * Call all the callbacks in the list. This will block until all work is done.
35 * Add a new callback to the list.
49 * Returns true if the callback list is empty.
61 std::list<FinishCallback> fCallbacks;
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Ddiagnostic.cc23 List::List(std::initializer_list<Diagnostic> list) : entries_(list) {} in List() argument
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_debugobj_r.py10 ti = debugobj_r.WrappedObjectTreeItem(list)
11 self.assertEqual(ti.append, list.append)
/foundation/communication/dsoftbus/sdk/transmission/session/src/
H A Dclient_trans_session_manager.c51 TRANS_LOGE(TRANS_INIT, "entry list not init"); in LockClientSessionServerList()
76 LIST_FOR_EACH_ENTRY(serverNode, &(g_clientSessionServerList->list), ClientSessionServer, node) { in CheckPermissionState()
100 LIST_FOR_EACH_ENTRY(serverNode, &(g_clientSessionServerList->list), ClientSessionServer, node) { in PermissionStateChange()
114 TRANS_LOGE(TRANS_INIT, "entry list not init"); in TransClientInit()
143 LIST_FOR_EACH_ENTRY(serverNode, &(g_clientSessionServerList->list), ClientSessionServer, node) { in SessionIdIsAvailable()
164 LIST_FOR_EACH_ENTRY(serverNode, &(g_clientSessionServerList->list), ClientSessionServer, node) { in ShowAllSessionInfo()
243 serverNode, serverNodeNext, &(g_clientSessionServerList->list), ClientSessionServer, node) { in TryDeleteEmptySessionServer()
263 TRANS_LOGE(TRANS_SDK, "not found session server or session list is not empty, sessionName=%{public}s", in TryDeleteEmptySessionServer()
279 LIST_FOR_EACH_ENTRY_SAFE(serverNode, serverNodeNext, &(g_clientSessionServerList->list), in TransClientDeinit()
299 LIST_FOR_EACH_SAFE(pos, tmp, &g_clientSessionServerList->list) { in SessionServerIsExist()
[all...]
/third_party/vk-gl-cts/framework/referencerenderer/
H A DrrRenderer.cpp510 void flatshadeVertices (const Program& program, ContainerType& list) in flatshadeVertices() argument
517 for (typename ContainerType::iterator it = list.begin(); it != list.end(); ++it) in flatshadeVertices()
524 void clipPrimitives (std::vector<pa::Triangle>& list, in clipPrimitives() argument
544 for (int inputTriangleNdx = 0; inputTriangleNdx < (int)list.size(); ++inputTriangleNdx) in clipPrimitives()
556 const bool v0InsidePlane = plane->pointInClipVolume(vec4ToClipVec4(list[inputTriangleNdx].v0->position)); in clipPrimitives()
557 const bool v1InsidePlane = plane->pointInClipVolume(vec4ToClipVec4(list[inputTriangleNdx].v1->position)); in clipPrimitives()
558 const bool v2InsidePlane = plane->pointInClipVolume(vec4ToClipVec4(list[inputTriangleNdx].v2->position)); in clipPrimitives()
582 outputTriangles.push_back(list[inputTriangleNdx]); in clipPrimitives()
592 initialTri.vertices[0].position = vec4ToClipVec4(list[inputTriangleNd in clipPrimitives()
714 clipPrimitives(std::vector<pa::Line>& list, const Program& program, bool clipWithZPlanes, VertexPacketAllocator& vpalloc) clipPrimitives() argument
785 clipPrimitives(std::vector<pa::Point>& list, const Program& program, bool clipWithZPlanes, VertexPacketAllocator& vpalloc) clipPrimitives() argument
858 transformClipCoordsToWindowCoords(const RenderState& state, ContainerType& list) transformClipCoordsToWindowCoords() argument
907 makeSharedVerticesDistinct(ContainerType& list, VertexPacketAllocator& vpalloc) makeSharedVerticesDistinct() argument
934 generatePrimitiveIDs(ContainerType& list, DrawContext& drawContext) generatePrimitiveIDs() argument
1291 rasterize(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const ContainerType& list) rasterize() argument
[all...]
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/stream/src/
H A Dcast_stream_manager_client.cpp126 json list; in NotifyPeerLoad() local
140 list[i] = info; in NotifyPeerLoad()
142 body[KEY_LIST] = list; in NotifyPeerLoad()
143 CLOGD("list size:%{public}zu ", list.size()); in NotifyPeerLoad()
151 json list; in NotifyPeerPlay() local
165 list[i] = info; in NotifyPeerPlay()
167 body[KEY_LIST] = list; in NotifyPeerPlay()
168 CLOGD("list size:%{public}zu ", list in NotifyPeerPlay()
663 json list = data[KEY_LIST]; ProcessActionPlayRequest() local
[all...]
/foundation/CastEngine/castengine_cast_plus_stream/src/stream/src/
H A Dcast_stream_manager_client.cpp126 json list; in NotifyPeerLoad() local
140 list[i] = info; in NotifyPeerLoad()
142 body[KEY_LIST] = list; in NotifyPeerLoad()
143 CLOGD("list size:%{public}zu ", list.size()); in NotifyPeerLoad()
151 json list; in NotifyPeerPlay() local
165 list[i] = info; in NotifyPeerPlay()
167 body[KEY_LIST] = list; in NotifyPeerPlay()
168 CLOGD("list size:%{public}zu ", list in NotifyPeerPlay()
663 json list = data[KEY_LIST]; ProcessActionPlayRequest() local
[all...]
/third_party/alsa-lib/test/
H A Duser-ctl-element-set.c446 snd_ctl_elem_list_t *list; in check_elem_list() local
452 snd_ctl_elem_list_alloca(&list); in check_elem_list()
455 err = snd_ctl_elem_list(trial->handle, list); in check_elem_list()
460 if (snd_ctl_elem_list_get_count(list) == 0) in check_elem_list()
463 err = snd_ctl_elem_list_alloc_space(list, in check_elem_list()
464 snd_ctl_elem_list_get_count(list)); in check_elem_list()
468 err = snd_ctl_elem_list(trial->handle, list); in check_elem_list()
472 if (trial->element_count > snd_ctl_elem_list_get_count(list)) { in check_elem_list()
478 for (e = 0; e < snd_ctl_elem_list_get_count(list); ++e) { in check_elem_list()
479 snd_ctl_elem_list_get_id(list, in check_elem_list()
[all...]
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/
H A Dh264eprc.c276 task = list_entry(priv->b_frames.prev, struct encode_task, list); in enc_ClearBframes()
277 list_del(&task->list); in enc_ClearBframes()
282 list_addtail(&task->list, &inp->tasks); in enc_ClearBframes()
286 LIST_FOR_EACH_ENTRY(task, &priv->b_frames, list) { in enc_ClearBframes()
359 list_addtail(&task->list, &priv->b_frames); in encode_frame()
364 list_addtail(&task->list, &priv->stacked_tasks); in encode_frame()
365 LIST_FOR_EACH_ENTRY(task, &priv->stacked_tasks, list) { in encode_frame()
370 t = list_entry(priv->stacked_tasks.next, struct encode_task, list); in encode_frame()
371 list_del(&t->list); in encode_frame()
372 list_addtail(&t->list, in encode_frame()
[all...]
/third_party/mesa3d/src/mesa/program/
H A Dprog_print.c907 * Print a program parameter list to given file.
911 const struct gl_program_parameter_list *list) in _mesa_fprint_parameter_list()
915 if (!list) in _mesa_fprint_parameter_list()
919 fprintf(f, "param list %p\n", (void *) list); in _mesa_fprint_parameter_list()
920 fprintf(f, "dirty state flags: 0x%x\n", list->StateFlags); in _mesa_fprint_parameter_list()
921 for (i = 0; i < list->NumParameters; i++){ in _mesa_fprint_parameter_list()
922 struct gl_program_parameter *param = list->Parameters + i; in _mesa_fprint_parameter_list()
923 unsigned pvo = list->Parameters[i].ValueOffset; in _mesa_fprint_parameter_list()
924 const GLfloat *v = (GLfloat *) list in _mesa_fprint_parameter_list()
910 _mesa_fprint_parameter_list(FILE *f, const struct gl_program_parameter_list *list) _mesa_fprint_parameter_list() argument
939 _mesa_print_parameter_list(const struct gl_program_parameter_list *list) _mesa_print_parameter_list() argument
[all...]
/third_party/node/deps/v8/src/torque/
H A Dutils.h133 const T& list; member
139 for (auto& e : l.list) { in operator <<()
152 auto PrintList(const T& list, const std::string& separator = ", ") { in PrintList() argument
153 using ElementType = decltype(*list.begin()); in PrintList()
155 return ListPrintAdaptor<T, decltype(id)>{list, separator, id}; in PrintList()
159 auto PrintList(const T& list, const std::string& separator, L&& transformer) { in PrintList() argument
160 return ListPrintAdaptor<T, L&&>{list, separator, in PrintList()
165 void PrintCommaSeparatedList(std::ostream& os, const T& list, C&& transform) { in PrintCommaSeparatedList() argument
166 os << PrintList(list, ", ", std::forward<C>(transform)); in PrintCommaSeparatedList()
170 void PrintCommaSeparatedList(std::ostream& os, const T& list) { in PrintCommaSeparatedList() argument
[all...]
/third_party/python/Lib/test/test_email/
H A Dtest_message.py44 # list returned by 'walk' called on a Message constructed from the third.
47 # message). The second argument is a list of indices into the 'walk' list
49 # 'iter_attachments'. The third argument is a list of indices into 'walk'
453 allparts = list(m.walk())
485 allparts = list(m.walk())
487 self.assertEqual(list(m.iter_attachments()), attachments)
494 allparts = list(m.walk())
496 iter_parts = list(m.iter_parts()) if _is_multipart_msg(msg) else []
714 self.assertEqual(list(
[all...]
/base/hiviewdfx/hiview/base/
H A Daudit.cpp60 bool Audit::GetAuditLog(bool loadFromFile, std::list<std::string>& ret) in GetAuditLog()
77 void Audit::GetAuditLogInner(bool loadFromFile, std::list<std::string>& ret) in GetAuditLogInner()
168 bool Audit::ReadLogFromFile(const std::string& path, std::list<std::string>& ret) in ReadLogFromFile()
170 std::list<std::string> fileLog; in ReadLogFromFile()
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H A Dfusion_device_profile.cpp93 std::list<SubscribeInfo> subscriptions; in SubscribeProfileEvents()
109 std::list<ProfileEvent> fails; in SubscribeProfileEvents()
145 std::list<ProfileEvent> profiles; in UnsubscribeProfileEvents()
157 std::list<ProfileEvent> fails; in UnsubscribeProfileEvents()
/base/security/access_token/services/privacymanager/src/active/
H A Dactive_status_callback_manager.cpp130 std::vector<sptr<IRemoteObject>> list; in ActiveStatusChange() local
139 list.emplace_back((*it).callbackObject_); in ActiveStatusChange()
142 for (auto it = list.begin(); it != list.end(); ++it) { in ActiveStatusChange()
/base/security/access_token/services/privacymanager/test/unittest/
H A Dsensitive_manager_test.cpp201 std::vector<AppStateData> list; in HWTEST_F() local
202 ASSERT_EQ(0, AppManagerAccessClient::GetInstance().GetForegroundApplications(list)); in HWTEST_F()
203 for (size_t i = 0; i < list.size(); ++i) { in HWTEST_F()
204 ASSERT_NE(tokenId, list[i].accessTokenId); in HWTEST_F()
/base/startup/init/services/modules/seccomp/scripts/tools/
H A Daudit_log_analysis.py46 'arm': list(),
47 'arm64': list(),
48 'riscv64': list()
52 for nr in sorted(list(arch_nr_table.get(arch))):
129 # get file list
/base/telephony/call_manager/services/call/src/
H A Dott_call_connection.cpp105 std::vector<std::string> list = numberList; in InviteToConference() local
107 info.PutIntValue("listCnt", list.size()); in InviteToConference()
108 std::vector<std::string>::iterator it = list.begin(); in InviteToConference()
109 for (; it != list.end(); ++it) { in InviteToConference()
/base/update/sys_installer/tools/module_update_tool/
H A Dmain.cpp31 "command list:\n"
86 static void PrintUpgradeInfo(std::list<OHOS::SysInstaller::ModulePackageInfo> &modulePackageInfos) in PrintUpgradeInfo()
88 std::list<OHOS::SysInstaller::ModulePackageInfo>::iterator it; in PrintUpgradeInfo()
93 std::list<OHOS::SysInstaller::SaInfo>::iterator saIt; in PrintUpgradeInfo()
152 std::list<OHOS::SysInstaller::ModulePackageInfo> modulePackageInfos; in ShowInfo()
/base/update/updater/utils/json/
H A Djson_node.h20 #include <list>
90 std::list<std::reference_wrapper<JsonNode>>::const_iterator begin() const;
91 std::list<std::reference_wrapper<JsonNode>>::const_iterator end() const;
113 std::list<std::reference_wrapper<JsonNode>> innerNodesList_ {};
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dwrap_layout_algorithm.h34 ContentInfo(float main, float cross, int32_t total, const std::list<RefPtr<LayoutWrapper>>& nodeList) in ContentInfo()
41 std::list<RefPtr<LayoutWrapper>> itemList;
137 std::list<ContentInfo> contentList_;
142 std::list<RefPtr<LayoutWrapper>> outOfLayoutChildren_;
/foundation/arkui/ace_engine/frameworks/core/components/flex/
H A Drender_flex.h213 void PerformItemAlign(std::list<RefPtr<RenderNode>>& nodelist);
233 std::list<RefPtr<RenderNode>> relativeNodes_;
234 std::list<RefPtr<RenderFlexItem>> stretchNodes_;
236 std::map<int32_t, std::list<MagicLayoutNode>> magicNodes_;
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dkeyframe_animation.h19 #include <list>
38 void AddKeyframe(const std::list<RefPtr<Keyframe<T>>>& keyframes) in AddKeyframe()
86 const std::list<RefPtr<Keyframe<T>>>& GetKeyframes() const in GetKeyframes()
193 std::list<RefPtr<Keyframe<T>>> keyframes_;
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_third_provider_interaction_operation.h79 std::list<Accessibility::AccessibilityElementInfo>& infos);
94 std::list<AccessibilityElementInfo>&& infos,
98 std::list<AccessibilityElementInfo>&& infos,
113 std::list<Accessibility::AccessibilityElementInfo>& infos);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/ui_extension/
H A Dsecurity_ui_extension_pattern.h89 const std::list<std::function<void(const RefPtr<NG::SecurityUIExtensionProxy>&)>>&& callbackList);
92 const std::list<std::function<void(const RefPtr<NG::SecurityUIExtensionProxy>&)>>&& callbackList);
133 std::list<std::function<void(const RefPtr<NG::SecurityUIExtensionProxy>&)>> onSyncOnCallbackList_;
134 std::list<std::function<void(const RefPtr<NG::SecurityUIExtensionProxy>&)>> onAsyncOnCallbackList_;

Completed in 19 milliseconds

1...<<41424344454647484950>>...248