| /external/clang/lib/Analysis/ |
| AnalysisDeclContext.cpp | 452 unsigned Frame = 0; 456 OS << Indent << '#' << Frame++ << ' ';
|
| /external/llvm/lib/DebugInfo/DWARF/ |
| DWARFContext.cpp | 348 // size within debug frame sections. While DWARF is supposed to be independent 531 DILineInfo Frame; 535 Spec.FLIKind, Frame)) 536 InliningInfo.addFrame(Frame); 544 DILineInfo Frame; 548 Frame.FunctionName = Name; 551 // For the topmost frame, initialize the line table of this 557 Spec.FLIKind, Frame); 563 Spec.FLIKind, Frame.FileName); 564 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/deqp/modules/egl/ |
| teglBufferAgeTests.cpp | 156 struct Frame 158 Frame (int width_, int height_); 164 Frame::Frame (int width_, int height_) 175 void generateRandomFrame (Frame* dst, const vector<BufferAgeTest::DrawType>& drawTypes, de::Random& rnd) 192 typedef vector<Frame> FrameSequence; 208 void render (int width, int height, const Frame& frame) const; 258 void GLES2Renderer::render (int width, int height, const Frame& frame) cons [all...] |
| teglPartialUpdateTests.cpp | 144 struct Frame 146 Frame (int width_, int height_); 152 Frame::Frame (int width_, int height_) 162 void generateRandomFrame (Frame& dst, const vector<PartialUpdateTest::DrawType>& drawTypes, de::Random& rnd) 180 typedef vector<Frame> FrameSequence; 196 void render (int width, int height, const Frame& frame) const; 246 void GLES2Renderer::render (int width, int height, const Frame& frame) cons [all...] |
| teglSwapBuffersWithDamageTests.cpp | 112 struct Frame 114 Frame (int width_, int height_); 120 Frame::Frame (int width_, int height_) 126 typedef vector<Frame> FrameSequence; 138 void render (int width, int height, const Frame& frame) const; 188 void GLES2Renderer::render (int width, int height, const Frame& frame) const 190 for (size_t drawNdx = 0; drawNdx < frame.draws.size(); drawNdx++ [all...] |
| /external/llvm/lib/Target/X86/AsmParser/ |
| X86AsmInstrumentation.cpp | 92 // RSP is used as a frame register. So, we need to select some 93 // register as a frame register and temprorary override current CFA [all...] |
| /external/valgrind/coregrind/m_debuginfo/ |
| image.c | 96 /* A frame. The first 4 bytes of |data| give the kind of the frame, 98 typedef struct { UChar* data; SizeT n_data; } Frame; 213 /* "Do" a transaction: that is, send the given frame to the server and 214 return the frame it sends back. Caller owns the resulting frame 217 static Frame* do_transaction ( Int sd, const Frame* req ) 250 /* Allocate a Frame to hold the result data, and read into it. */ 253 Frame* res = ML_(dinfo_zalloc)("di.do_transaction.1", sizeof(Frame)) [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| setjmp.h | 120 __MINGW_EXTENSION unsigned __int64 Frame;
|
| /external/libvpx/libvpx/third_party/libwebm/ |
| mkvmuxer.cpp | 122 // Frame Class 124 Frame::Frame() 138 Frame::~Frame() { 143 bool Frame::CopyFrom(const Frame& frame) { 147 if (frame.length() > 0 && frame.frame() != NULL & 1778 Frame frame; local 1795 Frame frame; local 1810 Frame frame; local 1822 Frame frame; local 2272 Frame* const frame = frames_[i]; local 3190 Frame*& frame = frames_[i]; local [all...] |
| mkvparser.hpp | 98 struct Frame { 105 const Frame& GetFrame(int frame_index) const; 114 Frame* m_frames;
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/ |
| mkvmuxer.cpp | 121 // Frame Class 123 Frame::Frame() 136 Frame::~Frame() { 141 bool Frame::Init(const uint8* frame, uint64 length) { 151 memcpy(frame_, frame, static_cast<size_t>(length_)); 155 bool Frame::AddAdditionalData(const uint8* additional, uint64 length, 1001 // for a frame using exactly 4 bytes 2101 Frame* const frame = frames_[i]; local 3129 Frame*& frame = frames_[i]; local [all...] |
| /external/llvm/lib/MC/ |
| MCDwarf.cpp | [all...] |
| MCStreamer.cpp | 180 report_fatal_error("No open frame"); 218 report_fatal_error("Starting a frame before finishing the previous one!"); 220 MCDwarfFrameInfo Frame; 221 Frame.IsSimple = IsSimple; 222 EmitCFIStartProcImpl(Frame); 229 Frame.CurrentCfaRegister = Inst.getRegister(); 234 DwarfFrameInfos.push_back(Frame); 237 void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { 246 void MCStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { 247 // Put a dummy non-null value in Frame.End to mark that this frame has bee [all...] |
| /external/opencv3/3rdparty/jinja2/ |
| compiler.py | 106 # frames or because they are special for the frame) 138 class Frame(object): 145 # a toplevel frame is the root + soft frames such as if conditions. 148 # the root frame is basically just the outermost frame, so no if 158 # this for example affects {% filter %} or {% macro %}. If a frame 169 # the parent of this frame 211 """Return an inner frame.""" 212 return Frame(self.eval_ctx, self) 215 """Return a soft frame. A soft frame may not be modified a [all...] |
| /external/opencv3/3rdparty/libwebp/demux/ |
| demux.c | 47 typedef struct Frame { 52 int is_fragment_; // this is a frame fragment (and not a full frame). 53 int frame_num_; // the referent frame number for use in assembling fragments. 56 struct Frame* next_; 57 } Frame; 73 Frame* frames_; 74 Frame** frames_tail_; 186 // Add a frame to the end of the list, ensuring the last frame is complete 310 Frame* frame; local 353 Frame* frame; local 425 Frame* frame; local 590 const Frame* const frame = dmux->frames_; local 825 const Frame* frame; local 859 const Frame* const frame = GetFrame(dmux, iter->frame_num); local [all...] |
| /external/opencv3/doc/pattern_tools/ |
| svgfig.py | [all...] |
| /external/valgrind/auxprogs/ |
| valgrind-di-server.c | 56 * Check that all error cases result in a FAIL frame being returned. 58 * image.c: don't assert in cases where a FAIL frame is returned; 370 /* A frame. The first 4 bytes of |data| give the kind of the frame, 372 typedef struct { UChar* data; SizeT n_data; } Frame; 415 static Frame* mk_Frame_asciiz ( const char* tag, const char* str ) 418 Frame* f = calloc(sizeof(Frame), 1); 428 static Bool parse_Frame_noargs ( Frame* fr, const HChar* tag ) 438 static Bool parse_Frame_asciiz ( Frame* fr, const HChar* tag [all...] |
| /external/webp/src/demux/ |
| demux.c | 43 typedef struct Frame { 53 struct Frame* next_; 54 } Frame; 70 Frame* frames_; 71 Frame** frames_tail_; 183 // Add a frame to the end of the list, ensuring the last frame is complete. 185 static int AddFrame(WebPDemuxer* const dmux, Frame* const frame) { 186 const Frame* const last_frame = *dmux->frames_tail_ 312 Frame* frame; local 393 Frame* frame; local 562 const Frame* const frame = dmux->frames_; local 674 Frame* const frame = (Frame*)WebPSafeCalloc(1ULL, sizeof(*frame)); local 851 const Frame* frame; local [all...] |
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/ |
| mkvparser.hpp | 103 struct Frame
111 const Frame& GetFrame(int frame_index) const;
118 Frame* m_frames;
|
| /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/gdb/darwin-x86/lib/python2.7/lib-tk/ |
| ttk.py | 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label", 720 class Frame(Widget): 721 """Ttk Frame widget is a container, used to group other widgets 725 """Construct a Ttk Frame with parent master. 735 Widget.__init__(self, master, "ttk::frame", kw) [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
| ttk.py | 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label", 720 class Frame(Widget): 721 """Ttk Frame widget is a container, used to group other widgets 725 """Construct a Ttk Frame with parent master. 735 Widget.__init__(self, master, "ttk::frame", kw) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
| ttk.py | 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label", 720 class Frame(Widget): 721 """Ttk Frame widget is a container, used to group other widgets 725 """Construct a Ttk Frame with parent master. 735 Widget.__init__(self, master, "ttk::frame", kw) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
| ttk.py | 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label", 720 class Frame(Widget): 721 """Ttk Frame widget is a container, used to group other widgets 725 """Construct a Ttk Frame with parent master. 735 Widget.__init__(self, master, "ttk::frame", kw) [all...] |