HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 1 - 25 of 459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameClient.h 10 class Frame;
14 virtual Frame* opener() const = 0;
15 virtual void setOpener(Frame*) = 0;
17 virtual Frame* parent() const = 0;
18 virtual Frame* top() const = 0;
19 virtual Frame* previousSibling() const = 0;
20 virtual Frame* nextSibling() const = 0;
21 virtual Frame* firstChild() const = 0;
22 virtual Frame* lastChild() const = 0;
Frame.h 54 class Frame : public RefCounted<Frame> {
59 virtual ~Frame();
74 FrameHost* host() const; // Null when the frame is detached.
91 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
106 Frame(FrameClient*, FrameHost*, FrameOwner*);
122 inline FrameClient* Frame::client() const
127 inline void Frame::clearClient()
132 inline LocalDOMWindow* Frame::domWindow() const
137 inline FrameOwner* Frame::owner() cons
    [all...]
Frame.cpp 31 #include "core/frame/Frame.h"
35 #include "core/frame/LocalDOMWindow.h"
36 #include "core/frame/FrameDestructionObserver.h"
37 #include "core/frame/FrameHost.h"
38 #include "core/frame/Settings.h"
57 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame"));
59 Frame::Frame(FrameClient* client, FrameHost* host, FrameOwner* owner)
81 Frame::~Frame(
    [all...]
RemoteFrame.h 8 #include "core/frame/Frame.h"
14 class RemoteFrame: public Frame {
37 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame());
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 20 import android.filterfw.core.Frame;
27 public abstract void process(Frame[] inputs, Frame output);
29 public void process(Frame input, Frame output) {
30 Frame[] inputs = new Frame[1];
FrameManager.java 20 import android.filterfw.core.Frame;
31 public abstract Frame newFrame(FrameFormat format);
33 public abstract Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId);
35 public Frame duplicateFrame(Frame frame) {
36 Frame result = newFrame(frame.getFormat());
37 result.setDataFromFrame(frame);
41 public Frame duplicateFrameToTarget(Frame frame, int newTarget)
    [all...]
CachedFrameManager.java 20 import android.filterfw.core.Frame;
33 private SortedMap<Integer, Frame> mAvailableFrames;
40 mAvailableFrames = new TreeMap<Integer, Frame>();
44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
49 result.setTimestamp(Frame.TIMESTAMP_NOT_SET);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
59 result.setTimestamp(Frame.TIMESTAMP_NOT_SET)
124 Frame frame = mAvailableFrames.get(oldest); local
134 Frame frame = entry.getValue(); local
    [all...]
FilterContext.java 21 import android.filterfw.core.Frame;
36 private HashMap<String, Frame> mStoredFrames = new HashMap<String, Frame>();
69 public void onFrameReceived(Filter filter, Frame frame, Object userData);
72 public synchronized void storeFrame(String key, Frame frame) {
73 Frame storedFrame = fetchFrame(key);
77 frame.onFrameStore();
78 mStoredFrames.put(key, frame.retain())
82 Frame frame = mStoredFrames.get(key); local
90 Frame frame = mStoredFrames.get(key); local
    [all...]
SimpleFrameManager.java 20 import android.filterfw.core.Frame;
37 public Frame newFrame(FrameFormat format) {
42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
43 Frame result = null;
59 private Frame createNewFrame(FrameFormat format) {
60 Frame result = null;
83 throw new RuntimeException("Unsupported frame target type: " +
90 public Frame retainFrame(Frame frame) {
    [all...]
StreamPort.java 25 private Frame mFrame;
41 public void setFrame(Frame frame) {
42 assignFrame(frame, true);
46 public void pushFrame(Frame frame) {
47 assignFrame(frame, false);
50 protected synchronized void assignFrame(Frame frame, boolean persistent) {
52 checkFrameType(frame, persistent)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.h 27 class Frame;
33 explicit FrameTree(Frame* thisFrame);
42 Frame* parent() const;
43 Frame* top() const;
44 Frame* previousSibling() const;
45 Frame* nextSibling() const;
46 Frame* firstChild() const;
47 Frame* lastChild() const;
49 bool isDescendantOf(const Frame* ancestor) const;
50 Frame* traversePreviousWithWrap(bool) const
    [all...]
FrameTree.cpp 25 #include "core/frame/FrameClient.h"
26 #include "core/frame/FrameView.h"
27 #include "core/frame/LocalFrame.h"
28 #include "core/frame/RemoteFrame.h"
29 #include "core/frame/RemoteFrameView.h"
45 FrameTree::FrameTree(Frame* thisFrame)
54 for (Frame* child = firstChild(); child; child = child->tree().nextSibling()) {
69 m_uniqueName = AtomicString(); // Remove our old frame name so it's not considered in uniqueChildName.
73 Frame* FrameTree::parent() const
80 Frame* FrameTree::top() cons
146 Frame* frame; local
327 Frame* frame = m_thisFrame; local
    [all...]
FocusController.h 41 class Frame;
71 void setFocusedFrame(PassRefPtr<Frame>);
72 void focusDocumentView(PassRefPtr<Frame>);
73 Frame* focusedFrame() const { return m_focusedFrame.get(); }
74 Frame* focusedOrMainFrame() const;
79 bool setFocusedElement(Element*, PassRefPtr<Frame>, FocusType = FocusTypeNone);
118 RefPtr<Frame> m_focusedFrame;
  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.h 8 #include "core/frame/FrameClient.h"
19 virtual WebCore::Frame* opener() const OVERRIDE;
20 virtual void setOpener(WebCore::Frame*) OVERRIDE;
22 virtual WebCore::Frame* parent() const OVERRIDE;
23 virtual WebCore::Frame* top() const OVERRIDE;
24 virtual WebCore::Frame* previousSibling() const OVERRIDE;
25 virtual WebCore::Frame* nextSibling() const OVERRIDE;
26 virtual WebCore::Frame* firstChild() const OVERRIDE;
27 virtual WebCore::Frame* lastChild() const OVERRIDE;
RemoteFrameClient.cpp 17 WebCore::Frame* RemoteFrameClient::opener() const
22 void RemoteFrameClient::setOpener(WebCore::Frame*)
27 WebCore::Frame* RemoteFrameClient::parent() const
32 WebCore::Frame* RemoteFrameClient::top() const
37 WebCore::Frame* RemoteFrameClient::previousSibling() const
42 WebCore::Frame* RemoteFrameClient::nextSibling() const
47 WebCore::Frame* RemoteFrameClient::firstChild() const
52 WebCore::Frame* RemoteFrameClient::lastChild() const
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameQueue.java 79 public Frame pullFrame();
81 public Frame fetchAvailableFrame(int[] dimensions);
83 public Frame peek();
85 public void pushFrame(Frame frame);
91 private Frame mFrame = null;
104 public Frame pullFrame() {
105 Frame result = mFrame;
111 public Frame peek() {
116 public Frame fetchAvailableFrame(int[] dimensions)
    [all...]
Frame.java 27 * There are two ways to obtain new Frame instances. You can call
28 * {@link OutputPort#fetchAvailableFrame(int[])} on an OutputPort to obtain a Frame to pass to an
30 * a detached Frame instance that you may hold onto in your filter. If you need to hold on to a
31 * Frame that is owned by an input or output queue, you must call
34 * When you are done using a detached Frame, you must release it yourself.
36 * To access frame data, call any of the {@code lock}-methods. This will give you access to the
37 * frame data in the desired format. You must pass in a {@code mode} indicating whether you wish
38 * to read or write to the data. Writing to a read-locked Frame may produce unexpected results and
40 * {@link #unlock()}. Note, that a Frame must be unlocked before you push it into an output queue.
42 * Generally, any type of access format to a Frame's data will be granted. However, it is strongl
198 Frame frame = new Frame(getType(), getDimensions(), frameManager); local
    [all...]
GraphOutputTarget.java 6 import androidx.media.filterfw.Frame;
13 private Frame mFrame = null;
32 .addInputPort("frame", Signature.PORT_REQUIRED, mType)
36 // Returns a retained frame!
37 public Frame pullFrame() {
38 Frame result = null;
48 Frame frame = getConnectedInputPort("frame").pullFrame(); local
52 mFrame = frame.retain()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
BindingSecurity.h 35 #include "core/frame/LocalFrame.h"
53 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, SecurityReportingOption = ReportSecurityError);
54 static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, ExceptionState&);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameSourceFilter.java 23 * <p> When a frame is injected using {@link #injectFrame(Frame)}, this source will push it on its
24 * output port and then sleep until another frame is injected.
25 * <p> Multiple frames may be injected before any frame is pushed out. In this case they will be
30 private final Queue<Frame> mFrames = new LinkedList<Frame>();
43 private synchronized Frame obtainFrame() {
53 * Call this method to inject a frame that will be pushed in a future execution of the filter.
56 public synchronized void injectFrame(Frame frame) {
63 Frame frame = obtainFrame(); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
51 * @param frame {@code non-null;} frame to operate on
54 public void popArgs(Frame frame, int count);
64 * @param frame {@code non-null;} frame to operate on
67 public void popArgs(Frame frame, Prototype prototype);
74 * @param frame {@code non-null;} frame to operate o
    [all...]
Frame.java 26 * Representation of a Java method execution frame. A frame consists
31 public final class Frame {
47 private Frame(LocalsArray locals, ExecutionStack stack) {
57 * subroutines this frame is nested in
59 private Frame(LocalsArray locals,
86 public Frame(int maxLocals, int maxStack) {
97 public Frame copy() {
98 return new Frame(locals.copy(), stack.copy(), subroutines);
112 * this frame with its initialized equivalent
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 19 import android.filterfw.core.Frame;
44 Frame inputFrame = frameFromTexture(inputTexId, width, height);
45 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame);
50 Frame outputFrame = frameFromTexture(outputTexId, outputWidth, outputHeight);
  /external/chromium_org/net/websockets/
websocket_frame_test.cc 269 // Check that all combinations of alignment, frame offset and chunk size work
408 typedef WebSocketFrameHeader Frame;
411 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeContinuation));
412 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeText));
413 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeBinary));
416 EXPECT_FALSE(Frame::IsKnownDataOpCode(Frame::kOpCodeClose))
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 22 import android.filterfw.core.Frame;
62 // Get input frame
63 Frame sourceFrame = pullInput("source");
64 Frame overlayFrame = pullInput("overlay");
65 Frame boxFrame = pullInput("box");
73 // Create output frame with copy of input
74 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
83 // Release pushed frame

Completed in 352 milliseconds

1 2 3 4 5 6 7 8 91011>>