Searched refs:frame (Results 1 - 25 of 1419) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-08-21-BinOp-Type-Mismatch.c7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DFrameNetworkingContextEfl.h38 static PassRefPtr<FrameNetworkingContextEfl> create(WebCore::Frame* frame) argument
40 return adoptRef(new FrameNetworkingContextEfl(frame));
43 WebCore::Frame* coreFrame() const { return frame(); }
46 FrameNetworkingContextEfl(WebCore::Frame* frame) argument
47 : WebCore::FrameNetworkingContext(frame)
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameNetworkingContextGtk.h29 static PassRefPtr<FrameNetworkingContextGtk> create(WebCore::Frame* frame) argument
31 return adoptRef(new FrameNetworkingContextGtk(frame));
34 WebCore::Frame* coreFrame() const { return frame(); }
37 FrameNetworkingContextGtk(WebCore::Frame* frame) argument
38 : WebCore::FrameNetworkingContext(frame)
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameNetworkingContext.mm30 return frame() && frame()->settings() && frame()->settings()->needsSiteSpecificQuirks();
35 return frame() && frame()->settings() && frame()->settings()->localFileContentSniffingEnabled();
40 return frame() && frame()->page() ? frame()->page()->scheduledRunLoopPairs() : 0;
45 return frame()
[all...]
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameNetworkingContextWx.h35 static PassRefPtr<FrameNetworkingContextWx> create(WebCore::Frame* frame) argument
37 return adoptRef(new FrameNetworkingContextWx(frame));
40 WebCore::Frame* coreFrame() const { return frame(); }
43 FrameNetworkingContextWx(WebCore::Frame* frame) argument
44 : WebCore::FrameNetworkingContext(frame)
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebFrameNetworkingContext.mm33 return frame() && frame()->settings() && frame()->settings()->needsSiteSpecificQuirks();
38 return frame() && frame()->settings() && frame()->settings()->localFileContentSniffingEnabled();
43 return frame() && frame()->page() ? frame()->page()->scheduledRunLoopPairs() : 0;
48 return frame()
[all...]
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_non_client_frame_view_factory_win.cc5 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
7 #include "chrome/browser/ui/views/frame/app_panel_browser_frame_view.h"
8 #include "chrome/browser/ui/views/frame/browser_view.h"
9 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h"
14 BrowserFrame* frame, BrowserView* browser_view) {
16 return new AppPanelBrowserFrameView(frame, browser_view);
18 return new OpaqueBrowserFrameView(frame, browser_view);
13 CreateBrowserNonClientFrameView( BrowserFrame* frame, BrowserView* browser_view) argument
H A Dbrowser_non_client_frame_view_factory_gtk.cc5 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
7 #include "chrome/browser/ui/views/frame/browser_view.h"
8 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h"
9 #include "chrome/browser/ui/views/frame/popup_non_client_frame_view.h"
14 BrowserFrame* frame, BrowserView* browser_view) {
18 return new OpaqueBrowserFrameView(frame, browser_view);
13 CreateBrowserNonClientFrameView( BrowserFrame* frame, BrowserView* browser_view) argument
/external/webkit/Tools/wx/browser/
H A Dbrowser.cpp54 wxWebBrowserShell *frame = new wxWebBrowserShell(_T("wxWebKit Test App")); local
57 frame->ShowDebugMenu(true);
60 wxWebSettings settings = frame->webview->GetWebSettings();
64 frame->webview->SetDatabasesEnabled(true);
66 frame->CentreOnScreen();
67 frame->Show(true);
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_non_client_frame_view_factory_chromeos.cc5 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
7 #include "chrome/browser/chromeos/frame/browser_frame_view_chromeos.h"
8 #include "chrome/browser/ui/views/frame/browser_view.h"
9 #include "chrome/browser/ui/views/frame/popup_non_client_frame_view.h"
14 BrowserFrame* frame, BrowserView* browser_view) {
18 return new chromeos::BrowserFrameViewChromeos(frame, browser_view);
13 CreateBrowserNonClientFrameView( BrowserFrame* frame, BrowserView* browser_view) argument
/external/chromium/chrome/browser/ui/touch/frame/
H A Dbrowser_non_client_frame_view_factory_touch.cc5 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
7 #include "chrome/browser/ui/touch/frame/touch_browser_frame_view.h"
8 #include "chrome/browser/ui/views/frame/browser_view.h"
13 BrowserFrame* frame, BrowserView* browser_view) {
19 return new TouchBrowserFrameView(frame, browser_view);
12 CreateBrowserNonClientFrameView( BrowserFrame* frame, BrowserView* browser_view) argument
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKFrame.h48 WK_EXPORT bool WKFrameIsMainFrame(WKFrameRef frame);
49 WK_EXPORT WKFrameLoadState WKFrameGetFrameLoadState(WKFrameRef frame);
50 WK_EXPORT WKURLRef WKFrameCopyProvisionalURL(WKFrameRef frame);
51 WK_EXPORT WKURLRef WKFrameCopyURL(WKFrameRef frame);
52 WK_EXPORT WKURLRef WKFrameCopyUnreachableURL(WKFrameRef frame);
54 WK_EXPORT void WKFrameStopLoading(WKFrameRef frame);
56 WK_EXPORT WKStringRef WKFrameCopyMIMEType(WKFrameRef frame);
57 WK_EXPORT WKStringRef WKFrameCopyTitle(WKFrameRef frame);
59 WK_EXPORT WKPageRef WKFrameGetPage(WKFrameRef frame);
61 WK_EXPORT WKArrayRef WKFrameCopyChildFrames(WKFrameRef frame);
[all...]
/external/webkit/Source/WebCore/dom/
H A DTouch.cpp36 static int contentsX(Frame* frame) argument
38 if (!frame)
40 FrameView* frameView = frame->view();
43 return frameView->scrollX() / frame->pageZoomFactor();
46 static int contentsY(Frame* frame) argument
48 if (!frame)
50 FrameView* frameView = frame->view();
53 return frameView->scrollY() / frame->pageZoomFactor();
56 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY) argument
59 , m_clientX(pageX - contentsX(frame))
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleFramePrivate.h40 WK_EXPORT WKStringRef WKBundleFrameCopyInnerText(WKBundleFrameRef frame);
41 WK_EXPORT WKStringRef WKBundleFrameCopyCounterValue(WKBundleFrameRef frame, JSObjectRef element);
42 WK_EXPORT WKStringRef WKBundleFrameCopyMarkerText(WKBundleFrameRef frame, JSObjectRef element);
43 WK_EXPORT JSValueRef WKBundleFrameGetComputedStyleIncludingVisitedInfo(WKBundleFrameRef frame, JSObjectRef element);
44 WK_EXPORT unsigned WKBundleFrameGetNumberOfActiveAnimations(WKBundleFrameRef frame);
45 WK_EXPORT bool WKBundleFramePauseAnimationOnElementWithId(WKBundleFrameRef frame, WKStringRef name, WKStringRef elementID, double time);
46 WK_EXPORT void WKBundleFrameSuspendAnimations(WKBundleFrameRef frame);
47 WK_EXPORT void WKBundleFrameResumeAnimations(WKBundleFrameRef frame);
48 WK_EXPORT unsigned WKBundleFrameGetPendingUnloadCount(WKBundleFrameRef frame);
49 WK_EXPORT WKStringRef WKBundleFrameCopyLayerTreeAsText(WKBundleFrameRef frame);
[all...]
H A DWKBundleFrame.h40 WK_EXPORT bool WKBundleFrameIsMainFrame(WKBundleFrameRef frame);
41 WK_EXPORT WKArrayRef WKBundleFrameCopyChildFrames(WKBundleFrameRef frame);
43 WK_EXPORT WKStringRef WKBundleFrameCopyName(WKBundleFrameRef frame);
44 WK_EXPORT WKURLRef WKBundleFrameCopyURL(WKBundleFrameRef frame);
45 WK_EXPORT WKURLRef WKBundleFrameCopyProvisionalURL(WKBundleFrameRef frame);
47 WK_EXPORT WKFrameLoadState WKBundleFrameGetFrameLoadState(WKBundleFrameRef frame);
49 WK_EXPORT JSGlobalContextRef WKBundleFrameGetJavaScriptContext(WKBundleFrameRef frame);
50 WK_EXPORT JSGlobalContextRef WKBundleFrameGetJavaScriptContextForWorld(WKBundleFrameRef frame, WKBundleScriptWorldRef world);
54 WK_EXPORT JSValueRef WKBundleFrameGetJavaScriptWrapperForNodeForWorld(WKBundleFrameRef frame, WKBundleNodeHandleRef nodeHandle, WKBundleScriptWorldRef world);
55 WK_EXPORT JSValueRef WKBundleFrameGetJavaScriptWrapperForRangeForWorld(WKBundleFrameRef frame, WKBundleRangeHandleRe
[all...]
/external/webkit/Source/WebKit/wx/
H A DWebFrame.cpp95 m_impl->frame = newFrame.get();
102 parentFrame->document()->frame()->tree()->appendChild(newFrame.get());
108 m_impl->frame->ref();
110 m_impl->frame->init();
124 return m_impl->frame;
131 if (m_impl->frame && m_impl->frame->loader())
132 m_impl->frame->loader()->stop();
137 if (m_impl->frame && m_impl->frame
[all...]
/external/v8/test/mjsunit/
H A Ddebug-evaluate-locals.js42 function checkFrame0(frame) {
44 var count = frame.localCount();
47 var name = frame.localName(i);
48 var value = frame.localValue(i).value();
65 function checkFrame1(frame) {
67 var count = frame.localCount();
70 var name = frame.localName(i);
71 var value = frame.localValue(i).value();
89 function checkFrame2(frame) {
91 var count = frame
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java24 * This class is a stack frame that consists of
36 * A stack frame will be pushed for "A" at depth 1,
38 * Then "B1" stackframe is popped. When the stack frame for "B2" is
94 /** The next element "stack frame". This value will only be
99 * because very few stack frame objects are ever created, they are
103 * as they are re-used. Only the reference to the current stack frame, which
108 /** The previous element "stack frame". */
130 * Constructor to create the "stack frame" for a given element depth.
136 * @param previous The "stack frame" corresponding to the new
146 * Pop the current "stack frame"
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetHelp.py28 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/Source/WebCore/loader/
H A DPlaceholderDocument.h35 static PassRefPtr<PlaceholderDocument> create(Frame* frame, const KURL& url) argument
37 return adoptRef(new PlaceholderDocument(frame, url));
43 PlaceholderDocument(Frame* frame, const KURL& url) : Document(frame, url, false, false) { } argument
/external/webkit/Source/WebCore/page/
H A DMemoryInfo.cpp40 MemoryInfo::MemoryInfo(Frame* frame) argument
45 if (frame && frame->settings() && frame->settings()->memoryInfoEnabled()) {
H A DPageGroupLoadDeferrer.cpp50 for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
51 frame->document()->suspendScriptedAnimationControllerCallbacks();
52 frame->document()->suspendActiveDOMObjects(ActiveDOMObject::WillShowDialog);
53 frame->document()->scriptRunner()->suspend();
54 if (DocumentParser* parser = frame->document()->parser())
73 for (Frame* frame = page->mainFrame(); frame; fram
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameNetworkingContextAndroid.cpp37 FrameNetworkingContextAndroid::FrameNetworkingContextAndroid(WebCore::Frame* frame) argument
38 : WebCore::FrameNetworkingContext(frame)
44 return frame()->loader()->activeDocumentLoader()->mainResourceLoader();
49 return frame()->loader()->client();
/external/webkit/Source/WebKit/chromium/src/
H A DFrameNetworkingContextImpl.h29 static PassRefPtr<FrameNetworkingContextImpl> create(WebCore::Frame* frame) argument
31 return adoptRef(new FrameNetworkingContextImpl(frame));
35 FrameNetworkingContextImpl(WebCore::Frame* frame) argument
36 : WebCore::FrameNetworkingContext(frame)
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java28 * Executor is responsible for modeling the effects of a JVM instruction on a frame.
55 * Execute the instruction, modeling the effects on the specified frame and subroutine.
62 * @param frame the frame to modify to represent the result of the instruction
66 public void execute(MethodInfo method, int pos, CodeIterator iter, Frame frame, Subroutine subroutine) throws BadBytecode { argument
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP);
95 frame
633 evalArrayLoad(Type expectedComponent, Frame frame) argument
661 evalArrayStore(Type expectedComponent, Frame frame) argument
694 evalBinaryMath(Type expected, Frame frame) argument
703 evalGetField(int opcode, int index, Frame frame) argument
715 evalInvokeIntfMethod(int opcode, int index, Frame frame) argument
732 evalInvokeMethod(int opcode, int index, Frame frame) argument
751 evalLDC(int index, Frame frame) argument
780 evalLoad(Type expected, int index, Frame frame, Subroutine subroutine) argument
789 evalNewArray(int pos, CodeIterator iter, Frame frame) argument
826 evalNewObjectArray(int pos, CodeIterator iter, Frame frame) argument
847 evalPutField(int opcode, int index, Frame frame) argument
859 evalShift(Type expected, Frame frame) argument
868 evalStore(Type expected, int index, Frame frame, Subroutine subroutine) argument
878 evalWide(int pos, CodeIterator iter, Frame frame, Subroutine subroutine) argument
964 simplePeek(Frame frame) argument
969 simplePop(Frame frame) argument
974 simplePush(Type type, Frame frame) argument
988 simpleSetLocal(int index, Type type, Frame frame) argument
[all...]

Completed in 3867 milliseconds

1234567891011>>