/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/command/ |
H A D | processor_selector_factory.cpp | 21 void ProcessorSelectorFactory::Register(const std::shared_ptr<ProcessorSelector> &selector) in Register() argument 23 selector_ = selector; in Register() 29 CONN_LOGI(CONN_WIFI_DIRECT, "simple processor selector"); in NewSelector() 32 CONN_LOGI(CONN_WIFI_DIRECT, "complex processor selector"); in NewSelector()
|
H A D | disconnect_command.cpp | 69 auto selector = ProcessorSelectorFactory::GetInstance().NewSelector(); in GetProcessor() local 70 if (selector == nullptr) { in GetProcessor() 71 CONN_LOGE(CONN_WIFI_DIRECT, "selector is null"); in GetProcessor() 74 return (*selector)(info_.info_); in GetProcessor()
|
H A D | negotiate_command.cpp | 34 auto selector = ProcessorSelectorFactory::GetInstance().NewSelector(); in GetProcessor() local 35 return (*selector)(msg_); in GetProcessor()
|
H A D | force_disconnect_command.cpp | 63 auto selector = ProcessorSelectorFactory::GetInstance().NewSelector(); in GetProcessor() local 64 return (*selector)(info_.info_); in GetProcessor()
|
H A D | connect_command.cpp | 56 auto selector = ProcessorSelectorFactory::GetInstance().NewSelector(); in GetProcessor() local 57 if (selector == nullptr) { in GetProcessor() 58 CONN_LOGE(CONN_WIFI_DIRECT, "selector is null"); in GetProcessor() 61 return (*selector)(info_.info_); in GetProcessor()
|
H A D | processor_selector_factory.h | 31 void Register(const std::shared_ptr<ProcessorSelector> &selector);
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/test/unittest/common/ |
H A D | stylemgr_media_query_tdd_test.cpp | 458 const AppStyle *selector = GetStyleFromSelector(list->classSelectors_, selectorName); in GetStyleFromSelectorList() local 459 selector = (selector != nullptr) ? selector : GetStyleFromSelector(list->idSelectors_, selectorName); in GetStyleFromSelectorList() 460 selector = (selector != nullptr) ? selector : GetStyleFromSelector(list->keyFrameSelectors_, selectorName); in GetStyleFromSelectorList() 462 return selector; in GetStyleFromSelectorList() 471 const AppStyle *selector = GetStyleFromSelectorList(list, selectorName); in GetItemCountOfSelector() local 472 return GetAppStyleItemCount(selector); in GetItemCountOfSelector() [all...] |
H A D | stylemgr_tdd_test.h | 57 JSValue PrepareStyleSheetWithKeyValues(const char* selector,
|
H A D | stylemgr_tdd_test.cpp | 107 * create id selector object and set it to style sheet in PrepareStyleSheet() 115 * create one id selector in PrepareStyleSheet() 133 JSValue StyleMgrTddTest::PrepareStyleSheetWithKeyValues(const char* selector, in PrepareStyleSheetWithKeyValues() argument 151 * create selector object and set it to style sheet in PrepareStyleSheetWithKeyValues() 154 JSValue selectorKey = jerry_create_string(reinterpret_cast<const jerry_char_t *>(selector)); in PrepareStyleSheetWithKeyValues() 159 * set selector into style sheet object in PrepareStyleSheetWithKeyValues() 166 * add value into selector in PrepareStyleSheetWithKeyValues() 412 * @tc.steps: step2. prepare valid style sheet with class selector in ACELiteStyleManagerInlineStyle004() 474 * @tc.steps: step2. prepare valid style sheet with class selector in ACELiteStyleManagerInlineStyle005() 477 // give an very long selector nam in ACELiteStyleManagerInlineStyle005() [all...] |
/foundation/multimedia/av_session/services/session/server/ |
H A D | focus_session_strategy.cpp | 45 void FocusSessionStrategy::RegisterFocusSessionSelector(const FocusSessionSelector& selector) in RegisterFocusSessionSelector() argument 47 selector_ = selector; in RegisterFocusSessionSelector()
|
H A D | focus_session_strategy.h | 42 void RegisterFocusSessionSelector(const FocusSessionSelector& selector);
|
/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/ |
H A D | wifi_direct_manager.cpp | 193 auto selector = OHOS::SoftBus::ProcessorSelectorFactory::GetInstance().NewSelector(); in PrejudgeAvailability() local 194 auto processor = (*selector)(remoteNetworkId, connectType); in PrejudgeAvailability()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_pattern.cpp | 2673 const auto& selector = GetTextSelector(); in ToJsonValue() local 2674 auto result = "[" + std::to_string(selector.GetTextStart()) + "," + std::to_string(selector.GetTextEnd()) + "]"; in ToJsonValue()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_pattern.cpp | 1811 void RichEditorPattern::FireOnSelectionChange(const TextSelector& selector) 1813 if (selector.SelectNothing()) { 1816 FireOnSelectionChange(selector.GetStart(), selector.GetEnd()); 3578 auto onTextSelectorChange = [weak = WeakClaim(this), &selector = textSelector_]() { 3581 if (!selector.SelectNothing()) { 3584 pattern->SetImageSelfResponseEvent(selector.SelectNothing()); 3585 pattern->FireOnSelectionChange(selector); 5407 // handle selector 8726 TAG_LOGI(AceLogTag::ACE_RICH_TEXT, "get ai selector [ [all...] |
H A D | rich_editor_pattern.h | 1049 void FireOnSelectionChange(const TextSelector& selector);
|