Searched defs:frame (Results 151 - 175 of 725) sorted by relevance

1234567891011>>

/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DForceRepaint.cpp44 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
H A DFrameMIMETypeHTML.cpp37 static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
39 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
45 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
49 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
51 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
H A DFrameMIMETypePNG.cpp37 static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
39 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
45 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
49 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
51 WKRetainPtr<WKStringRef> wkMIME(AdoptWK, WKFrameCopyMIMEType(frame));
H A DInjectedBundleBasic.cpp46 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
H A DHideFindIndicator.cpp37 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_frame_view_chromeos.cc5 #include "chrome/browser/chromeos/frame/browser_frame_view_chromeos.h"
7 #include "chrome/browser/ui/views/frame/browser_view.h"
28 BrowserFrame* frame, BrowserView* browser_view)
29 : OpaqueBrowserFrameView(frame, browser_view) {
51 views::NonClientView* nc_view = frame()->GetWindow()->non_client_view();
27 BrowserFrameViewChromeos( BrowserFrame* frame, BrowserView* browser_view) argument
/external/chromium/net/spdy/
H A Dspdy_protocol_test.cc70 SpdyFrame frame(SpdyFrame::size());
71 frame.set_length(12345);
72 frame.set_flags(10);
73 EXPECT_EQ(12345u, frame.length());
74 EXPECT_EQ(10u, frame.flags());
75 EXPECT_FALSE(frame.is_control_frame());
77 frame.set_length(0);
78 frame.set_flags(10);
79 EXPECT_EQ(0u, frame.length());
80 EXPECT_EQ(10u, frame
145 SpdyDataFrame frame; local
237 SpdyDataFrame frame; local
256 SpdySynStreamControlFrame* frame = local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DTestCanvas.java59 private static JFrame frame; field in class:TestCanvas
76 frame.getContentPane().add(tabbedPane);
83 frame.setJMenuBar(menuBar);
145 SwingUtilities.updateComponentTreeUI(frame);
146 frame.pack();
154 Dimension preferred = frame.getPreferredSize();
155 frame.setPreferredSize(new Dimension(0, 0));
156 frame.pack();
157 frame.setPreferredSize(preferred);
170 frame
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java59 // of the frame list. So we'll use a linear search for small animations
60 // and only pull the binary search out when the frame count is large.
69 AnimationFrame frame = frames.get(x);
70 currentTime += frame.holdTime;
72 result = frame;
83 public void addFrame(AnimationFrame frame) { argument
85 mFrames.add(frame);
86 mLength += frame.holdTime;
/external/valgrind/main/none/tests/
H A Dthread-exits.c49 volatile char frame[FRAME]; local
51 memset((char *)frame, 0xff, sizeof(frame));
/external/webkit/Source/WebCore/bindings/js/
H A DJSDocumentCustom.cpp65 Frame* frame = static_cast<Document*>(impl())->frame(); local
66 if (!frame)
69 Location* location = frame->domWindow()->location();
80 Frame* frame = static_cast<Document*>(impl())->frame(); local
81 if (!frame)
86 Frame* lexicalFrame = asJSDOMWindow(exec->lexicalGlobalObject())->impl()->frame();
88 // IE and Mozilla both resolve the URL relative to the source frame,
89 // not the target frame
[all...]
H A DScriptState.cpp63 ScriptState* mainWorldScriptState(Frame* frame) argument
65 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
76 Frame* frame = document->frame();
77 if (!frame)
79 if (!frame->script()->canExecuteScripts(NotAboutToExecuteScript))
81 return frame->script()->globalObject(world)->globalExec();
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptEventListener.cpp56 if (Frame* frame = node->document()->frame()) {
57 ScriptController* scriptController = frame->script();
68 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame* frame, Attribute* attr) argument
70 if (!frame)
77 ScriptController* scriptController = frame->script();
82 String sourceURL = frame->document()->url().string();
83 return V8LazyEventListener::create(attr->localName().string(), frame->document()->isSVGDocument(), attr->value(), sourceURL, position, WorldContextHandle(UseMainWorld));
/external/webkit/Source/WebCore/history/
H A DCachedFrame.cpp63 CachedFrameBase::CachedFrameBase(Frame* frame) argument
64 : m_document(frame->document())
65 , m_documentLoader(frame->loader()->documentLoader())
66 , m_view(frame->view())
67 , m_mousePressNode(frame->eventHandler()->mousePressNode())
68 , m_url(frame->document()->url())
69 , m_isMainFrame(!frame->tree()->parent())
86 Frame* frame = m_view->frame(); local
87 m_cachedFrameScriptData->restore(frame);
126 CachedFrame(Frame* frame) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DPluginDocument.h36 static PassRefPtr<PluginDocument> create(Frame* frame, const KURL& url) argument
38 return adoptRef(new PluginDocument(frame, url));
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMStorageResource.cpp51 InspectorDOMStorageResource::InspectorDOMStorageResource(Storage* domStorage, bool isLocalStorage, Frame* frame) argument
55 , m_frame(frame)
62 bool InspectorDOMStorageResource::isSameHostAndType(Frame* frame, bool isLocalStorage) const argument
64 return equalIgnoringCase(m_frame->document()->securityOrigin()->host(), frame->document()->securityOrigin()->host()) && m_isLocalStorage == isLocalStorage;
109 bool isLocalStorage = (storage->frame()->domWindow()->localStorage(ec) == storage && !ec);
110 if (isSameHostAndType(storage->frame(), isLocalStorage))
H A DInspectorDOMStorageResource.h51 static PassRefPtr<InspectorDOMStorageResource> create(Storage* domStorage, bool isLocalStorage, Frame* frame) argument
53 return adoptRef(new InspectorDOMStorageResource(domStorage, isLocalStorage, frame));
/external/webkit/Source/WebCore/page/
H A DHistory.cpp40 History::History(Frame* frame) argument
41 : m_frame(frame)
45 Frame* History::frame() const function in class:WebCore::History
98 Frame* activeFrame = static_cast<Document*>(context)->frame();
/external/webkit/Source/WebCore/platform/qt/
H A DDragDataQt.cpp84 String DragData::asPlainText(Frame* frame) const
93 return asURL(frame, DoNotConvertFilenames, 0);
132 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const argument
135 return createFragmentFromMarkup(frame->document(), m_platformDragData->html(), "", FragmentScriptingNotAllowed);
/external/webkit/Source/WebCore/plugins/
H A DDOMPlugin.cpp28 DOMPlugin::DOMPlugin(PluginData* pluginData, Frame* frame, unsigned index) argument
30 , m_frame(frame)
H A DDOMPluginArray.cpp31 DOMPluginArray::DOMPluginArray(Frame* frame) argument
32 : m_frame(frame)
/external/webkit/Source/WebCore/rendering/
H A DRenderApplet.cpp78 Frame* frame = this->frame(); local
79 ASSERT(frame);
80 setWidget(frame->loader()->subframeLoader()->createJavaAppletWidget(IntSize(contentWidth, contentHeight), element, m_args));
/external/webkit/Source/WebCore/storage/
H A DStorage.cpp40 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea) argument
42 return adoptRef(new Storage(frame, storageArea));
45 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea) argument
46 : m_frame(frame)
/external/webkit/Source/WebCore/svg/
H A DSVGDocument.cpp38 SVGDocument::SVGDocument(Frame* frame, const KURL& url) argument
39 : Document(frame, url, false, false)
/external/webkit/Source/WebKit/chromium/src/
H A DDragClientImpl.cpp77 Frame* frame,
80 // Add a ref to the frame just in case a load occurs mid-drag.
81 RefPtr<Frame> frameProtector = frame;
73 startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool isLinkDrag) argument

Completed in 2488 milliseconds

1234567891011>>