/external/webkit/WebKit/android/WebCoreSupport/ |
ChromeClientAndroid.cpp | 37 #include "Frame.h" 88 void ChromeClientAndroid::attachRootGraphicsLayer(WebCore::Frame* frame, WebCore::GraphicsLayer* layer) 92 WebViewCore::getWebViewCore(frame->view())->setUIRootLayer(0); 96 androidGraphicsLayer->setFrame(frame); 159 Page* ChromeClientAndroid::createWindow(Frame* frame, const FrameLoadRequest&, 162 ASSERT(frame); 164 if (frame->settings() && !(frame->settings()->supportMultipleWindows()) [all...] |
/external/webkit/WebCore/page/ |
Frame.cpp | 30 #include "Frame.h" 122 static WTF::RefCountedLeakCounter frameCounter("Frame"); 125 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement) 129 return ownerElement->document()->frame(); 132 Frame::Frame(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* frameLoaderClient) 144 , m_lifeSupportTimer(this, &Frame::lifeSupportTimerFired) 154 Frame* parent = parentFromOwnerElement(ownerElement); 192 Frame::~Frame() 1121 Frame* frame = *it; local [all...] |
Chrome.h | 41 class Frame; 71 void contentsSizeChanged(Frame*, const IntSize&) const; 92 Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&) const; 114 bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame); 118 void runJavaScriptAlert(Frame*, const String&); 119 bool runJavaScriptConfirm(Frame*, const String&); 120 bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result); 121 void setStatusbarText(Frame*, const String&); 133 void print(Frame*); [all...] |
/external/opencore/codecs_v2/video/m4v_h263/enc/include/ |
cvei.h | 30 @requirement CVEI will take an input frame in one of several format supported 68 /** Called when a packet or a frame of output bitstream is ready. */ 71 /** Called when the last packet of a frame of output bitstream is ready. */ 161 /** Specifies the cumulative frame rate in frame per second. IFrameRate[0] is for 166 the picture quality with the frame rate. Higher frame quality means lower frame rate. 167 Lower frame quality for higher frame rate.* [all...] |
/external/webkit/LayoutTests/http/tests/appcache/ |
remove-cache.html | 5 <li>Frame 1: Manifest is still available, so a new master resource is added to the cache. 6 <li>Frame 2: Manifest loading results in 404 response, so the cache group becomes obsolete, and an obsolete event is dispatched (because the document in frame was associated with a cache in the group). 7 <li>Frame 3: Manifest is still 404 - the document is never associated with a cache. 8 <li>Frame 4: Manifest is now available, so the document gets associated with a cache in a newly created group; the obsolete cache group is not affected. 35 // The frame will be associated to a cache, and its main resource will be added to the cache. 37 ifr.setAttribute("src", "resources/remove-cache-frame.html"); 48 // The frame will be associated to a cache, but update will obsolete it. 50 ifr.setAttribute("src", "resources/remove-cache-frame.html"); 63 // The frame will not be associated to a cache [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8BarInfoCustom.cpp | 47 Frame* frame = impl->frame(); local 50 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::locationbarIndex, wrapper); 53 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::menubarIndex, wrapper); 56 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::personalbarIndex, wrapper); 59 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::scrollbarsIndex, wrapper); 62 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::statusbarIndex, wrapper); 65 V8DOMWrapper::setHiddenWindowReference(frame, V8DOMWindow::toolbarIndex, wrapper);
|
V8DOMWindowCustom.cpp | 40 #include "Frame.h" 114 if (!V8BindingSecurity::canAccessFrame(V8BindingState::Only(), imp->frame(), true)) 129 ScheduledAction* action = new ScheduledAction(V8Proxy::context(imp->frame()), v8::Handle<v8::Function>::Cast(function), paramCount, params); 135 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot); 178 Frame* frame = V8DOMWindow::toNative(holder)->frame(); 179 if (!V8BindingSecurity::canAccessFrame(V8BindingState::Only(), frame, true)) 182 v8::Local<v8::Context> context = V8Proxy::context(frame); 199 Frame* frame = V8DOMWindow::toNative(holder)->frame() 440 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local 489 Frame* frame = window->frame(); local 577 Frame* frame = parent->frame(); local [all...] |
/external/webkit/WebCore/platform/ |
ContextMenu.cpp | 41 #include "Frame.h" 63 if (Frame* frame = node->document()->frame()) 64 if (Page* page = frame->page()) 245 static bool selectionContainsPossibleWord(Frame* frame) 248 for (TextIterator it(frame->selection()->toNormalizedRange().get()); !it.atEnd(); it.advance()) { 313 Frame* frame = node->document()->frame() [all...] |
/external/webkit/WebCore/platform/wx/ |
PasteboardWx.cpp | 31 #include "Frame.h" 53 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame) 56 wxTheClipboard->SetData( new wxTextDataObject(frame->selectedText()) ); 75 String Pasteboard::plainText(Frame* frame) 81 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, 100 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
|
/external/webkit/WebKit/win/Interfaces/ |
IWebFrame.idl | 70 @result The frame name. 77 @result Returns the WebView for the document that includes this frame. 84 @result The WebFrameView for this frame. 91 @abstract Returns the DOM document of the frame. 92 @description Returns nil if the frame does not contain a DOM document such as a standalone image. 99 @abstract Returns the frame element of the frame. 101 Returns nil if the frame is the main frame since there is no frame element for the frame in this case [all...] |
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
WorkQueueItemQt.cpp | 32 QWebFrame* findFrameNamed(const QString& frameName, QWebFrame* frame) 34 if (frame->frameName() == frameName) 35 return frame; 37 foreach (QWebFrame* childFrame, frame->childFrames()) 49 QWebFrame* frame = 0; local 52 frame = m_webPage->mainFrame(); 54 frame = findFrameNamed(t, m_webPage->mainFrame()); 56 if (!frame) 59 frame->load(url());
|
/external/sonivox/jet_tools/JetCreator/ |
JetHelp.py | 28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600))
variable 29 html1 = wx.html.HtmlWindow(frame, -1)
31 frame.Center()
32 frame.Show()
|
/external/webkit/WebCore/css/ |
Media.h | 35 static PassRefPtr<Media> create(Frame* frame) 37 return adoptRef(new Media(frame)); 47 Media(Frame*); 49 Frame* m_frame;
|
/external/webkit/WebCore/manual-tests/inspector/ |
dom-mutation.html | 3 document.getElementById("test").src = "resources/mutate-frame.html"; 7 document.getElementById("test").src = "resources/mutate-frame-2.html"; 25 <button onclick="test1()">Test Frame 1</button> 26 <button onclick="test2()">Test Frame 2</button> 29 <iframe id="test" src="resources/mutate-frame.html" width="200" height="300"></iframe>
|
/external/webkit/WebCore/manual-tests/ |
scrolling-nestedframesets.html | 11 <li>Place your mouse cursor over the leftmost frame below.</li> 12 <li>Try to scroll the contents of the frame up and down my using your mouse's scrollwheel.</li> 19 The contents of the frame each frame should scroll.</p> 22 The contents of each frame do NOT scroll.
|
Default-port-frame.html | 1 To run this test you will need to put this file and Default-port-frame-contents.html 2 on a webserver and then point your browser to http://localhost/Default-port-frame.html. 5 <iframe src="http://localhost:80/resources/Default-port-frame-contents.html"> </iframe>
|
autoscroll.html | 19 <p>Make the frame autoscroll by moving the mouse pointer outside of it while selecting. 20 Autoscrolling should stop when you release the mouse button outside the frame (in the main frame,
|
/sdk/draw9patch/src/com/android/draw9patch/ui/action/ |
ExitAction.java | 28 private JFrame frame; field in class:ExitAction 30 public ExitAction(JFrame frame) { 37 this.frame = frame; 41 frame.dispose();
|
OpenAction.java | 28 private MainFrame frame; field in class:OpenAction 30 public OpenAction(MainFrame frame) { 31 this.frame = frame; 41 executeBackgroundTask(frame.open(null));
|
SaveAction.java | 28 private MainFrame frame; field in class:SaveAction 30 public SaveAction(MainFrame frame) { 31 this.frame = frame; 41 executeBackgroundTask(frame.save());
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
EditorClientQt.cpp | 42 #include "Frame.h" 225 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame(); local 226 if (!frame->editor()->ignoreCompositionSelectionChange()) 259 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame(); local 260 if (m_inUndoRedo || (frame && !frame->editor()->lastEditCommand() /* HACK!! Don't recreate undos */)) { 358 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame() local 619 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame(); local [all...] |
/external/webkit/WebCore/storage/ |
StorageAreaImpl.cpp | 32 #include "Frame.h" 94 static bool privateBrowsingEnabled(Frame* frame) 97 // The frame pointer can be NULL in Chromium since this call is made in a different 98 // process from where the Frame object exists. Luckily, private browseing is 100 ASSERT(!frame); 103 return frame->page()->settings()->privateBrowsingEnabled(); 131 String StorageAreaImpl::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame) 137 if (privateBrowsingEnabled(frame)) { 200 StorageEventDispatcher::dispatch(String(), String(), String(), m_storageType, m_securityOrigin.get(), frame); local [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebDragClient.mm | 43 #import <WebCore/Frame.h> 55 static WebHTMLView *getTopHTMLView(Frame* frame) 57 ASSERT(frame); 58 ASSERT(frame->page()); 59 return (WebHTMLView*)[[kit(frame->page()->mainFrame()) frameView] documentView]; 85 void WebDragClient::startDrag(DragImageRef dragImage, const IntPoint& at, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag) 87 if (!frame) 90 RetainPtr<WebHTMLView> htmlView = (WebHTMLView*)[[kit(frame) frameView] documentView] [all...] |
/external/v8/test/mjsunit/ |
debug-evaluate-arguments.js | 35 function checkArguments(frame, names, values) { 37 assertEquals(argc, frame.argumentCount()); 40 assertEquals(names[i], frame.argumentName(i)); 42 assertEquals(void 0, frame.argumentName(i)); 46 assertEquals(values[i], frame.argumentValue(i).value()); 48 assertEquals(void 0, frame.argumentValue(i).value()); 57 // Frame 0 - called with less parameters than arguments. 58 checkArguments(exec_state.frame(0), ['x', 'y'], [1]); 60 // Frame 1 - called with more parameters than arguments. 61 checkArguments(exec_state.frame(1), ['x', 'y'], [1, 2, 3]) [all...] |
/external/webkit/WebCore/bindings/js/ |
ScriptEventListener.cpp | 38 #include "Frame.h" 65 if (Frame* frame = node->document()->frame()) { 66 ScriptController* scriptController = frame->script(); 86 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Frame* frame, Attribute* attr) 88 if (!frame) 98 ScriptController* scriptController = frame->script(); 108 sourceURL = frame->document()->url().string() [all...] |