HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 476 - 500 of 919) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/svg/graphics/
SVGImage.cpp 35 #include "Frame.h"
91 m_page->mainFrame()->loader()->frameDetached(); // Break both the loader and view references to the frame
110 Frame* frame = m_page->mainFrame();
111 SVGSVGElement* rootElement = static_cast<SVGDocument*>(frame->document())->rootElement();
122 Frame* frame = m_page->mainFrame();
123 SVGSVGElement* rootElement = static_cast<SVGDocument*>(frame->document())->rootElement();
134 Frame* frame = m_page->mainFrame()
276 RefPtr<Frame> frame = Frame::create(m_page.get(), 0, dummyFrameLoaderClient); local
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.h 89 virtual WebCore::Frame* dispatchCreatePage(const WebCore::NavigationAction&);
110 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL& url, const WTF::String& name, WebCore::HTMLFrameOwnerElement* ownerElement,
190 void setFrame(WebCore::Frame *frame) { m_frame = frame; }
191 WebCore::Frame *frame() { return m_frame; } function in class:WebKit::FrameLoaderClientWinCE
195 WebCore::Frame* m_frame;
  /external/llvm/lib/MC/
MCDwarf.cpp     [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 28 * 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 {
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP)
729 simplePush(zeroExtend(returnType), frame); local
747 simplePush(zeroExtend(returnType), frame); local
844 simplePush(getType(name), frame); local
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.cpp 36 #include "Frame.h"
59 Frame* frame = window->impl()->frame(); local
60 return frame ? frame->page() : 0;
171 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
PageScriptDebugServer.cpp 36 #include "Frame.h"
48 static Frame* retrieveFrame(v8::Handle<v8::Context> context)
136 Frame* frame = retrieveFrame(context); local
137 if (!frame)
139 return m_listenersMap.get(frame->page());
145 Frame* frame = retrieveFrame(context); local
146 m_pausedPage = frame->page();
ScriptEventListener.cpp 37 #include "Frame.h"
56 if (Frame* frame = node->document()->frame()) {
57 ScriptController* scriptController = frame->script();
68 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame* frame, Attribute* attr)
70 if (!frame)
77 ScriptController* scriptController = frame->script();
82 String sourceURL = frame->document()->url().string()
    [all...]
V8Utilities.h 40 class Frame;
53 bool shouldAllowNavigation(Frame*);
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.h 49 class Frame;
85 static bool scriptEnabled(Frame*);
86 static bool pluginsEnabled(Frame*);
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 42 #include "Frame.h"
119 void InspectorResourceAgent::resourceContent(ErrorString* errorString, Frame* frame, const KURL& url, String* result)
121 if (!frame) {
122 *errorString = "No frame to get resource content for";
127 RefPtr<SharedBuffer> buffer = InspectorResourceAgent::resourceData(frame, url, &textEncodingName);
139 void InspectorResourceAgent::resourceContentBase64(ErrorString* errorString, Frame* frame, const KURL& url, String* result)
142 RefPtr<SharedBuffer> data = InspectorResourceAgent::resourceData(frame, url, &textEncodingName);
152 PassRefPtr<SharedBuffer> InspectorResourceAgent::resourceData(Frame* frame, const KURL& url, String* textEncodingName
555 Frame* frame = frameForId(frameId); local
    [all...]
  /external/webkit/Source/WebCore/loader/
ResourceLoader.h 45 class Frame;
144 ResourceLoader(Frame*, bool sendResourceLoadCallbacks, bool shouldContentSniff);
162 RefPtr<Frame> m_frame;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.h 80 virtual WebCore::Frame* dispatchCreatePage(const WebCore::NavigationAction&);
119 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL& url, const WTF::String& name, WebCore::HTMLFrameOwnerElement* ownerElement,
135 PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL&, const WTF::String& name, WebCore::HTMLFrameOwnerElement*, const WTF::String& referrer);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 20 import android.filterfw.core.Frame;
34 public class NativeFrame extends Frame {
62 * Returns the native frame's Object value.
64 * If the frame's base-type is not TYPE_OBJECT, this returns a data buffer containing the native
66 * If the frame is based on an object type, this type is expected to be a subclass of
67 * NativeBuffer. The NativeBuffer returned is only valid for as long as the frame is alive. If
72 // If this is not a structured frame, return our data
80 throw new RuntimeException("Attempting to get object data from frame that does " +
101 throw new RuntimeException("Could not get the native structured data for frame!");
104 // Attach this frame to i
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FisheyeFilter.java 22 import android.filterfw.core.Frame;
108 // Get input frame
109 Frame input = pullInput("image");
112 // Create output frame
113 Frame output = context.getFrameManager().newFrame(inputFormat);
120 // Check if the frame size has changed
131 // Release pushed frame
RotateFilter.java 22 import android.filterfw.core.Frame;
91 // Get input frame
92 Frame input = pullInput("image");
109 // Create output frame
114 Frame output = context.getFrameManager().newFrame(outputFormat);
122 // Release pushed frame
StraightenFilter.java 22 import android.filterfw.core.Frame;
92 // Get input frame
93 Frame input = pullInput("image");
101 // Create output frame
108 Frame output = context.getFrameManager().newFrame(inputFormat);
116 // Release pushed frame
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardChromium.cpp 39 #include "Frame.h"
68 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy policy, DragData* dragData, Frame* frame)
70 return ClipboardChromium::create(DragAndDrop, dragData->platformData(), policy, frame);
76 Frame* frame)
79 , m_frame(frame)
84 PassRefPtr<ChromiumDataObject> dataObject, ClipboardAccessPolicy policy, Frame* frame)
86 return adoptRef(new ClipboardChromium(clipboardType, dataObject, policy, frame));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 36 #include <WebCore/Frame.h>
81 static Frame* frameWithSelection(Page* page)
83 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
84 if (frame->selection()->isRange())
85 return frame;
97 Frame* selectedFrame = frameWithSelection(m_webPage->corePage())
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 17 import javassist.bytecode.analysis.Frame;
72 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
75 Frame frame = frames[pos]; local
76 assertEquals("java.lang.Object", frame.getLocal(2).getCtClass().getName());
106 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
108 Frame frame = frames[pos]; local
109 assertEquals(expected, frame.peek().getCtClass().getName());
126 Frame[] frames = analyzer.analyze(clazz, info)
128 Frame frame = frames[pos]; local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
disconnected-frame-already.js 1 description("Tests that when a request is made on a Geolocation object after its frame has been disconnected, no callbacks are made and no crash occurs.");
10 iframe.src = 'resources/disconnected-frame-already-inner2.html';
26 debug('Method called on Geolocation object with disconnected Frame.');
31 iframe.src = 'resources/disconnected-frame-already-inner1.html';
disconnected-frame.js 1 description("Tests that when a request is made on a Geolocation object and its Frame is disconnected before a callback is made, the error callback is invoked with the correct error message.");
10 iframe.src = 'data:text/html,This frame should be visible when the test completes';
27 iframe.src = 'resources/disconnected-frame-inner.html';
  /external/webkit/Source/WebCore/html/
HTMLPlugInElement.cpp 31 #include "Frame.h"
77 if (Frame* frame = document()->frame())
78 frame->eventHandler()->setCapturingMouseEventsNode(0);
87 Frame* frame = document()->frame(); local
88 if (!frame)
97 m_instance = frame->script()->createScriptInstanceForWidget(widget)
    [all...]
HTMLPlugInImageElement.cpp 24 #include "Frame.h"
61 if (Frame* frame = document()->frame()) {
62 KURL completedURL = frame->loader()->completeURL(m_url);
63 return frame->loader()->client()->objectContentType(completedURL, m_serviceType, shouldPreferPlugInsForImages()) == ObjectContentImage;
74 ASSERT(document()->frame());
75 if (document()->frame()->page()->frameCount() >= Page::maxNumberOfFrames)
82 for (Frame* frame = document()->frame(); frame; frame = frame->tree()->parent())
    [all...]
PluginDocument.cpp 29 #include "Frame.h"
77 if (document()->frame() && document()->frame()->loader())
78 document()->frame()->loader()->dispatchDocumentElementAvailable();
114 Frame* frame = document()->frame(); local
115 if (!frame)
117 Settings* settings = frame->settings();
118 if (!settings || !frame->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin)
    [all...]
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.cpp 30 #include "Frame.h"
48 IconLoader::IconLoader(Frame* frame)
49 : m_frame(frame)
54 PassOwnPtr<IconLoader> IconLoader::create(Frame* frame)
56 return adoptPtr(new IconLoader(frame));

Completed in 265 milliseconds

<<11121314151617181920>>