OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VTTNodeType
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTElement.h
30
enum
VTTNodeType
{
44
static PassRefPtr<VTTElement> create(const
VTTNodeType
, Document*);
50
void setVTTNodeType(
VTTNodeType
type) { m_webVTTNodeType = static_cast<unsigned>(type); }
51
VTTNodeType
webVTTNodeType() const { return static_cast<
VTTNodeType
>(m_webVTTNodeType); }
74
VTTElement(
VTTNodeType
, Document*);
VTTElement.cpp
33
static const QualifiedName& nodeTypeToTagName(
VTTNodeType
nodeType)
67
VTTElement::VTTElement(
VTTNodeType
nodeType, Document* document)
74
PassRefPtr<VTTElement> VTTElement::create(
VTTNodeType
nodeType, Document* document)
81
RefPtr<VTTElement> clone = create(static_cast<
VTTNodeType
>(m_webVTTNodeType), &document());
VTTParser.cpp
521
static
VTTNodeType
tokenToNodeType(VTTToken& token)
561
VTTNodeType
nodeType = tokenToNodeType(m_token);
565
VTTNodeType
currentType = m_currentNode->isVTTElement() ? toVTTElement(m_currentNode.get())->webVTTNodeType() : VTTNodeTypeNone;
587
VTTNodeType
nodeType = tokenToNodeType(m_token);
596
VTTNodeType
currentType = toVTTElement(m_currentNode.get())->webVTTNodeType();
Completed in 100 milliseconds