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

1 2

  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.h 42 class Frame {
50 void enterScope(Frame&);
51 void leaveScope(Frame&);
59 void zapTo(Frame&);
66 Frame m_frame;
69 inline void HandleStack::enterScope(Frame& lastFrame)
80 inline void HandleStack::zapTo(Frame& lastFrame)
87 if (lastFrame.m_end != m_frame.m_end) { // Zapping to a frame in a different block.
105 inline void HandleStack::leaveScope(Frame& lastFrame)
113 if (lastFrame.m_end != m_frame.m_end) // Popping to a frame in a different block
    [all...]
  /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...]
mux.py 53 from mod_pywebsocket._stream_hybi import Frame
95 """Raised when an invalid multiplexed frame received."""
270 """A class that parses multiplexed frame payload."""
318 """Reads an inner frame.
321 InvalidMuxFrameException: when the inner frame is invalid.
325 raise InvalidMuxFrameException('No inner frame bits found')
335 # frame.
583 """Appends incoming frame data. Called when mux_handler dispatches
584 frame data to the corresponding application.
587 frame_data: incoming frame data
    [all...]
  /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/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...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 60 struct Frame {
64 bool operator < (const Frame& rhs) const {
72 SortedVector<Frame> frames;
  /external/webkit/Source/WebCore/page/
Frame.cpp 30 #include "Frame.h"
123 static WTF::RefCountedLeakCounter frameCounter("Frame");
126 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement)
130 return ownerElement->document()->frame();
133 static inline float parentPageZoomFactor(Frame* frame)
135 Frame* parent = frame->tree()->parent();
141 static inline float parentTextZoomFactor(Frame* frame)
211 RefPtr<Frame> frame = adoptRef(new Frame(page, ownerElement, client)); local
587 Frame* frame = *it; local
    [all...]
Frame.h 82 class Frame : public RefCounted<Frame>, public TiledBackingStoreClient {
84 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
92 ~Frame();
121 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame.
122 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
126 // ======== All public functions below this point are candidates to move out of Frame into another class. ========
145 static Frame* frameForWidget(const Widget*);
155 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
210 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*)
    [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...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
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...]
  /external/llvm/lib/MC/
MCStreamer.cpp 182 report_fatal_error("No open frame");
218 report_fatal_error("Starting a frame before finishing the previous one!");
220 MCDwarfFrameInfo Frame;
221 EmitCFIStartProcImpl(Frame);
223 FrameInfos.push_back(Frame);
226 void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
229 void MCStreamer::RecordProcStart(MCDwarfFrameInfo &Frame) {
230 Frame.Function = LastSymbol;
235 Frame.Begin = LastSymbol;
237 Frame.Begin = getContext().CreateTempSymbol()
    [all...]
MCDwarf.cpp     [all...]
  /external/libvpx/libwebm/
mkvparser.hpp 103 struct Frame
111 const Frame& GetFrame(int frame_index) const;
118 Frame* m_frames;
  /external/webp/src/demux/
demux.c 41 typedef struct Frame {
46 int is_fragment_; // this is a frame fragment (and not a full frame).
47 int frame_num_; // the referent frame number for use in assembling fragments.
50 struct Frame* next_;
51 } Frame;
67 Frame* frames_;
179 // Add a frame to the end of the list, ensuring the last frame is complete.
181 static int AddFrame(WebPDemuxer* const dmux, Frame* const frame)
304 Frame* frame; local
345 Frame* frame; local
416 Frame* frame; local
575 const Frame* const frame = dmux->frames_; local
806 const Frame* frame; local
840 const Frame* const frame = GetFrame(dmux, iter->frame_num); local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 208 struct Frame { /* stack frame for awk function calls */
217 struct Frame *frame = NULL; /* base of stack frames; dynamically allocated */ variable in typeref:struct:Frame
219 struct Frame *fp = NULL; /* frame pointer. bottom level unused */
235 if (frame == NULL) {
236 fp = frame = (struct Frame *) calloc(nframe += 100, sizeof(struct Frame));
    [all...]
  /prebuilts/devtools/tools/lib/
asm-analysis-4.0.jar 
asm-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-analysis-4.0.jar 
asm-3.3.1.jar 
asm-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/4.0/
asm-analysis-4.0.jar 
  /external/clang/lib/AST/
ExprConstant.cpp 268 /// A stack frame in the constexpr call stack.
272 /// Parent - The caller of this stack frame.
295 /// Temporaries - Temporary lvalues materialized within this stack frame.
367 /// BottomFrame - The frame in which evaluation started. This must be
425 // We will eventually hit BottomFrame, which has Index 1, so Frame can't
427 CallStackFrame *Frame = CurrentCall;
428 while (Frame->Index > CallIndex)
429 Frame = Frame->Caller;
430 return (Frame->Index == CallIndex) ? Frame : 0
    [all...]
  /prebuilts/misc/common/asm/
asm-4.0.jar 
  /prebuilts/sdk/tools/lib/
asm-4.0.jar 

Completed in 1069 milliseconds

1 2