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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.cpp 31 #include "core/frame/Frame.h"
35 #include "core/frame/LocalDOMWindow.h"
36 #include "core/frame/FrameHost.h"
37 #include "core/frame/Settings.h"
58 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame"));
60 Frame::Frame(FrameClient* client, FrameHost* host, FrameOwner* owner)
82 Frame::~Frame()
    [all...]
Frame.h 49 class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
54 virtual ~Frame();
67 FrameHost* host() const; // Null when the frame is detached.
85 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
100 Frame(FrameClient*, FrameHost*, FrameOwner*);
114 inline FrameClient* Frame::client() const
119 inline void Frame::clearClient()
124 inline LocalDOMWindow* Frame::domWindow() const
129 inline FrameOwner* Frame::owner() cons
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
stacktrace.py 11 """Models a stack-trace, which is a sequence of stack |Frame|s."""
16 def Add(self, frame):
17 assert(isinstance(frame, Frame))
18 self.frames += [frame]
31 class Frame(object):
32 """Models a stack frame in a |Stacktrace|. It might be symbolized or not."""
37 address: the absolute (virtual) address of the stack frame in the
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
stream.py 41 from mod_pywebsocket._stream_hybi import Frame
_stream_hybi.py 58 class Frame(object):
78 length: Frame length. Must be less than 2^63.
99 raise ValueError('Payload is too big for one frame')
103 """Creates a frame header.
139 def _filter_and_format_frame_object(frame, mask, frame_filters):
141 frame_filter.filter(frame)
144 frame.opcode, len(frame.payload), frame.fin,
145 frame.rsv1, frame.rsv2, frame.rsv3, mask
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
stream.py 41 from mod_pywebsocket._stream_hybi import Frame
_stream_hybi.py 58 class Frame(object):
78 length: Frame length. Must be less than 2^63.
99 raise ValueError('Payload is too big for one frame')
103 """Creates a frame header.
139 def _filter_and_format_frame_object(frame, mask, frame_filters):
141 frame_filter.filter(frame)
144 frame.opcode, len(frame.payload), frame.fin,
145 frame.rsv1, frame.rsv2, frame.rsv3, mask
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 8 A Frame widget is inserted between the master and the text, to hold
11 Place methods are redirected to the Frame widget however.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
21 self.frame = Frame(master)
22 self.vbar = Scrollbar(self.frame)
26 Text.__init__(self, self.frame, **kw)
30 # Copy geometry methods of self.frame without overriding Text
38 setattr(self, m, getattr(self.frame, m))
41 return str(self.frame)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 8 A Frame widget is inserted between the master and the text, to hold
11 Place methods are redirected to the Frame widget however.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
21 self.frame = Frame(master)
22 self.vbar = Scrollbar(self.frame)
26 Text.__init__(self, self.frame, **kw)
30 # Copy geometry methods of self.frame without overriding Text
38 setattr(self, m, getattr(self.frame, m))
41 return str(self.frame)
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/helpers/
vie_to_file_renderer.cc 20 struct Frame {
22 Frame(unsigned char* buffer,
39 DISALLOW_COPY_AND_ASSIGN(Frame);
84 // Signal that a frame is ready to be written to file.
130 test::Frame* frame; local
132 frame = new test::Frame(buffer, buffer_size, time_stamp, render_time);
134 // Reuse an already allocated frame.
135 frame = free_frame_queue_.front()
171 test::Frame* frame = render_queue_.front(); local
    [all...]
  /external/chromium_org/v8/src/compiler/
frame.h 20 class Frame {
22 Frame()
75 // Represents an offset from either the stack pointer or frame pointer.
  /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...]
  /external/chromium_org/net/websockets/
websocket_frame_test.cc 257 // Check that all combinations of alignment, frame offset and chunk size work
338 typedef WebSocketFrameHeader Frame;
341 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeContinuation));
342 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeText));
343 EXPECT_TRUE(Frame::IsKnownDataOpCode(Frame::kOpCodeBinary));
346 EXPECT_FALSE(Frame::IsKnownDataOpCode(Frame::kOpCodeClose))
    [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/lldb/test/unittest2/test/
test_result.py 256 class Frame(object):
260 self.assertFalse(result._is_relevant_tb_level(Frame))
262 Frame.tb_frame.f_globals['__unittest'] = True
263 self.assertTrue(result._is_relevant_tb_level(Frame))
  /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/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
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...]
  /dalvik/dx/src/com/android/dx/cf/code/
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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Frame.java 33 * This class provides description of frame.
36 public class Frame {
49 public Frame() {
57 * Constructor initializing all members of the Frame instance.
62 * frame id
64 * frame location
68 Frame(long threadID, long id, Location location, ArrayList vars) {
95 * Gets frame id.
104 * Sets new frame id.
107 * new frame i
183 Frame frame = (Frame) obj; local
    [all...]
  /external/chromium_org/net/quic/
quic_stream_sequencer_test.cc 110 QuicStreamFrame frame; local
111 frame.stream_id = 1;
112 frame.offset = byte_offset;
113 frame.data.Append(const_cast<char*>(data), strlen(data));
114 frame.fin = true;
115 sequencer_->OnStreamFrame(frame);
119 QuicStreamFrame frame; local
120 frame.stream_id = 1;
121 frame.offset = byte_offset;
122 frame.data.Append(const_cast<char*>(data), strlen(data))
    [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/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...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Frame.java 44 * A symbolic execution stack frame. A stack frame contains a set of local
51 public class Frame {
54 * The local variables and operand stack of this frame.
59 * The number of local variables of this frame.
69 * Constructs a new frame with the given size.
71 * @param nLocals the maximum number of local variables of the frame.
72 * @param nStack the maximum stack size of the frame.
74 public Frame(final int nLocals, final int nStack) {
80 * Constructs a new frame that is identical to the given frame.
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Frame.java 29 public abstract class Frame {
45 Frame(FrameFormat format, FrameManager frameManager) {
50 Frame(FrameFormat format, FrameManager frameManager, int bindingType, long bindingId) {
129 public void setDataFromFrame(Frame frame) {
130 setData(frame.getData());
141 public Frame release() {
149 public Frame retain() {
163 throw new RuntimeException("Attempting to modify read-only frame!");
201 * Called just before a frame is stored, such as when storing to a cache or context
    [all...]

Completed in 1360 milliseconds

1 2 3 4 5