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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
reload-expected.txt 5 Frame loaded
6 Frame loaded
destroyed-frame-expected.txt 1 Test for bug 33813: Crash when using DOMApplicationCache from a destroyed frame.
  /external/webkit/WebCore/page/
FrameTree.h 27 class Frame;
31 FrameTree(Frame* thisFrame, Frame* parentFrame)
44 Frame* parent(bool checkForDisconnectedFrame = false) const;
45 void setParent(Frame* parent) { m_parent = parent; }
47 Frame* nextSibling() const { return m_nextSibling.get(); }
48 Frame* previousSibling() const { return m_previousSibling; }
49 Frame* firstChild() const { return m_firstChild.get(); }
50 Frame* lastChild() const { return m_lastChild; }
53 bool isDescendantOf(const Frame* ancestor) const
    [all...]
FrameTree.cpp 23 #include "Frame.h"
38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
48 m_name = AtomicString(); // Remove our old frame name so it's not considered in uniqueChildName.
57 Frame* FrameTree::parent(bool checkForDisconnectedFrame) const
64 void FrameTree::appendChild(PassRefPtr<Frame> child)
69 Frame* oldLast = m_lastChild;
83 void FrameTree::removeChild(Frame* child)
91 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
92 Frame*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->tree()->m_nextSibling->tree()->m_previousSibling;
109 // unique within the frame tree. The string we generate includes a "path" of name
121 Frame* frame; local
247 Frame* frame = m_thisFrame; local
302 Frame* frame = m_thisFrame; local
    [all...]
ContextMenuController.cpp 44 #include "Frame.h"
118 if (Frame* frame = event->target()->toNode()->document()->frame())
119 result = frame->eventHandler()->hitTestResultAtPoint(mouseEvent->absoluteLocation(), false);
137 static void openNewWindow(const KURL& urlToLoad, Frame* frame)
139 if (Page* oldPage = frame->page()) {
141 if (Page* newPage = oldPage->chrome()->createWindow(frame, FrameLoadRequest(ResourceRequest(urlToLoad, frame->loader()->outgoingReferrer())), features)
162 Frame* frame = result.innerNonSharedNode()->document()->frame(); local
    [all...]
  /external/webkit/WebCore/editing/
EditorCommand.cpp 43 #include "Frame.h"
66 bool (*execute)(Frame*, Event*, EditorCommandSource, const String&);
67 bool (*isSupported)(Frame*, EditorCommandSource);
68 bool (*isEnabled)(Frame*, Event*, EditorCommandSource);
69 TriState (*state)(Frame*, Event*);
70 String (*value)(Frame*, Event*);
86 static Frame* targetFrame(Frame* frame, Event* event)
89 return frame;
    [all...]
  /external/webkit/WebCore/manual-tests/qt/
plugin-sibling-frame.html 2 <head><title>Move the frame to hide the plugin fully</title></head>
4 <frame src="plugin-sibling-frame-include.html">
  /external/webkit/WebCore/manual-tests/resources/
nestedframesets.html 2 <frame src="testframeset.html" >
3 <frame src="lorem-text.html">
testframeset.html 2 <frame src="testframe-link_text.html" >
3 <frame src="http://www.google.com">
frame1.html 6 Frame 1
frame2.html 6 Frame 2
  /external/webkit/WebKit/qt/tests/qwebpage/resources/
index.html 2 <frame src="frame_a.html" name="frame_a">
3 <frame src="frame_b.html" name="frame_b">
  /external/webkit/WebKit/qt/tests/qwebview/resources/
index.html 2 <frame src="frame_a.html" name="frame_a">
3 <frame src="frame_b.html" name="frame_b">
  /external/webkit/LayoutTests/http/tests/appcache/resources/
xhr-foreign-resource.manifest 2 xhr-foreign-resource-frame.html
  /external/webkit/WebCore/bindings/js/
JSLocationCustom.cpp 28 #include "Frame.h"
59 Frame* frame = impl()->frame(); local
60 if (!frame) {
71 if (allowsAccessFromFrame(exec, frame, message))
93 printErrorMessageForFrame(frame, message);
100 Frame* frame = impl()->frame(); local
139 Frame* frame = impl()->frame(); local
199 Frame* frame = impl()->frame(); local
214 Frame* frame = impl()->frame(); local
228 Frame* frame = impl()->frame(); local
239 Frame* frame = impl()->frame(); local
250 Frame* frame = impl()->frame(); local
267 Frame* frame = impl()->frame(); local
278 Frame* frame = impl()->frame(); local
289 Frame* frame = impl()->frame(); local
306 Frame* frame = impl()->frame(); local
323 Frame* frame = impl()->frame(); local
334 Frame* frame = impl()->frame(); local
352 Frame* frame = impl()->frame(); local
    [all...]
  /external/webkit/WebKit/wx/
WebFrame.cpp 33 #include "Frame.h"
91 RefPtr<WebCore::Frame> newFrame = WebCore::Frame::create(container->m_impl->page, parentFrame, loaderClient);
93 m_impl->frame = newFrame.get();
100 parentFrame->document()->frame()->tree()->appendChild(newFrame.get());
106 m_impl->frame->ref();
108 m_impl->frame->init();
119 WebCore::Frame* wxWebFrame::GetFrame()
122 return m_impl->frame;
129 if (m_impl->frame && m_impl->frame->loader()
    [all...]
  /external/quake/quake/src/QW/progs/
sprites.qc 7 $frame 24 24 56 56
8 $frame 120 24 56 56
9 $frame 216 24 56 56
10 $frame 24 88 56 56
11 $frame 120 88 56 56
12 $frame 216 88 56 56
18 $frame 16 16 16 16
19 $frame 40 16 16 16
25 $frame 104 32 32 32
  /external/webkit/WebCore/manual-tests/
input-type-file-autocomplete-refresh.html 6 <frame src="./input-type-file-autocomplete-frame-1.html">
7 <frame src="./input-type-file-autocomplete-frame-2.html">
  /external/webkit/WebKit/gtk/webkit/
webkitwebframe.cpp 69 * contains the content of one URI. The URI and name of the frame can
76 * /<!-- -->* Get the frame from the #WebKitWebView *<!-- -->/
77 * WebKitWebFrame *frame = webkit_web_view_get_main_frame (WEBKIT_WEB_VIEW(my_view));
78 * g_print("The URI of this frame is '%s'", webkit_web_frame_get_uri (frame));
113 WebKitWebFrame* frame = WEBKIT_WEB_FRAME(object); local
117 g_value_set_string(value, webkit_web_frame_get_name(frame));
120 g_value_set_string(value, webkit_web_frame_get_title(frame));
123 g_value_set_string(value, webkit_web_frame_get_uri(frame));
126 g_value_set_enum(value, webkit_web_frame_get_load_status(frame));
156 WebKitWebFrame* frame = WEBKIT_WEB_FRAME(object); local
394 WebKitWebFrame* frame = WEBKIT_WEB_FRAME(g_object_new(WEBKIT_TYPE_WEB_FRAME, NULL)); local
410 WebKitWebFrame* frame = WEBKIT_WEB_FRAME(g_object_new(WEBKIT_TYPE_WEB_FRAME, NULL)); local
    [all...]
  /external/webkit/WebCore/dom/
Touch.cpp 36 static int contentsX(Frame* frame)
38 if (!frame)
40 FrameView* frameView = frame->view();
43 return frameView->scrollX() / frame->pageZoomFactor();
46 static int contentsY(Frame* frame)
48 if (!frame)
50 FrameView* frameView = frame->view();
53 return frameView->scrollY() / frame->pageZoomFactor()
    [all...]
  /external/webkit/WebCore/css/
MediaQueryEvaluator.cpp 36 #include "Frame.h"
60 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
99 MediaQueryEvaluator:: MediaQueryEvaluator(const String& acceptedMediaType, Frame* frame, RenderStyle* style)
101 , m_frame(frame)
216 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
218 int bitsPerComponent = screenDepthPerComponent(frame->page()->mainFrame()->view());
226 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op
    [all...]
  /external/v8/src/ia32/
jump-target-ia32.cc 44 // Live non-frame registers are not allowed at unconditional jumps
50 // Backward jump. There is an expected frame to merge to.
52 cgen()->frame()->PrepareMergeTo(entry_frame_);
53 cgen()->frame()->MergeTo(entry_frame_);
57 // Forward jump with a preconfigured entry frame. Assert the
58 // current frame matches the expected one and jump to the block.
59 ASSERT(cgen()->frame()->Equals(entry_frame_));
63 // Forward jump. Remember the current frame and emit a jump to
65 AddReachingFrame(cgen()->frame());
79 // Backward branch. We have an expected frame to merge to on th
202 VirtualFrame* frame = cgen()->frame(); local
226 VirtualFrame* frame = reaching_frames_[0]; local
277 VirtualFrame* frame = reaching_frames_[i]; local
    [all...]
  /external/v8/src/x64/
jump-target-x64.cc 44 // Live non-frame registers are not allowed at unconditional jumps
50 // Backward jump. There is an expected frame to merge to.
52 cgen()->frame()->PrepareMergeTo(entry_frame_);
53 cgen()->frame()->MergeTo(entry_frame_);
57 // Forward jump with a preconfigured entry frame. Assert the
58 // current frame matches the expected one and jump to the block.
59 ASSERT(cgen()->frame()->Equals(entry_frame_));
63 // Forward jump. Remember the current frame and emit a jump to
65 AddReachingFrame(cgen()->frame());
79 // Backward branch. We have an expected frame to merge to on th
202 VirtualFrame* frame = cgen()->frame(); local
226 VirtualFrame* frame = reaching_frames_[0]; local
277 VirtualFrame* frame = reaching_frames_[i]; local
    [all...]
  /external/webkit/WebKit/chromium/src/
StorageAreaProxy.cpp 36 #include "Frame.h"
74 String StorageAreaProxy::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame)
78 m_storageArea->setItem(key, value, frame->document()->url(), quotaException, oldValue);
82 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame);
86 String StorageAreaProxy::removeItem(const String& key, Frame* frame)
89 m_storageArea->removeItem(key, frame->document()->url(), oldValue);
91 storageEvent(key, oldValue, String(), m_storageType, frame->document()->securityOrigin(), frame)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebFrameLoadDelegate.idl 43 When a data source of a frame starts to load, the data source is considered "provisional".
45 so the contents of the frame will not be lost if the new data source fails to successfully load.
59 @abstract Notifies the delegate that the provisional load of a frame has started
61 @param frame The frame for which the provisional load has started
62 @discussion This method is called after the provisional data source of a frame
64 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame;
66 HRESULT didStartProvisionalLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
72 @param frame The frame for which the redirect occurre
    [all...]

Completed in 143 milliseconds

1 2 3 4 5 6 7 8 91011>>