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

1 2 3 4 5 6 7

  /external/v8/src/compiler/
frame.cc 5 #include "src/compiler/frame.h"
15 Frame::Frame(int fixed_frame_size_in_slots, const CallDescriptor* descriptor)
26 if (frame()->needs_frame() && !FLAG_turbo_sp_frame_access) {
39 DCHECK(frame()->needs_frame());
42 // No frame. Retrieve all parameters relative to stack pointer.
44 offset + ((frame()->GetSpToFpSlotCount() + sp_delta()) * kPointerSize);
frame.h 17 // Collects the spill slot and other frame slot requirements for a compiled
20 // code. Frame objects must be considered immutable once they've been
21 // instantiated and the basic information about the frame has been collected
22 // into them. Mutable state associated with the frame is stored separately in
31 // stack and asks the frame for more space.
37 // Every pointer in a frame has a slot id. On 32-bit platforms, doubles consume
41 // the callee's saved return address and 1 corresponding to the saved frame
45 // corresponding to the frame marker/JSFunction. The frame region immediately
47 // The callee-saved frame region below that starts at 4+spill_slot_count_
231 Frame* frame() const { return frame_; } function in class:v8::internal::compiler::FrameAccessState
    [all...]
  /external/curl/docs/examples/
curlgtk.c 74 GtkWidget *Window, *Frame, *Frame2;
85 Frame = gtk_frame_new(NULL);
86 gtk_frame_set_shadow_type(GTK_FRAME(Frame), GTK_SHADOW_OUT);
87 gtk_container_add(GTK_CONTAINER(Window), Frame);
90 gtk_container_add(GTK_CONTAINER(Frame), Frame2);
  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 88 DILineInfo Frame = getLineInfoForAddress(Address, Specifier);
89 InlineInfo.addFrame(Frame);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/autotest/client/common_lib/cros/network/
tcpdump_analyzer.py 24 class Frame(object):
25 """A frame from a packet capture."""
38 """The time of the frame, as a |datetime| object."""
44 """The bitrate used to transmit the frame, as an int."""
51 The MCS index used to transmit the frame, as an int.
53 The value may be None, if the frame was not transmitted
62 The SSID of the frame, as a string.
64 The value may be None, if the frame does not have an SSID.
71 """The time of the frame, in local time, as a string."""
75 def _fetch_frame_field_value(frame, field)
    [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...]
  /frameworks/base/libs/hwui/renderthread/
EglManager.h 32 class Frame {
71 Frame beginFrame(EGLSurface surface);
72 void damageFrame(const Frame& frame, const SkRect& dirty);
77 bool swapBuffers(const Frame& frame, const SkRect& screenDirty);
  /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/skia/include/private/
GrAuditTrail.h 69 Frame* frame = new Frame; local
71 fFrames.emplace_back(frame);
73 fStack.back()->fChildren.emplace_back(frame);
76 frame->fUniqueID = fUniqueID++;
77 frame->fName = name;
78 fStack.push_back(frame);
112 struct Frame : public Event {
127 SkTArray<Frame*> fStack
    [all...]
  /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/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 86 auto *Frame = InlinedContext.getMutableFrame(i);
87 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
  /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/opencv3/modules/videoio/src/
cap_pvapi.cpp 106 tPvFrame Frame;
109 IplImage *frame; member in class:CvCaptureCAM_PvAPI
117 frame = NULL;
215 //if(Camera.Frame.Status != ePvErrUnplugged && Camera.Frame.Status != ePvErrCancelled)
216 return PvCaptureQueueFrame(Camera.Handle, &(Camera.Frame), NULL) == ePvErrSuccess;
222 if (PvCaptureWaitForFrameDone(Camera.Handle, &(Camera.Frame), 1000) == ePvErrSuccess)
224 return frame;
526 if (frame)
528 cvReleaseImage(&frame);
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 61 struct Frame {
65 bool operator < (const Frame& rhs) const {
75 SortedVector<Frame> frames;
91 status_t initTexture(const Animation::Frame& frame);
  /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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_result.py 263 class Frame(object):
267 self.assertFalse(result._is_relevant_tb_level(Frame))
269 Frame.tb_frame.f_globals['__unittest'] = True
270 self.assertTrue(result._is_relevant_tb_level(Frame))
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_result.py 263 class Frame(object):
267 self.assertFalse(result._is_relevant_tb_level(Frame))
269 Frame.tb_frame.f_globals['__unittest'] = True
270 self.assertTrue(result._is_relevant_tb_level(Frame))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_result.py 263 class Frame(object):
267 self.assertFalse(result._is_relevant_tb_level(Frame))
269 Frame.tb_frame.f_globals['__unittest'] = True
270 self.assertTrue(result._is_relevant_tb_level(Frame))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_result.py 263 class Frame(object):
267 self.assertFalse(result._is_relevant_tb_level(Frame))
269 Frame.tb_frame.f_globals['__unittest'] = True
270 self.assertTrue(result._is_relevant_tb_level(Frame))

Completed in 1138 milliseconds

1 2 3 4 5 6 7