HomeSort by relevance Sort by last modified time
    Searched defs:frame (Results 1 - 25 of 341) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
V8HTMLDataGridElementCustom.cpp 61 Frame *frame = imp->document()->frame(); local
62 dataSource = V8DataGridDataSource::create(value, frame);
V8HTMLFrameElementCustom.cpp 46 HTMLFrameElement* frame = V8HTMLFrameElement::toNative(info.Holder()); local
49 if (!V8BindingSecurity::allowSettingFrameSrcToJavascriptUrl(V8BindingState::Only(), frame, srcValue))
52 frame->setAttribute(srcAttr, srcValue);
57 HTMLFrameElement* frame = V8HTMLFrameElement::toNative(info.Holder()); local
60 if (!V8BindingSecurity::allowSettingFrameSrcToJavascriptUrl(V8BindingState::Only(), frame, locationValue))
63 frame->setLocation(locationValue);
V8NavigatorCustom.cpp 54 V8DOMWrapper::setHiddenWindowReference(impl->frame(), V8DOMWindow::navigatorIndex, wrapper);
72 Frame* frame = V8Proxy::retrieveFrameForCurrentContext(); local
73 return V8CustomApplicationInstalledCallback::create(value, frame);
V8DatabaseCustom.cpp 57 Frame* frame = V8Proxy::retrieveFrameForCurrentContext(); local
58 if (!frame)
66 callback = V8CustomSQLTransactionCallback::create(args[2], frame);
74 errorCallback = V8CustomSQLTransactionErrorCallback::create(args[3], frame);
82 successCallback = V8CustomVoidCallback::create(args[4], frame);
100 Frame* frame = V8Proxy::retrieveFrameForCurrentContext(); local
101 if (!frame)
104 RefPtr<V8CustomSQLTransactionCallback> callback = V8CustomSQLTransactionCallback::create(args[0], frame);
    [all...]
V8HTMLFormElementCustom.cpp 88 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local
89 if (!frame)
92 form->submit(frame);
  /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/webkit/WebKitTools/wx/browser/
browser.cpp 54 wxWebBrowserShell *frame = new wxWebBrowserShell(_T("wxWebKit Test App")); local
57 frame->ShowDebugMenu(true);
60 wxWebSettings settings = frame->webview->GetWebSettings();
66 frame->CentreOnScreen();
67 frame->Show(true);
  /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/wml/
WMLErrorHandling.cpp 28 #include "Frame.h"
53 Frame* frame = doc->frame(); local
54 if (!frame)
57 DOMWindow* domWindow = frame->domWindow();
  /dalvik/vm/hprof/
HprofStack.h 27 StackFrame frame; member in struct:__anon698
  /external/webkit/WebCore/bindings/js/
JSHTMLFrameSetElementCustom.cpp 46 Node* frame = frameSet->children()->namedItem(propertyName); local
47 return frame && frame->hasTagName(frameTag);
55 Node* frame = element->children()->namedItem(propertyName); local
56 if (Document* doc = static_cast<HTMLFrameElement*>(frame)->contentDocument()) {
57 if (JSDOMWindowShell* window = toJSDOMWindowShell(doc->frame(), currentWorld(exec)))
  /external/webkit/WebCore/bindings/v8/
V8Helpers.cpp 49 return V8Proxy::mainWorldContext(object->rootObject->frame());
55 Frame* frame = object->rootObject->frame(); local
56 return V8Proxy::retrieve(frame);
  /external/webkit/WebCore/editing/
RemoveFormatCommand.cpp 32 #include "Frame.h"
51 Frame* frame = document()->frame(); local
54 String string = plainText(frame->selection()->selection().toNormalizedRange().get());
58 Node* root = frame->selection()->rootEditableElement();
78 frame->setTypingStyle(defaultStyle.get());
  /external/webkit/WebCore/page/
BarInfo.cpp 33 #include "Frame.h"
38 BarInfo::BarInfo(Frame* frame, Type type)
39 : m_frame(frame)
44 Frame* BarInfo::frame() const function in class:WebCore::BarInfo
Location.h 37 class Frame;
43 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); }
45 Frame* frame() const { return m_frame; } function in class:WebCore::Location
62 Location(Frame*);
66 Frame* m_frame;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
FrameLayoutGravity.java 17 package android.widget.layout.frame;
FrameLayoutMargin.java 17 package android.widget.layout.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/WebCore/platform/qt/
ScreenQt.cpp 33 #include "Frame.h"
46 Frame* frame = (page ? page->mainFrame() : 0); local
47 FrameView* frameView = (frame ? frame->view() : 0);
  /external/webkit/WebCore/rendering/
RenderApplet.cpp 25 #include "Frame.h"
73 Frame* frame = document()->frame(); local
74 ASSERT(frame);
75 setWidget(frame->loader()->createJavaAppletWidget(IntSize(contentWidth, contentHeight), element, m_args));
  /external/webkit/WebCore/storage/
Storage.h 37 class Frame;
44 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
56 Frame* frame() { return m_frame; } function in class:WebCore::Storage
60 Storage(Frame*, PassRefPtr<StorageArea>);
62 Frame* m_frame;
  /external/webkit/WebKit/android/jni/
WebFrameView.cpp 33 #include "Frame.h"
58 WebCore::Frame* frame = mFrameView->frame(); local
60 if (NULL == frame->contentRenderer()) {
66 } else if (frame->tree()->parent()) {
71 // In Frame::markAllMatchesForText(), it does a fake paint. So we need
78 // Grab the intersection of transRect and the frame's bounds.
83 // Move the transRect into the frame's local coordinates.

Completed in 3173 milliseconds

1 2 3 4 5 6 7 8 91011>>