/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
H A D | PreferencesDialog.java | 10 import java.awt.event.*;
|
H A D | ResourceCreationDialog.java | 10 import java.awt.event.*;
|
H A D | RBProjectItemPanel.java | 10 import java.awt.event.*;
|
/third_party/libuv/src/win/ |
H A D | thread.c | 45 existing_event = InterlockedCompareExchangePointer(&guard->event, in uv__once_inner() 58 /* We lost the race. Destroy the event we created and wait for the existing in uv__once_inner()
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_sqtt.h | 330 struct rgp_sqtt_marker_event event; member
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_cmd_buffer.h | 117 /* Memory writes from the CP start in-order with draws and event writes, 646 enum vgt_event_type event);
|
/third_party/node/test/parallel/ |
H A D | test-repl.js | 63 lineBuffer += await event(socket, expect); 995 function event(ee, expected) { function
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | pthread.h | 53 EVENT_CB_S event; /**< Event object*/ member
|
/third_party/nghttp2/src/ |
H A D | shrpx_worker.h | 327 void send(WorkerEvent event);
|
/third_party/node/deps/v8/src/profiler/ |
H A D | cpu-profiler.h | 164 // methods called by event producers: VM and stack sampler threads. 176 void Enqueue(const CodeEventsContainer& event);
|
/third_party/node/deps/uv/src/win/ |
H A D | thread.c | 45 existing_event = InterlockedCompareExchangePointer(&guard->event, in uv__once_inner() 58 /* We lost the race. Destroy the event we created and wait for the existing in uv__once_inner()
|
/third_party/python/Lib/idlelib/ |
H A D | colorizer.py | 110 after_id: Identifier for scheduled after event, which is a 216 def toggle_colorize_event(self, event=None): 241 """Timer event (every 1ms) to colorize text.
|
/third_party/python/Lib/test/ |
H A D | test_frame.py | 270 def trace(frame, event, arg):
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/select/ |
H A D | select_test_ng.cpp | 322 KeyEvent event; in HWTEST_F() local 323 EXPECT_FALSE(selectPattern->OnKeyEvent(event)); in HWTEST_F() 324 event.action = KeyAction::DOWN; in HWTEST_F() 325 EXPECT_FALSE(selectPattern->OnKeyEvent(event)); in HWTEST_F() 326 event.code = KeyCode::KEY_ENTER; in HWTEST_F() 327 EXPECT_TRUE(selectPattern->OnKeyEvent(event)); in HWTEST_F() 928 * @tc.steps: step1. Create select model and select event. in HWTEST_F() 988 * @tc.steps: step1. Create select model and select event. in HWTEST_F()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/ |
H A D | text_testthree_ng.cpp | 695 * @tc.expect: expect click event captured by spanNode, onClickEvent will be called, in HWTEST_F() 772 * @tc.desc: Test onCopy event of text. 1388 auto event = AceType::MakeRefPtr<OHOS::Ace::DragEvent>(); in HWTEST_F() local 1394 auto dragDropInfo = onDragStart(event, ""); in HWTEST_F() 1403 eventHub->FireOnDragMove(event, ""); in HWTEST_F() 1410 onDragEnd(event); in HWTEST_F() 2054 auto event = AceType::MakeRefPtr<OHOS::Ace::DragEvent>(); in HWTEST_F() local 2060 auto dragDropInfo = onDragStart(event, ""); in HWTEST_F()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | cloud_data_test.cpp | 312 auto event = std::make_unique<CloudEvent>(CloudEvent::GET_SCHEMA, storeInfo); in HWTEST_F() local 313 EventCenter::GetInstance().PostEvent(std::move(event)); in HWTEST_F() 678 EventCenter::GetInstance().Subscribe(CloudEvent::MAKE_QUERY, [](const Event &event) { in HWTEST_F() 679 auto &evt = static_cast<const DistributedData::MakeQueryEvent &>(event); in HWTEST_F() 897 auto event = std::make_unique<CloudShareEvent>(storeInfo, nullptr, nullptr); in HWTEST_F() local 898 EventCenter::GetInstance().PostEvent(std::move(event)); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_pattern.cpp | 986 auto onKeyEvent = [wp = WeakClaim(this)](const KeyEvent& event) -> bool { in InitOnKeyEvent() 989 return pattern->OnKeyEvent(event); in InitOnKeyEvent() 994 bool ListPattern::OnKeyEvent(const KeyEvent& event) in OnKeyEvent() argument 996 if (event.action != KeyAction::DOWN) { in OnKeyEvent() 999 if (event.code == KeyCode::KEY_PAGE_DOWN) { in OnKeyEvent() 1003 if (event.code == KeyCode::KEY_PAGE_UP) { in OnKeyEvent() 1007 return HandleDirectionKey(event); in OnKeyEvent() 1010 bool ListPattern::HandleDirectionKey(const KeyEvent& event) in HandleDirectionKey() argument
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_manager_test.cpp | 1224 DisplayEvent event = DisplayEvent::KEYGUARD_DRAWN; in HWTEST_F() local 1225 ssm_->NotifyDisplayEvent(event); in HWTEST_F() 1228 event = DisplayEvent::SCREEN_LOCK_SUSPEND; in HWTEST_F() 1229 ssm_->NotifyDisplayEvent(event); in HWTEST_F() 1232 event = DisplayEvent::SCREEN_LOCK_OFF; in HWTEST_F() 1233 ssm_->NotifyDisplayEvent(event); in HWTEST_F() 1236 event = DisplayEvent::SCREEN_LOCK_FINGERPRINT; in HWTEST_F() 1237 ssm_->NotifyDisplayEvent(event); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_model_ng.cpp | 400 void TextModelNG::SetRemoteMessage(std::function<void()>&& event) {} in SetRemoteMessage() argument 436 const RefPtr<OHOS::Ace::DragEvent>& event, const std::string& extraParams) -> DragDropInfo { in SetOnDragStart() 437 auto dragInfo = dragStartFunc(event, extraParams); in SetOnDragStart()
|
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | form_render_test.cpp | 292 * @tc.steps: step6. Test pointer event in HWTEST_F() 295 std::shared_ptr<OHOS::MMI::PointerEvent> event; in HWTEST_F() local 296 EXPECT_CALL(*((MockUIContent*)(formRenderer->uiContent_.get())), ProcessPointerEvent(event)) in HWTEST_F() 299 formRendererDispatcher->DispatchPointerEvent(event, serializedGesture); in HWTEST_F()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/xcomponent/ |
H A D | xcomponent_test_ng.cpp | 39 #include "core/event/touch_event.h" 194 * @tc.desc: Test XComponent onLoad and onDestroy event. 524 * @tc.steps: step3. register focus & blur event for nativeXComponent instance in HWTEST_F() 532 * @tc.steps: step4. call focusHub's focus & blur event in HWTEST_F() 703 * @tc.desc: Test XComponent detachEvent event. 781 * @tc.desc: Test XComponent RegisterOnCreate and RegisterOnDestroy register event. 802 * @tc.steps: step2. call RegisterOnCreate and RegisterOnDestroy register event. in HWTEST_F() 825 * @tc.steps: step4. call RegisterOnCreate and RegisterOnDestroy register event. in HWTEST_F() 1051 * @tc.steps: step3. call surfaceHide and surfaceShow event without register callbacks in HWTEST_F() 1060 * @tc.steps: step4. register surfaceHide/Show event fo in HWTEST_F() 1222 AxisInfo event; HWTEST_F() local [all...] |
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/imagecodec/ |
H A D | image_codec.cpp | 953 int32_t ImageCodec::HdiCallback::EventHandler(CodecEventType event, const EventInfo &info) in EventHandler() argument 955 LOGD("event = %{public}d, data1 = %{public}u, data2 = %{public}u", event, info.data1, info.data2); in EventHandler() 957 msg->SetValue("event", event); in EventHandler()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/mtp_native_test/src/ |
H A D | mtp_test.cpp | 618 inotify_event event; in HWTEST_F() local 619 event.mask = 0; in HWTEST_F() 620 MtpFileObserver::SendEvent(event, path, context); in HWTEST_F()
|
/foundation/multimodalinput/input/service/monitor/test/ |
H A D | event_monitor_handler_test.cpp | 48 void OnInputEvent(InputHandlerType type, std::shared_ptr<KeyEvent> event) const override {} 49 void OnInputEvent(InputHandlerType type, std::shared_ptr<PointerEvent> event) const override {} 50 void OnInputEvent(InputHandlerType type, std::shared_ptr<AxisEvent> event) const override {} 55 * @tc.desc: Verify the invalid and valid event type of AddInputHandler 75 * @tc.desc: Verify the invalid and valid event type of AddInputHandler 517 * @tc.desc: Verify the invalid and valid event type of InitSessionLostCallback 538 * @tc.desc: Verify the invalid and valid event type of AddInputHandler 558 * @tc.desc: Verify the invalid and valid event type of RemoveInputHandler 601 * @tc.desc: Verify the invalid and valid event type of AddMonitor 629 * @tc.desc: Verify the invalid and valid event typ [all...] |
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | pointer_event.cpp | 487 auto event = std::shared_ptr<PointerEvent>(new (std::nothrow) PointerEvent(InputEvent::EVENT_TYPE_POINTER)); in Create() local 488 CHKPP(event); in Create() 489 return event; in Create()
|