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:SkAudioPlayer
(Results
1 - 7
of
7
) sorted by relevance
/third_party/skia/modules/audioplayer/
H
A
D
SkAudioPlayer.cpp
8
#include "modules/audioplayer/
SkAudioPlayer
.h"
12
SkAudioPlayer
::~
SkAudioPlayer
() {}
in ~SkAudioPlayer()
14
double
SkAudioPlayer
::setTime(double t) {
in setTime()
25
double
SkAudioPlayer
::setNormalizedTime(double t) {
in setNormalizedTime()
30
SkAudioPlayer
::State
SkAudioPlayer
::setState(State s) {
in setState()
37
float
SkAudioPlayer
::setRate(float r) {
in setRate()
48
float
SkAudioPlayer
::setVolume(float v) {
in setVolume()
H
A
D
SkAudioPlayer.h
12
class SK_API
SkAudioPlayer
{
class
14
virtual ~
SkAudioPlayer
();
17
static std::unique_ptr<
SkAudioPlayer
> Make(sk_sp<SkData>);
49
SkAudioPlayer
() {} // only called by subclasses
in SkAudioPlayer()
function in SkAudioPlayer
H
A
D
SkAudioPlayer_oboe.cpp
8
#include "modules/audioplayer/
SkAudioPlayer
.h"
17
class OboeAudioPlayer final : public
SkAudioPlayer
, oboe::AudioStreamCallback {
117
std::unique_ptr<
SkAudioPlayer
>
SkAudioPlayer
::Make(sk_sp<SkData> src) {
in Make()
118
return std::unique_ptr<
SkAudioPlayer
>(new OboeAudioPlayer(std::move(src)));
in Make()
H
A
D
SkAudioPlayer_sfml.cpp
9
#include "modules/audioplayer/
SkAudioPlayer
.h"
15
class SFMLAudioPlayer final : public
SkAudioPlayer
{
64
std::unique_ptr<
SkAudioPlayer
>
SkAudioPlayer
::Make(sk_sp<SkData> src) {
in Make()
H
A
D
SkAudioPlayer_none.cpp
9
#include "modules/audioplayer/
SkAudioPlayer
.h"
11
std::unique_ptr<
SkAudioPlayer
>
SkAudioPlayer
::Make(sk_sp<SkData> src) {
in Make()
/third_party/skia/samplecode/
H
A
D
SampleAudio.cpp
10
#include "modules/audioplayer/
SkAudioPlayer
.h"
16
std::unique_ptr<
SkAudioPlayer
> fPlayer;
28
fPlayer =
SkAudioPlayer
::Make(data);
57
case
SkAudioPlayer
::State::kPlaying: fPlayer->pause(); break;
58
case
SkAudioPlayer
::State::kPaused: fPlayer->play(); break;
59
case
SkAudioPlayer
::State::kStopped: fPlayer->play(); break;
/third_party/skia/tools/viewer/
H
A
D
SkottieSlide.cpp
16
#include "modules/audioplayer/
SkAudioPlayer
.h"
31
explicit Track(std::unique_ptr<
SkAudioPlayer
> player) : fPlayer(std::move(player)) {}
in Track()
53
const std::unique_ptr<
SkAudioPlayer
> fPlayer;
66
if (auto player =
SkAudioPlayer
::Make(std::move(data))) {
Completed in 4 milliseconds