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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
IdentityEffect.java 20 import android.filterfw.core.Frame;
37 Frame inputFrame = frameFromTexture(inputTexId, width, height);
38 Frame outputFrame = frameFromTexture(outputTexId, width, height);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
StringSource.java 22 import android.filterfw.core.Frame;
49 Frame output = env.getFrameManager().newFrame(mOutputFormat);
51 output.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
ToUpperCase.java 22 import android.filterfw.core.Frame;
48 Frame input = pullInput("mixedcase");
51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
StringLogger.java 22 import android.filterfw.core.Frame;
44 Frame input = pullInput("string");
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives.h 29 // frames are dropped, in order to test the frame drop detection that is
42 // A frame in a video file. The four different points in the stack when
43 // register the frame state are (in time order): created, transmitted, decoded,
45 class Frame {
47 Frame(int number, unsigned int timestamp)
60 // Frame number, starting at 0.
63 // Frame timestamp, that is used by Video Engine and RTP headers and set when
64 // the frame is sent into the stack.
67 // Timestamps for our measurements of when the frame is in different states.
74 // Where the frame was dropped (more than one may be true)
    [all...]
framedrop_primitives_unittest.cc 42 // Create test frame objects, where the second and fourth frame is marked
44 std::vector<Frame*> frames;
45 Frame first_frame(0, kFrameLength);
46 Frame second_frame(0, kFrameLength);
47 Frame third_frame(0, kFrameLength);
48 Frame fourth_frame(0, kFrameLength);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterFunction.java 43 public Frame execute(KeyValueMap inputMap) {
68 if (entry.getValue() instanceof Frame) {
69 mFilter.pushInputFrame(entry.getKey(), (Frame)entry.getValue());
83 Frame result = null;
96 public Frame executeWithArgList(Object... inputs) {
112 public void setInputFrame(String input, Frame frame) {
113 mFilter.setInputFrame(input, frame);
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/chromium_org/tools/memory_inspector/memory_inspector/core/
stacktrace_unittest.py 13 frame_1 = stacktrace.Frame(20)
14 frame_2 = stacktrace.Frame(24)
  /external/eigen/demos/opengl/
camera.h 15 // #include <frame.h>
17 class Frame
22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(),
26 Frame lerp(float alpha, const Frame& other) const
28 return Frame((1.f-alpha)*position + alpha * other.position,
66 void setFrame(const Frame& f);
67 const Frame& frame(void) const { return mFrame; } function in class:Camera
102 Frame mFrame
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
FrameStore.java 22 import android.filterfw.core.Frame;
39 addInputPort("frame");
43 // Get input frame
44 Frame input = pullInput("frame");
46 // Store frame
FrameBranch.java 22 import android.filterfw.core.Frame;
52 // Get input frame
53 Frame input = pullInput("in");
FrameFetch.java 22 import android.filterfw.core.Frame;
47 addOutputPort("frame", mFormat == null ? FrameFormat.unspecified() : mFormat);
51 Frame output = context.fetchFrame(mKey);
53 pushOutput("frame", output);
55 closeOutputPort("frame");
FrameSource.java 22 import android.filterfw.core.Frame;
35 @GenerateFieldPort(name = "frame", hasDefault = true)
36 private Frame mFrame = null;
47 addOutputPort("frame", mFormat);
54 pushOutput("frame", mFrame);
59 closeOutputPort("frame");
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
BitmapOverlayFilter.java 21 import android.filterfw.core.Frame;
41 private Frame mFrame;
96 // Get input frame
97 Frame input = pullInput("image");
100 // Create output frame
101 Frame output = context.getFrameManager().newFrame(inputFormat);
109 Frame frame = createBitmapFrame(context); local
111 Frame[] inputs = {input, frame};
132 Frame frame = context.getFrameManager().newFrame(format); local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameTargetFilter.java 20 * a new frame has been consumed.
26 * Called each time this filter receives a new frame. The implementer of this method is
27 * responsible for releasing the frame.
29 void onFramePushed(String filterName, Frame frame);
51 Frame frame = getConnectedInputPort("input").pullFrame(); local
53 frame.retain();
54 mListener.onFramePushed(getName(), frame); local
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameOwnerElement.h 25 #include "core/frame/FrameOwner.h"
33 class Frame;
41 Frame* contentFrame() const { return m_contentFrame; }
45 void setContentFrame(Frame&);
92 Frame* m_contentFrame;
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 61 struct Frame {
65 bool operator < (const Frame& rhs) const {
73 SortedVector<Frame> frames;
85 status_t initTexture(const Animation::Frame& frame);
  /frameworks/base/media/mca/effect/java/android/media/effect/
FilterEffect.java 22 import android.filterfw.core.Frame;
83 * Converts a texture into a Frame.
85 protected Frame frameFromTexture(int texId, int width, int height) {
90 Frame frame = manager.newBoundFrame(format, local
93 frame.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
94 return frame;
SingleFilterEffect.java 23 import android.filterfw.core.Frame;
70 Frame inputFrame = frameFromTexture(inputTexId, width, height);
71 Frame outputFrame = frameFromTexture(outputTexId, width, height);
73 Frame resultFrame = mFunction.executeWithArgList(mInputName, inputFrame);
  /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/chromium_org/third_party/tcmalloc/chromium/src/base/
elfcore.h 61 * snapshot of the frame pointer, stack pointer, and instruction
93 #define BP uregs[11] /* Frame pointer */
114 /* On x86 we provide an optimized version of the FRAME() macro, if the
118 typedef struct Frame {
122 } Frame;
123 #define FRAME(f) Frame f; \
170 /* The FRAME and SET_FRAME macros for x86_64. */
171 typedef struct Frame {
175 } Frame;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elfcore.h 61 * snapshot of the frame pointer, stack pointer, and instruction
93 #define BP uregs[11] /* Frame pointer */
114 /* On x86 we provide an optimized version of the FRAME() macro, if the
118 typedef struct Frame {
122 } Frame;
123 #define FRAME(f) Frame f; \
170 /* The FRAME and SET_FRAME macros for x86_64. */
171 typedef struct Frame {
175 } Frame;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestInterfaceCheckSecurity.idl 30 CheckSecurity=Frame,

Completed in 209 milliseconds

12 3 4 5 6 7 8 91011>>