HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 751 - 775 of 921) sorted by null

<<31323334353637

  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp 43 #include "Frame.h"
332 Frame* frame = document()->frame(); local
333 if (!frame)
350 Frame* frame = document()->frame(); local
351 FrameLoader* loader = frame ? frame->loader() : 0
393 Frame* frame = document()->frame(); local
699 Frame* frame = document()->frame(); local
752 Frame* frame = document()->frame(); local
1508 Frame* frame = document()->frame(); local
2411 Frame* frame = document()->frame(); local
2445 Frame* frame = document()->frame(); local
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
SampleView.java 126 Frame frame = null; field in class:SampleView.ViewContentProvider
130 frame = (Frame) newInput;
139 return frame.get().toArray();
586 manager.add(new Action("CodeGen Frame", Action.AS_PUSH_BUTTON)
593 new CodeGen().codeGenFrame((Frame) viewer.getInput());
594 // need to reload current frame
609 // need to reload current frame
665 final Frame frame = current.getFrame(frameNum.getSelection())
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 32 #include "Frame.h"
451 Frame* frame = element->document()->frame(); local
452 if (!frame)
460 form->origin = GURL(WTFStringToString16(frame->loader()->documentLoader()->url().string()));
461 form->action = GURL(WTFStringToString16(frame->document()->completeURL(element->action())));
561 void FormManager::ExtractForms(Frame* frame) {
563 ResetFrame(frame);
633 const Frame* frame = element->document()->frame(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
SampleView.java 126 Frame frame = null; field in class:SampleView.ViewContentProvider
129 frame = (Frame) newInput;
137 return frame.get().toArray();
577 manager.add(new Action("CodeGen Frame", Action.AS_PUSH_BUTTON)
584 new CodeGen().codeGenFrame((Frame) viewer.getInput());
585 // need to reload current frame
600 // need to reload current frame
655 final Frame frame = current.getFrame(frameNum.getSelection())
    [all...]
  /external/webkit/Source/WebCore/rendering/
HitTestResult.cpp 25 #include "Frame.h"
171 Frame* HitTestResult::targetFrame() const
176 Frame* frame = m_innerURLElement->document()->frame();
177 if (!frame)
180 return frame->tree()->find(m_innerURLElement->target());
188 Frame* frame = m_innerNonSharedNode->document()->frame();
    [all...]
RenderLayerCompositor.cpp 36 #include "Frame.h"
130 ASSERT(m_renderView->document()->frame());
132 && !m_renderView->document()->frame()->tree()->parent()) {
171 Frame* frame = m_renderView->frameView()->frame(); local
172 Page* page = frame ? frame->page() : 0;
201 Frame* frame = m_renderView->frameView()->frame() local
1828 Frame* frame = m_renderView->frameView()->frame(); local
1867 Frame* frame = m_renderView->frameView()->frame(); local
1915 Frame* frame = m_renderView->frameView() ? m_renderView->frameView()->frame() : 0; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGSVGElement.cpp 200 if (Frame* frame = document()->frame())
201 return frame->pageZoomFactor();
207 if (Frame* frame = document()->frame()) {
211 frame->setPageZoomFactor(scale);
242 document()->setWindowAttributeEventListener(eventNames().unloadEvent, createAttributeEventListener(document()->frame(), attr));
244 document()->setWindowAttributeEventListener(eventNames().resizeEvent, createAttributeEventListener(document()->frame(), attr))
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 35 #include "Frame.h"
126 const Frame* frame = m_webView->focusedWebCoreFrame(); local
127 if (!frame)
129 const Editor* editor = frame->editor();
134 const Document* document = frame->document();
141 // markers being deleted. Also, the Frame will decide not to do spellchecking
143 // to the Frame's behavior.
277 Frame* frame = m_webView->focusedWebCoreFrame() local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 354 void performDictionaryLookupForSelection(DictionaryPopupInfo::Type, WebCore::Frame*, const WebCore::VisibleSelection&);
363 void replaceSelectionWithText(WebCore::Frame*, const String&);
506 void performDictionaryLookupForRange(DictionaryPopupInfo::Type, WebCore::Frame*, WebCore::Range*, NSDictionary *options);
579 // The frame of the containing window in screen coordinates.
582 // The frame of the view in window coordinates.
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 424 Animation::Frame frame; local
425 frame.name = leaf;
426 frame.map = map;
428 part.frames.add(frame);
471 const Animation::Frame& frame(part.frames[j]);
474 glBindTexture(GL_TEXTURE_2D, frame.tid);
477 glGenTextures(1, &frame.tid);
478 glBindTexture(GL_TEXTURE_2D, frame.tid)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 97 static QString drtDescriptionSuitableForTestResult(WebCore::Frame* webCoreFrame)
99 QWebFrame* frame = QWebFramePrivate::kit(webCoreFrame); local
100 QString name = frame->frameName();
102 bool isMainFrame = frame == frame->page()->mainFrame();
105 return QString::fromLatin1("main frame \"%1\"").arg(name);
106 return QLatin1String("main frame");
109 return QString::fromLatin1("frame \"%1\"").arg(name);
110 return QLatin1String("frame (anonymous)");
113 static QString drtPrintFrameUserGestureStatus(WebCore::Frame* frame
    [all...]
  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 149 Operations and the Frame Buffer)
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 35 #import "Frame.h"
44 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
46 return ClipboardMac::create(Clipboard::CopyAndPaste, [NSPasteboard generalPasteboard], policy, frame);
  /external/webkit/Source/WebCore/page/
PageGroup.cpp 32 #include "Frame.h"
242 for (Frame* frame = p->mainFrame(); frame; frame = frame->tree()->traverseNext())
243 frame->document()->domWindow()->clearDOMStorage();
509 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 47 #import <WebCore/Frame.h>
99 title = UI_STRING_INTERNAL("Open Frame in New Window", "Open Frame in New Window context menu item");
  /external/webkit/Source/WebKit/mac/Misc/
WebElementDictionary.mm 39 #import <WebCore/Frame.h>
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 40 #import <WebCore/Frame.h>
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugDelegate.mm 35 #import <WebCore/Frame.h>
65 WebScriptCallFrame *caller; // previous stack frame
82 // One of these is created to represent each stack frame. Additionally, there is a "global"
83 // frame to represent the outermost scope. This global frame is always the last frame in
86 // The delegate can assign a "wrapper" to each frame object so it can relay calls through its
180 if (!scopeChain->next) // global frame
198 // Returns the name of the function for this frame, if available.
199 // Returns nil for anonymous functions and for the global frame
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.cpp 169 PassRefPtr<Frame> FrameLoaderClientWinCE::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement,
579 Frame* FrameLoaderClientWinCE::dispatchCreatePage(const NavigationAction&)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 40 #include <WebCore/Frame.h>
189 Frame* frame = m_page->corePage()->focusController()->focusedFrame(); local
190 if (!frame)
197 if (!frame->editor()->hasComposition() || frame->editor()->ignoreCompositionSelectionChange())
202 m_page->send(Messages::WebPageProxy::DidChangeCompositionSelection(frame->editor()->getCompositionSelection(start, end)));
300 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
309 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
321 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame()
    [all...]
  /system/media/mca/filterpacks/videosrc/java/
MediaSource.java 24 import android.filterfw.core.Frame;
73 /** Whether the filter will always wait for a new video frame, or whether it
74 * will output an old frame again if a new frame isn't available. Defaults
208 if (mLogVerbose) Log.v(TAG, "Processing new frame");
245 // Use last frame if paused, unless just starting playback, in which case
246 // we want at least one valid frame before pausing
249 if (mLogVerbose) Log.v(TAG, "Waiting for new frame");
259 throw new RuntimeException("Timeout waiting for new frame!");
271 if (mLogVerbose) Log.v(TAG, "Got new frame");
    [all...]
  /external/webkit/Source/WebCore/dom/
Document.cpp 69 #include "Frame.h"
340 Frame* frame = node->document()->frame(); local
341 if (!frame || !root)
344 return frame->editor()->shouldBeginEditing(rangeOfContents(root).get());
393 Document::Document(Frame* frame, const KURL& url, bool isXHTML, bool isHTML)
462 m_frame = frame;
466 // See fast/dom/early-frame-url.htm
2629 Frame* frame = this->frame(); local
2745 Frame* frame = this->frame(); local
4036 Frame* frame = document->frame(); local
    [all...]
  /external/libvpx/mkvparser/
mkvparser.cpp     [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 391 class TimeCtrl(wx.Frame):
394 wx.Frame.__init__(self, parent, -1)
536 class TestFrame(wx.Frame):
538 wx.Frame.__init__(self, parent, id, title, size=(350, 220))
JetPreview.py 35 class PreviewPlayer(wx.Frame):

Completed in 398 milliseconds

<<31323334353637