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

<<11121314151617181920>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeBuffer.java 20 import android.filterfw.core.Frame;
31 private Frame mAttachedFrame;
107 void attachToFrame(Frame frame) {
109 // the frame.
110 mAttachedFrame = frame;
116 throw new NullPointerException("Attempting to read from null data frame!");
OutputPort.java 90 public void pushFrame(Frame frame) {
93 "Attempting to push frame on unconnected port: " + this + "!");
95 mTargetPort.pushFrame(frame);
99 public void setFrame(Frame frame) {
103 "Attempting to set frame on unconnected port: " + this + "!");
105 mTargetPort.setFrame(frame);
109 public Frame pullFrame() {
110 throw new RuntimeException("Cannot pull frame on " + this + "!")
    [all...]
Frame.java 30 public abstract class Frame {
46 Frame(FrameFormat format, FrameManager frameManager) {
51 Frame(FrameFormat format, FrameManager frameManager, int bindingType, long bindingId) {
130 public void setDataFromFrame(Frame frame) {
131 setData(frame.getData());
142 public Frame release() {
150 public Frame retain() {
164 throw new RuntimeException("Attempting to modify read-only frame!");
202 * Called just before a frame is stored, such as when storing to a cache or context
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 22 import android.filterfw.core.Frame;
50 * increasing. Set to Frame.TIMESTAMP_UNKNOWN if timestamps are not
54 private long mTimestamp = Frame.TIMESTAMP_UNKNOWN;
56 private Frame mFrame;
64 addOutputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA,
70 // Release frame, so that it is recreated during the next process call
79 // Generate frame if not generated already
91 pushOutput("frame", mFrame);
95 closeOutputPort("frame");
GLTextureTarget.java 22 import android.filterfw.core.Frame;
45 addMaskedInputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
50 // Get input frame
51 Frame input = pullInput("frame");
58 Frame frame = context.getFrameManager().newBoundFrame(format, GLFrame.EXISTING_TEXTURE_BINDING, mTexId); local
60 // Copy to our texture frame
61 frame.setDataFromFrame(input);
62 frame.release()
    [all...]
ObjectSource.java 24 import android.filterfw.core.Frame;
45 private Frame mFrame;
53 addOutputPort("frame", mOutputFormat);
58 // If no frame has been created, create one now.
61 throw new NullPointerException("ObjectSource producing frame with no object set!");
66 mFrame.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
70 pushOutput("frame", mFrame);
74 closeOutputPort("frame");
85 // Release our internal frame, so that it is regenerated on the next call to process().
RetargetFilter.java 22 import android.filterfw.core.Frame;
50 addInputPort("frame");
51 addOutputBasedOnInput("frame", "frame");
63 // Get input frame
64 Frame input = pullInput("frame");
66 // Create output frame
67 Frame output = context.getFrameManager().duplicateFrameToTarget(input, mTarget);
70 pushOutput("frame", output)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
ThroughputFilter.java 22 import android.filterfw.core.Frame;
50 addInputPort("frame");
54 addOutputBasedOnInput("frame", "frame");
72 // Pass through input frame
73 Frame input = pullInput("frame");
74 pushOutput("frame", input);
94 Frame throughputFrame = context.getFrameManager().newFrame(mOutputFormat);
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 53 Viewless element needs to create a dummy Page->Frame->FrameView tree for use in parsing or executing JavaScript.
111 virtual void focusedFrameChanged(Frame*) { }
113 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) { return 0; }
136 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) { return true; }
140 virtual void runJavaScriptAlert(Frame*, const String&) { }
141 virtual bool runJavaScriptConfirm(Frame*, const String&) { return false; }
142 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, String&) { return false; }
178 virtual void contentsSizeChanged(Frame*, const IntSize&) const { }
185 virtual void print(Frame*) { }
188 virtual void exceededDatabaseQuota(Frame*, const String&) {
    [all...]
ResourceLoadScheduler.h 39 class Frame;
53 PassRefPtr<SubresourceLoader> scheduleSubresourceLoad(Frame*, SubresourceLoaderClient*, const ResourceRequest&, ResourceLoadPriority = ResourceLoadPriorityLow, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool shouldBufferData = true);
54 PassRefPtr<NetscapePlugInStreamLoader> schedulePluginStreamLoad(Frame*, NetscapePlugInStreamLoaderClient*, const ResourceRequest&);
  /external/webkit/Source/WebCore/page/
Console.h 49 class Frame;
84 static PassRefPtr<Console> create(Frame* frame) { return adoptRef(new Console(frame)); }
86 Frame* frame() const;
125 Console(Frame*);
127 Frame* m_frame;
History.cpp 32 #include "Frame.h"
40 History::History(Frame* frame)
41 : m_frame(frame)
45 Frame* History::frame() const function in class:WebCore::History
98 Frame* activeFrame = static_cast<Document*>(context)->frame();
  /external/webkit/Source/WebCore/platform/
DragData.h 77 class Frame;
110 bool containsURL(Frame*, FilenameConversionPolicy filenamePolicy = ConvertFilenames) const;
113 String asURL(Frame*, FilenameConversionPolicy filenamePolicy = ConvertFilenames, String* title = 0) const;
114 String asPlainText(Frame*) const;
117 PassRefPtr<DocumentFragment> asFragment(Frame*, PassRefPtr<Range> context,
  /external/webkit/Source/WebKit/qt/Api/
qwebframe_p.h 36 #include "Frame.h"
55 QWebFrameData(WebCore::Page*, WebCore::Frame* parentFrame = 0,
63 RefPtr<WebCore::Frame> frame; member in class:QWebFrameData
79 , frame(0)
96 static WebCore::Frame* core(const QWebFrame*);
97 static QWebFrame* kit(const WebCore::Frame*);
115 WebCore::Frame *frame; member in class:QWebFramePrivate
152 QPointer<QWebFrame> frame; member in class:QWebHitTestResultPrivate
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.h 48 class Frame;
67 static void selectCache(Frame*, const KURL& manifestURL);
68 static void selectCacheWithoutManifestURL(Frame*);
79 void update(Frame*, ApplicationCacheUpdateOption); // FIXME: Frame should not be needed when updating without browsing context.
84 void stopLoadingInFrame(Frame*);
123 void didReachOriginQuota(PassRefPtr<Frame> frame);
168 // Frame used for fetching resources when updating.
169 // FIXME: An update started by a particular frame should not stop if it is destroyed, but there are other frames associated with the same cache grou (…)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageAreaProxy.cpp 36 #include "Frame.h"
75 String StorageAreaProxy::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame)
79 WebKit::WebFrame* webFrame = WebKit::WebFrameImpl::fromFrame(frame);
80 m_storageArea->setItem(key, value, frame->document()->url(), result, oldValue, webFrame);
84 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame);
88 String StorageAreaProxy::removeItem(const String& key, Frame* frame)
91 m_storageArea->removeItem(key, frame->document()->url(), oldValue)
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 172 report_fatal_error("No open frame");
280 report_fatal_error("Starting a frame before finishing the previous one!");
282 MCDwarfFrameInfo Frame;
283 EmitCFIStartProcImpl(Frame);
285 FrameInfos.push_back(Frame);
289 void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
292 void MCStreamer::RecordProcStart(MCDwarfFrameInfo &Frame) {
293 Frame.Function = LastSymbol;
298 Frame.Begin = LastSymbol;
300 Frame.Begin = getContext().CreateTempSymbol()
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 74 * Frame[] frames = analyzer.analyze(clazz, method);
89 private Frame[] frames;
108 * instruction position, containing the starting frame state of all reachable
110 * as a null in the frame state array. This can be used to detect dead code.
117 * @return an array, indexed by instruction position, of the starting frame state,
121 public Frame[] analyze(CtClass clazz, MethodInfo method) throws BadBytecode {
139 frames = new Frame[codeLength];
151 * instruction position, containing the starting frame state of all reachable
153 * as a null in the frame state array. This can be used to detect dead code.
159 * @return an array, indexed by instruction position, of the starting frame state
173 Frame frame = frames[pos].copy(); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 59 class Frame;
67 void logInfo(Frame*, const String& message, const String& url);
135 explicit V8Proxy(Frame*);
139 Frame* frame() { return m_frame; } function in class:WebCore::V8Proxy
151 // Disconnects the proxy from its owner frame,
187 // Returns V8Proxy object associated with a frame.
188 static V8Proxy* retrieve(Frame*);
192 // Returns the frame object of the window object associated with
194 static Frame* retrieveFrame(v8::Handle<v8::Context>)
    [all...]
ScriptState.h 41 class Frame;
69 friend ScriptState* mainWorldScriptState(Frame*);
107 ScriptState* mainWorldScriptState(Frame*);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 37 #include "Frame.h"
140 void ChromeClientWx::focusedFrameChanged(Frame*)
144 Page* ChromeClientWx::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures& features, const NavigationAction&)
163 Page* ChromeClientWx::createModalDialog(Frame*, const FrameLoadRequest&)
258 Frame* frame)
276 void ChromeClientWx::runJavaScriptAlert(Frame* frame, const String& string)
286 bool ChromeClientWx::runJavaScriptConfirm(Frame* frame, const String& string
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameInternal.h 54 class Frame;
55 class Frame;
66 WebCore::Frame* core(WebFrame *);
67 WebFrame *kit(WebCore::Frame *);
80 WebCore::Frame* coreFrame;
96 + (PassRefPtr<WebCore::Frame>)_createSubframeWithOwnerElement:(WebCore::HTMLFrameOwnerElement*)ownerElement frameName:(const WTF::String&)name frameView:(WebFrameView *)frameView;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
GrainFilter.java 21 import android.filterfw.core.Frame;
158 // Get input frame
159 Frame input = pullInput("image");
167 // Create noise frame
168 Frame noiseFrame = context.getFrameManager().newFrame(inputFormat);
170 // Create output frame
171 Frame output = context.getFrameManager().newFrame(inputFormat);
179 // Check if the frame size has changed
184 Frame[] empty = {};
188 Frame[] inputs = {input, noiseFrame}
    [all...]
  /external/webkit/Source/WebCore/page/animation/
AnimationControllerPrivate.h 48 class Frame;
57 AnimationControllerPrivate(Frame*);
114 Frame* m_frame;
  /external/webkit/Source/WebCore/page/gtk/
EventHandlerGtk.cpp 32 #include "Frame.h"
94 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
102 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
108 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
114 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)

Completed in 663 milliseconds

<<11121314151617181920>>