OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TrackBase
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/track/
TrackBase.h
34
class
TrackBase
: public RefCounted<
TrackBase
>, public EventTargetWithInlineData {
35
REFCOUNTED_EVENT_TARGET(
TrackBase
);
37
virtual ~
TrackBase
() { }
43
explicit
TrackBase
(Type type) : m_type(type) { }
TrackEvent.h
30
#include "core/html/track/
TrackBase
.h"
37
RefPtr<
TrackBase
> track;
56
TrackBase
* track() const { return m_track.get(); }
62
RefPtr<
TrackBase
> m_track;
TextTrack.cpp
99
:
TrackBase
(
TrackBase
::TextTrack)
TextTrack.h
31
#include "core/html/track/
TrackBase
.h"
56
class TextTrack : public
TrackBase
, public ScriptWrappable {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8TrackEventCustom.cpp
35
#include "core/html/track/
TrackBase
.h"
43
TrackBase
* track = trackEvent->track();
51
case
TrackBase
::TextTrack:
55
case
TrackBase
::AudioTrack:
56
case
TrackBase
::VideoTrack:
/frameworks/av/services/audioflinger/
TrackBase.h
23
class
TrackBase
: public ExtendedAudioBufferProvider, public RefBase {
40
TrackBase
(ThreadBase *thread,
50
virtual ~
TrackBase
();
62
TrackBase
(const
TrackBase
&);
63
TrackBase
& operator = (const
TrackBase
&);
70
// but putting it in
TrackBase
avoids the complexity of virtual inheritance
118
/*const*/ sp<Client> mClient; // see explanation at ~
TrackBase
() why not const
RecordTracks.h
23
class RecordTrack : public
TrackBase
{
Threads.cpp
[
all
...]
Tracks.cpp
56
//
TrackBase
61
//
TrackBase
constructor must be called with AudioFlinger::mLock held
62
AudioFlinger::ThreadBase::
TrackBase
::
TrackBase
(
170
AudioFlinger::ThreadBase::
TrackBase
::~
TrackBase
()
198
void AudioFlinger::ThreadBase::
TrackBase
::releaseBuffer(AudioBufferProvider::Buffer* buffer)
214
status_t AudioFlinger::ThreadBase::
TrackBase
::setSyncEvent(const sp<SyncEvent>& event)
331
:
TrackBase
(thread, client, sampleRate, format, channelMask, frameCount, sharedBuffer,
594
mState =
TrackBase
::STOPPING_1
[
all
...]
PlaybackTracks.h
23
class Track : public
TrackBase
, public VolumeProvider {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h
56
class
TrackBase
;
88
bool get(const String&, RefPtr<
TrackBase
>&) const;
Dictionary.cpp
54
#include "core/html/track/
TrackBase
.h"
462
bool Dictionary::get(const String& key, RefPtr<
TrackBase
>& value) const
468
TrackBase
* source = 0;
Completed in 93 milliseconds