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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 22 import android.filterfw.core.Frame;
50 Frame inputFrame = frameFromTexture(inputTexId, width, height);
51 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame);
56 Frame outputFrame = frameFromTexture(outputTexId, outputWidth, outputHeight);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FieldPort.java 43 public void pushFrame(Frame frame) {
44 setFieldFrame(frame, false);
48 public void setFrame(Frame frame) {
49 setFieldFrame(frame, true);
78 public synchronized Frame pullFrame() {
79 throw new RuntimeException("Cannot pull frame on " + this + "!");
97 protected synchronized void setFieldFrame(Frame frame, boolean isAssignment)
    [all...]
FilterPort.java 98 public abstract void pushFrame(Frame frame);
100 public abstract void setFrame(Frame frame);
102 public abstract Frame pullFrame();
118 protected void checkFrameType(Frame frame, boolean forceCheck) {
121 && !frame.getFormat().isCompatibleWith(mPortFormat)) {
122 throw new RuntimeException("Frame passed to " + this + " is of incorrect type! "
123 + "Expected " + mPortFormat + " but got " + frame.getFormat())
    [all...]
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurity.h 36 #include "Frame.h"
52 // Check if the active execution context can access the target frame.
53 static bool canAccessFrame(State<Binding>*, Frame*, bool reportError);
63 static bool shouldAllowNavigation(State<Binding>*, Frame*);
87 Frame* target,
90 // The subject is detached from a frame, deny accesses.
108 Frame* target = getFrame(node);
122 Frame* frame = state->firstFrame();
123 ASSERT(frame);
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.h 52 class Frame;
87 static void resourceContent(ErrorString*, Frame*, const KURL&, String* result);
88 static void resourceContentBase64(ErrorString*, Frame*, const KURL&, String* result);
89 static PassRefPtr<SharedBuffer> resourceData(Frame*, const KURL&, String* textEncodingName);
90 static CachedResource* cachedResource(Frame*, const KURL&);
106 void frameDetachedFromParent(Frame*);
115 Frame* frameForId(const String& frameId);
InspectorInstrumentation.h 35 #include "Frame.h"
73 static void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
92 static InspectorInstrumentationCookie willCallFunction(Frame*, const String& scriptName, int scriptLine);
98 static InspectorInstrumentationCookie willDispatchEventOnWindow(Frame*, const Event& event, DOMWindow* window);
100 static InspectorInstrumentationCookie willEvaluateScript(Frame*, const String& url, int lineNumber);
104 static InspectorInstrumentationCookie willLayout(Frame*);
108 static InspectorInstrumentationCookie willPaint(Frame*, const IntRect& rect);
113 static void applyUserAgentOverride(Frame*, String*);
114 static void willSendRequest(Frame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse);
117 static InspectorInstrumentationCookie willReceiveResourceData(Frame*, unsigned long identifier)
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 19 * Represents the stack frame and local variable table at a particular point in time.
23 public class Frame {
31 * Create a new frame with the specified local variable table size, and max stack size
36 public Frame(int locals, int stack) {
145 * Makes a shallow copy of this frame, i.e. the type instances will
150 public Frame copy() {
151 Frame frame = new Frame(locals.length, stack.length); local
152 System.arraycopy(locals, 0, frame.locals, 0, locals.length)
165 Frame frame = new Frame(locals.length, stack.length); local
    [all...]
  /external/webkit/Source/WebCore/dom/
Clipboard.h 39 class Frame;
49 static PassRefPtr<Clipboard> create(ClipboardAccessPolicy, DragData*, Frame*);
79 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*) = 0;
81 virtual void writeURL(const KURL&, const String&, Frame*) = 0;
82 virtual void writeRange(Range*, Frame*) = 0;
Touch.h 32 #include "Frame.h"
41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target,
44 return adoptRef(new Touch(frame, target, identifier, screenX,
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
  /external/webkit/Source/WebCore/loader/
SubframeLoader.h 44 class Frame;
60 SubframeLoader(Frame*);
84 Frame* loadOrRedirectSubframe(HTMLFrameOwnerElement*, const KURL&, const AtomicString& frameName, bool lockHistory, bool lockBackForwardList);
85 Frame* loadSubframe(HTMLFrameOwnerElement*, const KURL&, const String& name, const String& referrer);
94 Frame* m_frame;
NavigationScheduler.cpp 41 #include "Frame.h"
70 virtual void fire(Frame*) = 0;
72 virtual bool shouldStartTimer(Frame*) { return true; }
73 virtual void didStartTimer(Frame*, Timer<NavigationScheduler>*) { }
74 virtual void didStopTimer(Frame*, bool /* newLoadInProgress */) { }
106 virtual void fire(Frame* frame)
109 frame->loader()->changeLocation(m_securityOrigin, KURL(ParsedURLString, m_url), m_referrer, lockHistory(), lockBackForwardList(), false);
112 virtual void didStartTimer(Frame* frame, Timer<NavigationScheduler>* timer
    [all...]
  /external/webkit/Source/WebCore/page/
Navigator.h 37 class Frame;
51 static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); }
56 Frame* frame() const { return m_frame; } function in class:WebCore::Navigator
95 Navigator(Frame*);
96 Frame* m_frame;
SpatialNavigation.h 34 class Frame;
51 bool isSpatialNavigationEnabled(const Frame*);
139 bool scrollInDirection(Frame*, FocusDirection);
142 bool canScrollInDirection(const Frame*, FocusDirection);
148 IntRect frameRectInAbsoluteCoordinates(Frame*);
ChromeClient.h 50 class Frame;
93 virtual void focusedFrameChanged(Frame*) = 0;
95 // The Frame pointer provides the ChromeClient with context about which
96 // Frame wants to create the new Page. Also, the newly created window
101 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) = 0;
124 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame) = 0;
128 virtual void runJavaScriptAlert(Frame*, const String&) = 0;
129 virtual bool runJavaScriptConfirm(Frame*, const String&) = 0;
130 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) = 0
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.h 45 class Frame;
51 using WebCore::Frame;
98 // Scans the DOM in |frame| extracting and storing forms.
99 void ExtractForms(Frame* frame);
101 // Returns a vector of forms in |frame| that match |requirements|.
102 void GetFormsInFrame(const Frame* frame, RequirementsMask requirements, std::vector<webkit_glue::FormData>* forms);
129 // Resets the forms for the specified |frame|.
130 void ResetFrame(const Frame* frame)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 22 import android.filterfw.core.Frame;
68 // Get input frame
69 Frame sourceFrame = pullInput("source");
70 Frame overlayFrame = pullInput("overlay");
71 Frame boxFrame = pullInput("box");
79 // Create output frame with copy of input
80 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
89 // Release pushed frame
  /external/webkit/Source/WebCore/css/
MediaQueryEvaluator.cpp 37 #include "Frame.h"
61 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
100 MediaQueryEvaluator:: MediaQueryEvaluator(const String& acceptedMediaType, Frame* frame, RenderStyle* style)
102 , m_frame(frame)
220 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
222 int bitsPerComponent = screenDepthPerComponent(frame->page()->mainFrame()->view());
230 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebCoreFrameBridge.h 41 class Frame;
65 static WebFrame* getWebFrame(const WebCore::Frame* frame);
72 void loadStarted(WebCore::Frame* frame);
74 void transitionToCommitted(WebCore::Frame* frame);
76 void didFinishLoad(WebCore::Frame* frame);
86 void windowObjectCleared(WebCore::Frame* frame)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 74 virtual void focusedFrameChanged(WebCore::Frame*);
76 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
95 const WTF::String& message, WebCore::Frame*);
97 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
98 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
100 WebCore::Frame*, const WTF::String& message,
121 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
128 virtual void print(WebCore::Frame*);
130 WebCore::Frame*, const WTF::String& databaseName);
138 virtual void requestGeolocationPermissionForFrame(WebCore::Frame*, WebCore::Geolocation*)
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 57 virtual void focusedFrameChanged(WebCore::Frame*);
59 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
82 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
86 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
87 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
88 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
101 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
113 virtual void print(WebCore::Frame*);
115 virtual void exceededDatabaseQuota(WebCore::Frame*, const WTF::String& databaseName)
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 87 Page* ChromeClientWinCE::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&)
177 void ChromeClientWinCE::focusedFrameChanged(Frame*)
186 bool ChromeClientWinCE::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
188 return runJavaScriptConfirm(frame, message);
196 void ChromeClientWinCE::runJavaScriptAlert(Frame*, const String& message)
201 bool ChromeClientWinCE::runJavaScriptConfirm(Frame*, const String& message)
206 bool ChromeClientWinCE::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result)
275 void ChromeClientWinCE::contentsSizeChanged(Frame*, const IntSize&) const
300 void ChromeClientWinCE::print(Frame*)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 69 virtual void focusedFrameChanged(WebCore::Frame*);
71 // The Frame pointer provides the ChromeClient with context about which
72 // Frame wants to create the new Page. Also, the newly created window
75 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
98 virtual bool runBeforeUnloadConfirmPanel(const String& message, WebCore::Frame* frame);
102 virtual void runJavaScriptAlert(WebCore::Frame*, const String&);
103 virtual bool runJavaScriptConfirm(WebCore::Frame*, const String&);
104 virtual bool runJavaScriptPrompt(WebCore::Frame*, const String& message, const String& defaultValue, String& result);
123 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.h 41 class Frame;
70 void setJavaScriptPaused(Frame*, bool paused);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCachedFrameData.cpp 33 #include "Frame.h"
39 ScriptCachedFrameData::ScriptCachedFrameData(Frame* frame)
44 ASSERT(V8Proxy::mainWorldContext(frame) == V8Proxy::context(frame));
45 m_context.set(V8Proxy::mainWorldContext(frame));
50 m_domWindow = frame->domWindow();
58 void ScriptCachedFrameData::restore(Frame* frame)
67 V8Proxy* proxy = V8Proxy::retrieve(frame);
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomApplicationInstalledCallback.cpp 31 #include "Frame.h"
36 V8CustomApplicationInstalledCallback::V8CustomApplicationInstalledCallback(v8::Local<v8::Object> callback, Frame* frame)
38 , m_frame(frame)
61 // Protect the frame until the callback returns.
62 RefPtr<Frame> protector(m_frame);

Completed in 400 milliseconds

1 2 3 4 5 6 7 891011>>