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

1 2 3

  /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...]
  /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))
  /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...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 428 unsigned Frame = 0;
432 OS << Indent << '#' << Frame++ << ' ';
  /external/lldb/examples/python/
crashlog.py 108 for frame in self.frames:
109 frame.dump(prefix + ' ')
129 class Frame:
130 """Class that represents a stack frame in a thread in a darwin crash log"""
324 thread.frames.append (CrashLog.Frame(int(frame_match.group(1)), int(frame_match.group(3), 0), frame_match.group(4)))
326 print 'error: frame regex failed for line: "%s"' % line
434 for the first frame of the crashed thread.'''
561 for (frame_idx, frame) in enumerate(thread.frames):
562 frame_pc = frame.pc
564 if frame.function
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 278 // size within debug frame sections. While DWARF is supposed to be independent
563 DILineInfo Frame;
566 Frame)) {
567 InliningInfo.addFrame(Frame);
576 DILineInfo Frame;
580 Frame.FunctionName = Name;
583 // For the topmost frame, initialize the line table of this
588 Frame);
593 Frame.FileName);
594 Frame.Line = CallLine
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Frame.java 37 final class Frame {
41 * instruction, the state of the frame at the end of current basic block is
43 * of this so called "output frame". In visitMaxs, a fix point algorithm is
44 * used to compute the "input frame" of each basic block, i.e. the stack map
45 * frame at the begining of the basic block, starting from the input frame
57 * Output stack map frames are computed relatively to the input frame of the
60 * "the type at position x in the input frame locals" or "the type at
61 * position x from the top of the input frame stack" or even "the type at
62 * position x in the input frame, with y more (or less) array dimensions".
    [all...]
  /external/chromium_org/extensions/browser/app_window/
app_window.h 98 enum Frame {
99 FRAME_CHROME, // Chrome-style window frame.
147 Frame frame; member in struct:extensions::AppWindow::CreateParams

Completed in 989 milliseconds

1 2 3