OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MIDIInput
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIInput.cpp
32
#include "modules/webmidi/
MIDIInput
.h"
40
MIDIInput
*
MIDIInput
::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version)
43
return adoptRefCountedGarbageCollectedWillBeNoop(new
MIDIInput
(access, id, manufacturer, name, version));
46
MIDIInput
::
MIDIInput
(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version)
51
void
MIDIInput
::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp)
67
void
MIDIInput
::trace(Visitor* visitor)
MIDIInput.h
41
class
MIDIInput
FINAL : public MIDIPort {
44
static
MIDIInput
* create(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version);
45
virtual ~
MIDIInput
() { }
50
virtual const AtomicString& interfaceName() const OVERRIDE { return EventTargetNames::
MIDIInput
; }
58
MIDIInput
(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version);
Completed in 96 milliseconds