• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/html/

Lines Matching +defs:mode +defs:function

1022     // Some of the code paths below this function dispatch the BeforeLoad event. This ASSERT helps
1048 // HTMLMediaElement::textTracksAreReady will need "... the text tracks whose mode was not in the
1055 if (track->mode() != TextTrack::disabledKeyword())
1071 // 3 - If the media element has a src attribute, then let mode be attribute.
1072 Mode mode = attribute;
1075 // element child, then let mode be children and let candidate be the first such
1078 mode = children;
1102 // 6 - If mode is attribute, then run these substeps
1103 if (mode == attribute) {
1151 // URL should have a function to create a url from a path, but it does not. This function
1153 // does not correctly escape '#' and '?'. This function works for our purposes because
1224 // Reset display mode to force a recalculation of what to show because we are resetting the player.
1543 // The text tracks of a media element are ready if all the text tracks whose mode was not
1595 // Mark this track as "configured" so configureTextTracks won't change the mode again.
1598 if (track->mode() != TextTrack::disabledKeyword() && trackIsLoaded)
1627 if (track->kind() != TextTrack::captionsKeyword() && track->kind() != TextTrack::subtitlesKeyword() && track->mode() == TextTrack::showingKeyword())
1646 if (track->mode() == TextTrack::disabledKeyword())
1663 if (track->mode() == TextTrack::disabledKeyword())
2432 // Don't skip calling the media engine if we are in poster mode because a seek should always
2630 // As of this writing, JavaScript garbage collection calls this function directly. In the past
2971 // Always show controls when in full screen mode.
3251 // 7. Set the new text track's mode to the mode consistent with the user's preferences and the requirements of
3475 // ... its text track mode to the text track hidden mode, and its text track list of cues to an empty list ...
3604 if (m_processingPreferenceChange && textTrack->mode() == TextTrack::showingKeyword())
3615 // or captions whose text track mode is showing
3619 // text tracks with a text track kind of chapters whose text track mode is showing
3620 // Let the text track mode be showing.
3636 // element's list of text tracks whose text track mode is showing or showing by default
3637 // Let the text track mode be showing by default.
3836 if (!currentGroup->visibleTrack && textTrack->mode() == TextTrack::showingKeyword())
4319 LOG(Media, "HTMLMediaElement::mediaPlayerFirstVideoFrameAvailable(%p) - current display mode = %i", this, (int)displayMode());
5253 if (m_textTracks->item(i)->mode() == TextTrack::showingKeyword()) {
5312 void HTMLMediaElement::markCaptionAndSubtitleTracksAsUnconfigured(ReconfigureMode mode)
5335 if (mode == Immediately)
5593 const AtomicString& mode = trackElement.track()->mode();
5596 if (TextTrack::hiddenKeyword() == mode)
5598 else if (TextTrack::disabledKeyword() == mode)
5600 else if (TextTrack::showingKeyword() == mode)
5879 JSC::JSObject* function = functionValue.toObject(exec);
5881 JSC::CallType callType = function->methodTable()->getCallData(function, callData);
5885 JSC::JSValue controllerValue = JSC::call(exec, function, callType, callData, globalObject, argList);