Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:PlaybackStatus
(Results
1 - 6
of
6
) sorted by relevance
/base/web/webview/ohos_interface/include/ohos_nweb/
H
A
D
nweb_native_media_player.h
38
enum class
PlaybackStatus
{ PAUSED = 0, PLAYING };
class
97
virtual void HandleStatusChanged(
PlaybackStatus
status) = 0;
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/
H
A
D
ark_web_native_media_player_handler_wrapper.h
28
using ArkWebPlaybackStatus = OHOS::NWeb::
PlaybackStatus
;
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/
H
A
D
ark_web_native_media_player_handler_impl.cpp
25
using ArkWebPlaybackStatus = OHOS::NWeb::
PlaybackStatus
;
/base/web/webview/interfaces/kits/napi/webviewcontroller/
H
A
D
native_media_player_impl.h
64
void HandleStatusChanged(
PlaybackStatus
status);
H
A
D
napi_native_media_player.cpp
223
const std::string NPI_PLAYBACK_STATUS_ENUM_NAME = "
PlaybackStatus
";
in ExportEnumPlaybackStatus()
226
"PAUSED", NapiParseUtils::ToInt32Value(env, static_cast<int32_t>(
PlaybackStatus
::PAUSED))),
in ExportEnumPlaybackStatus()
228
"PLAYING", NapiParseUtils::ToInt32Value(env, static_cast<int32_t>(
PlaybackStatus
::PLAYING))),
in ExportEnumPlaybackStatus()
259
if ((status < static_cast<int>(
PlaybackStatus
::PAUSED)) || (status > static_cast<int>(
PlaybackStatus
::PLAYING))) {
in HandleStatusChanged()
272
handler->HandleStatusChanged(static_cast<
PlaybackStatus
>(status));
in HandleStatusChanged()
H
A
D
native_media_player_impl.cpp
175
void NapiNativeMediaPlayerHandlerImpl::HandleStatusChanged(
PlaybackStatus
status)
in HandleStatusChanged()
Completed in 3 milliseconds