Home
last modified time | relevance | path

Searched refs:GetItem (Results 1 – 6 of 6) sorted by relevance

/base/hiviewdfx/hiview/base/include/
Dsys_event.h140 static decltype(auto) GetItem(T&& item)
156 jsonStr_ << GetItem(std::forward<K>(key)) << ":";
158 jsonStr_ << GetItem(std::forward<V>(value)) << ",";
162 jsonStr_ << GetItem(it) << ",";
/base/web/webview/ohos_nweb/include/
Dnweb_history_list.h46 virtual std::shared_ptr<NWebHistoryItem> GetItem(int32_t index) = 0;
/base/web/webview/interfaces/kits/napi/webviewcontroller/
Dwebview_controller.h225 std::shared_ptr<NWebHistoryItem> GetItem(int32_t index);
Dnapi_webview_controller.h214 static napi_value GetItem(napi_env env, napi_callback_info info);
Dwebview_controller.cpp807 std::shared_ptr<NWebHistoryItem> WebHistoryList::GetItem(int32_t index) in GetItem() function in OHOS::NWeb::WebHistoryList
812 return sptrHistoryList_->GetItem(index); in GetItem()
Dnapi_webview_controller.cpp151 DECLARE_NAPI_FUNCTION("getItemAtIndex", NapiWebHistoryList::GetItem) in Init()
1993 napi_value NapiWebHistoryList::GetItem(napi_env env, napi_callback_info info) in GetItem() function in OHOS::NWeb::NapiWebHistoryList
2021 std::shared_ptr<NWebHistoryItem> item = historyList->GetItem(index); in GetItem()