HomeSort by relevance Sort by last modified time
    Searched refs:frame (Results 76 - 100 of 1081) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/page/
BarInfo.h 37 class Frame;
43 static PassRefPtr<BarInfo> create(Frame* frame, Type type) { return adoptRef(new BarInfo(frame, type)); }
45 Frame* frame() const;
53 BarInfo(Frame*, Type);
54 Frame* m_frame;
History.h 35 class Frame;
42 static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); }
44 Frame* frame() const;
59 History(Frame*);
63 Frame* m_frame;
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;
  /external/chromium/net/flip/
flip_framer.cc 20 // The initial size of the control frame buffer; this is used internally
23 // The maximum size of the control frame buffer that we support.
190 // control frame has too-large payload
223 // Check for an empty data frame.
237 // This is just a sanity check for help debugging early frame errors.
240 "Unexpectedly large frame. Flip session is likely corrupt.";
257 // Do some sanity checking on the control frame sizes.
361 // The data frame was not compressed.
373 // frame, inform the visitor of EOF via a 0-length data frame
436 FlipFrameBuilder frame; local
    [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMWindowBase.cpp 30 #include "Frame.h"
84 return String::format("Unsafe JavaScript attempt to access frame with URL %s from frame with URL %s. Domains, protocols and ports must match.\n",
90 printErrorMessageForFrame(impl()->frame(), message);
96 // frame does not destroy it
97 if (Frame *frame = impl()->frame())
98 frame->keepAlive();
107 Frame* frame = impl()->frame()
    [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/webkit/WebKit/qt/Api/
qwebframe.cpp 31 #include "Frame.h"
98 Frame* frame = QWebFramePrivate::core(qframe); local
99 InspectorController* controller = frame->page()->inspectorController();
114 Frame* frame = QWebFramePrivate::core(qframe); local
115 if (!frame)
118 AnimationController* controller = frame->animation();
122 Document* doc = frame->document();
134 Frame* frame = QWebFramePrivate::core(qframe) local
180 Frame* frame = QWebFramePrivate::core(qframe); local
193 Frame* frame = QWebFramePrivate::core(qFrame); local
215 Frame* frame = QWebFramePrivate::core(qFrame); local
225 Frame* frame = QWebFramePrivate::core(qFrame); local
239 Frame* frame = QWebFramePrivate::core(qFrame); local
247 Frame* frame = QWebFramePrivate::core(qFrame); local
1086 Frame* frame = d->frame; local
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
FrameLoadDelegate.mm 82 return [NSString stringWithFormat:@"main frame \"%@\"", name];
84 return @"main frame";
87 return [NSString stringWithFormat:@"frame \"%@\"", name];
89 return @"frame (anonymous)";
143 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
146 NSString *string = [NSString stringWithFormat:@"%@ - didStartProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
150 ASSERT([frame provisionalDataSource]);
154 topLoadingFrame = frame;
157 NSString *string = [NSString stringWithFormat:@"%@ - stopping load in didStartProvisionalLoadForFrame callback", [frame _drt_descriptionSuitableForTestResult]];
159 [frame stopLoading]
    [all...]
  /dalvik/vm/mterp/x86-atom/
stub.S 20 SAVE_PC_FP_TO_GLUE %edx # save program counter and frame pointer
24 LOAD_PC_FP_FROM_GLUE # restore program counter and frame pointer
  /external/webkit/WebCore/bindings/v8/
V8Utilities.cpp 37 #include "Frame.h"
46 #include "Frame.h"
99 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local
100 return frame && frame->script()->processingUserGesture();
103 bool shouldAllowNavigation(Frame* frame)
105 Frame* callingFrame = V8Proxy::retrieveFrameForCallingContext();
106 return callingFrame && callingFrame->loader()->shouldAllowNavigation(frame);
112 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local
    [all...]
V8DataGridDataSource.cpp 38 #include "Frame.h"
45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
47 , m_frame(frame)
  /external/webkit/WebCore/bindings/v8/custom/
V8DocumentLocationCustom.cpp 28 #include "Frame.h"
38 if (!document->frame())
41 DOMWindow* window = document->frame()->domWindow();
48 if (!document->frame())
51 DOMWindow* window = document->frame()->domWindow();
V8LocationCustom.cpp 36 #include "Frame.h"
58 // Since JSC and V8 have different mechanisms for getting at the calling frame,
69 Frame* frame = imp->frame(); local
70 if (!frame)
73 KURL url = frame->loader()->url();
82 navigateIfAllowed(frame, url, false, false);
92 Frame* frame = imp->frame() local
112 Frame* frame = imp->frame(); local
128 Frame* frame = imp->frame(); local
149 Frame* frame = imp->frame(); local
166 Frame* frame = imp->frame(); local
183 Frame* frame = imp->frame(); local
200 Frame* frame = imp->frame(); local
273 Frame* frame = imp->frame(); local
288 Frame* frame = imp->frame(); local
309 Frame* frame = imp->frame(); local
    [all...]
  /external/webkit/WebCore/platform/win/
WidgetWin.cpp 85 Frame* frame = static_cast<FrameView*>(view)->frame(); local
86 if (!frame) {
91 Page* page = frame->page();
  /external/webkit/WebCore/wml/
WMLErrorHandling.cpp 28 #include "Frame.h"
53 Frame* frame = doc->frame(); local
54 if (!frame)
57 DOMWindow* domWindow = frame->domWindow();
  /external/webkit/WebKit/mac/DefaultDelegates/
WebDefaultPolicyDelegate.m 54 - (void)webView: (WebView *)wv unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
56 LOG_ERROR("called unableToImplementPolicyWithError:%@ inFrame:%@", error, frame);
62 frame:(WebFrame *)frame
81 frame:(WebFrame *)frame
86 if ([WebView _canHandleRequest:request forMainFrame:frame == [wv mainFrame]]) {
  /sdk/draw9patch/src/com/android/draw9patch/
Application.java 48 MainFrame frame = new MainFrame(arg);
49 frame.setDefaultCloseOperation(MainFrame.EXIT_ON_CLOSE);
50 frame.setLocationRelativeTo(null);
51 frame.setVisible(true);
  /external/webkit/WebCore/page/win/
FrameCGWin.cpp 53 static HBITMAP imageFromRect(const Frame* frame, IntRect& ir)
55 PaintBehavior oldPaintBehavior = frame->view()->paintBehavior();
56 frame->view()->setPaintBehavior(oldPaintBehavior | PaintBehaviorFlattenCompositingLayers);
74 drawRectIntoContext(ir, frame->view(), &gc);
80 frame->view()->setPaintBehavior(oldPaintBehavior);
85 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText)
87 frame->document()->updateLayout();
89 frame->view()->setPaintBehavior(PaintBehaviorSelectionOnly | (forceBlackText ? PaintBehaviorForceBlackTe (…)
    [all...]
FrameWin.cpp 39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight)
41 PrintContext printContext(frame);
48 DragImageRef Frame::dragImageForSelection()
  /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/loader/
PluginDocument.cpp 30 #include "Frame.h"
92 m_embedElement->setAttribute(typeAttr, m_doc->frame()->loader()->responseMIMEType());
105 if (Frame* frame = m_doc->frame()) {
106 Settings* settings = frame->settings();
111 frame->loader()->client()->redirectDataToPlugin(renderer->widget());
112 frame->loader()->activeDocumentLoader()->mainResourceLoader()->setShouldBufferData(false);
139 PluginDocument::PluginDocument(Frame* frame)
    [all...]
  /external/webkit/WebCore/svg/
SVGDocument.h 36 static PassRefPtr<SVGDocument> create(Frame* frame)
38 return adoptRef(new SVGDocument(frame));
54 SVGDocument(Frame*);
  /external/webkit/WebKit/gtk/webkit/
webkitwebpolicydecision.cpp 43 WebKitWebFrame* frame; member in struct:_WebKitWebPolicyDecisionPrivate
60 WebKitWebPolicyDecision* webkit_web_policy_decision_new(WebKitWebFrame* frame, WebCore::FramePolicyFunction function)
62 g_return_val_if_fail(frame, NULL);
67 priv->frame = frame;
89 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyUse);
107 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyIgnore);
125 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyDownload);
  /external/webkit/WebKit/win/Interfaces/
IWebFrameLoadDelegatePrivate2.idl 50 HRESULT didClearWindowObjectForFrameInScriptWorld([in] IWebView* webView, [in] IWebFrame* frame, [in] IWebScriptWorld*);
52 HRESULT didPushStateWithinPageForFrame([in] IWebView* webView, [in] IWebFrame* frame);
53 HRESULT didReplaceStateWithinPageForFrame([in] IWebView* webView, [in] IWebFrame* frame);
54 HRESULT didPopStateWithinPageForFrame([in] IWebView* webView, [in] IWebFrame* frame);
  /external/openssl/crypto/bn/asm/
x86-mont.pl 57 $frame=32; # size of above frame rounded up to 16n
69 &lea ("esp",&DWP(-$frame,"esp","edi",4)); # alloca($frame+4*(num+2))
164 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]=
179 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]=
185 &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1]
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
225 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1
    [all...]

Completed in 635 milliseconds

1 2 34 5 6 7 8 91011>>