/third_party/jerryscript/tests/debugger/ |
D | do_backtrace.expected | 19 Frame 1: tests/debugger/do_backtrace.js:33 (in test() at line:30, col:1) 21 Frame 1: tests/debugger/do_backtrace.js:33 (in test() at line:30, col:1) 24 Frame 0: tests/debugger/do_backtrace.js:23 (in foo() at line:21, col:1) 25 Frame 1: tests/debugger/do_backtrace.js:33 (in test() at line:30, col:1) 26 Frame 2: tests/debugger/do_backtrace.js:40 28 Frame 0: tests/debugger/do_backtrace.js:23 (in foo() at line:21, col:1) 29 Frame 1: tests/debugger/do_backtrace.js:33 (in test() at line:30, col:1) 30 Frame 2: tests/debugger/do_backtrace.js:40 32 Frame 0: tests/debugger/do_backtrace.js:23 (in foo() at line:21, col:1) 33 Frame 1: tests/debugger/do_backtrace.js:33 (in test() at line:30, col:1) [all …]
|
D | do_step.expected | 8 Frame 0: tests/debugger/do_step.js:19 (in g() at line:17, col:3) 9 Frame 1: tests/debugger/do_step.js:22 (in f1() at line:15, col:1) 10 Frame 2: tests/debugger/do_step.js:32 14 Frame 0: tests/debugger/do_step.js:23 (in f1() at line:15, col:1) 15 Frame 1: tests/debugger/do_step.js:32 23 Frame 0: tests/debugger/do_step.js:29 (in f2() at line:26, col:1) 24 Frame 1: tests/debugger/do_step.js:33
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
D | Thread.hpp | 70 class Frame class 73 using ID = dbg::ID<Frame>; 75 inline Frame(ID id, std::string function); 99 Frame::Frame(ID id, std::string function) in Frame() function in vk::dbg::Frame 110 using UpdateFrame = std::function<void(Frame &)>; 139 Frame frame() const; 142 std::vector<Frame> stack() const; 195 std::vector<std::shared_ptr<Frame>> frames GUARDED_BY(mutex); 197 std::weak_ptr<Frame> pauseAtFrame GUARDED_BY(mutex);
|
D | Context.hpp | 31 class Frame; 100 std::shared_ptr<Frame> createFrame( 105 std::shared_ptr<Frame> get(ID<Frame>);
|
/third_party/flutter/skia/include/android/ |
D | SkAnimatedImage.h | 118 struct Frame { struct 135 Frame(); argument 137 bool copyTo(Frame*) const; 151 Frame fDisplayFrame; 152 Frame fDecodingFrame; 153 Frame fRestoreFrame;
|
/third_party/skia/include/android/ |
D | SkAnimatedImage.h | 118 struct Frame { struct 135 Frame(); argument 137 bool copyTo(Frame*) const; 150 Frame fDisplayFrame; 151 Frame fDecodingFrame; 152 Frame fRestoreFrame;
|
/third_party/node/test/common/ |
D | http2.js | 61 class Frame { class 75 class SettingsFrame extends Frame { 84 class DataFrame extends Frame { 102 class HeadersFrame extends Frame { 120 class PingFrame extends Frame { 129 class AltSvcFrame extends Frame { 139 Frame, property
|
/third_party/skia/src/codec/ |
D | SkHeifCodec.h | 95 class Frame : public SkFrame { 97 Frame(int i) : INHERITED(i) {} in Frame() function 115 Frame* appendNewFrame(); 116 const Frame* frame(int i) const; 117 Frame* editFrameAt(int i); 129 std::vector<Frame> fFrames;
|
D | SkWebpCodec.h | 55 class Frame : public SkFrame { 57 Frame(int i, SkEncodedInfo::Alpha alpha) in Frame() function 80 Frame* appendNewFrame(bool hasAlpha); 81 const Frame* frame(int i) const; 93 std::vector<Frame> fFrames;
|
/third_party/python/Lib/idlelib/ |
D | statusbar.py | 1 from tkinter.ttk import Label, Frame 4 class MultiStatusBar(Frame): 7 Frame.__init__(self, master, **kw) 24 from tkinter.ttk import Frame, Button 29 frame = Frame(top)
|
D | help_about.py | 8 from tkinter import Toplevel, Frame, Label, Button, PhotoImage 63 frame = Frame(self, borderwidth=2, relief=SUNKEN) 64 frame_buttons = Frame(self) 71 frame_background = Frame(frame, bg=self.bg) 98 Frame(frame_background, borderwidth=1, relief=SUNKEN, 109 py_buttons = Frame(frame_background, bg=self.bg) 124 Frame(frame_background, borderwidth=1, relief=SUNKEN, 132 idle_buttons = Frame(frame_background, bg=self.bg)
|
/third_party/flutter/skia/src/codec/ |
D | SkWebpCodec.h | 55 class Frame : public SkFrame { 57 Frame(int i, SkEncodedInfo::Alpha alpha) in Frame() function 80 Frame* appendNewFrame(bool hasAlpha); 81 const Frame* frame(int i) const; 93 std::vector<Frame> fFrames;
|
D | SkHeifCodec.h | 94 class Frame : public SkFrame { 96 Frame(int i) : INHERITED(i) {} in Frame() function 114 Frame* appendNewFrame(); 115 const Frame* frame(int i) const; 127 std::vector<Frame> fFrames;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFStreamer.cpp | 56 void MipsELFStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { in EmitCFIStartProcImpl() argument 57 Frame.Begin = getContext().createTempSymbol(); in EmitCFIStartProcImpl() 58 MCELFStreamer::EmitLabel(Frame.Begin); in EmitCFIStartProcImpl() 67 void MipsELFStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { in EmitCFIEndProcImpl() argument 68 Frame.End = getContext().createTempSymbol(); in EmitCFIEndProcImpl() 69 MCELFStreamer::EmitLabel(Frame.End); in EmitCFIEndProcImpl()
|
/third_party/curl/docs/examples/ |
D | curlgtk.c | 75 GtkWidget *Window, *Frame, *Frame2; in main() local 86 Frame = gtk_frame_new(NULL); in main() 87 gtk_frame_set_shadow_type(GTK_FRAME(Frame), GTK_SHADOW_OUT); in main() 88 gtk_container_add(GTK_CONTAINER(Window), Frame); in main() 91 gtk_container_add(GTK_CONTAINER(Frame), Frame2); in main()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/demux/ |
D | demux.c | 43 typedef struct Frame { struct 53 struct Frame* next_; argument 54 } Frame; typedef 70 Frame* frames_; 71 Frame** frames_tail_; 185 static int AddFrame(WebPDemuxer* const dmux, Frame* const frame) { in AddFrame() 186 const Frame* const last_frame = *dmux->frames_tail_; in AddFrame() 198 Frame* const frame) { in SetFrameInfo() 211 MemBuffer* const mem, Frame* const frame) { in StoreFrame() 296 Frame** frame) { in NewFrame() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/demux/ |
D | demux.c | 43 typedef struct Frame { struct 53 struct Frame* next_; argument 54 } Frame; typedef 70 Frame* frames_; 71 Frame** frames_tail_; 185 static int AddFrame(WebPDemuxer* const dmux, Frame* const frame) { in AddFrame() 186 const Frame* const last_frame = *dmux->frames_tail_; in AddFrame() 198 Frame* const frame) { in SetFrameInfo() 211 MemBuffer* const mem, Frame* const frame) { in StoreFrame() 300 Frame** frame) { in NewFrame() [all …]
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_searchbase.py | 8 from tkinter.ttk import Frame 79 self.dialog.frame = Frame(self.root) 92 self.dialog.frame = Frame(self.root) 100 self.dialog.frame = Frame(self.root) 111 self.dialog.frame = Frame(self.root) 143 self.dialog.frame = Frame(self.root) 144 self.dialog.buttonframe = Frame(self.dialog.frame) 149 self.dialog.frame = Frame(self.root)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCDwarf.cpp | 1482 void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) { in EmitCompactUnwind() argument 1508 uint32_t Encoding = Frame.CompactUnwindEncoding; in EmitCompactUnwind() 1513 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() 1519 Streamer.EmitSymbolValue(Frame.Begin, Size); in EmitCompactUnwind() 1522 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin, in EmitCompactUnwind() 1523 *Frame.End, 0); in EmitCompactUnwind() 1532 if (!DwarfEHFrameOnly && Frame.Personality) in EmitCompactUnwind() 1533 Streamer.EmitSymbolValue(Frame.Personality, Size); in EmitCompactUnwind() 1538 Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding); in EmitCompactUnwind() 1539 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() [all …]
|
/third_party/boost/libs/test/test/baseline-outputs/ |
D | messages-in-datasets-test.pattern | 25 …Frame><![CDATA[sample = util/test_image1.jpg; ]]></Frame></Context></Message><Message file="xxx/me…
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/ |
D | layer_tree.dart | 21 void preroll(Frame frame, {bool ignoreRasterCache = false}) { 31 void paint(Frame frame, {bool ignoreRasterCache = false}) { 41 class Frame { 48 Frame(this.canvas, this.rasterCache); 64 Frame acquireFrame(SkCanvas canvas) { 65 return Frame(canvas, rasterCache);
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
D | DemoApplet.java | 15 import java.awt.Frame; 22 private Frame demoFrame; 25 protected abstract Frame createDemoFrame(DemoApplet applet); in createDemoFrame() 26 protected Dimension getDefaultFrameSize(DemoApplet applet, Frame f) { in getDefaultFrameSize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
D | CoroElide.cpp | 69 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences() argument 71 if (AA.alias(Op, Frame) != NoAlias) in operandReferences() 79 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute() argument 80 Function &F = *Frame->getFunction(); in removeTailCallAttribute() 83 if (Call->isTailCall() && operandReferences(Call, Frame, AA)) { in removeTailCallAttribute() 131 auto *Frame = new AllocaInst(FrameTy, DL.getAllocaAddrSpace(), "", InsertPt); in elideHeapAllocations() local 133 new BitCastInst(Frame, Type::getInt8PtrTy(C), "vFrame", InsertPt); in elideHeapAllocations() 142 removeTailCallAttribute(Frame, AA); in elideHeapAllocations()
|
/third_party/skia/src/android/ |
D | SkAnimatedImage.cpp | 111 SkAnimatedImage::Frame::Frame() in Frame() function in SkAnimatedImage::Frame 115 bool SkAnimatedImage::Frame::init(const SkImageInfo& info, OnInit onInit) { in init() 141 bool SkAnimatedImage::Frame::copyTo(Frame* dst) const { in copyTo() 230 for (Frame* frame : { &fRestoreFrame, &fDecodingFrame }) { in decodeNextFrame() 262 auto validPriorFrame = [&frameInfo, &frameToDecode](const Frame& frame) { in decodeNextFrame() 299 if (!fDecodingFrame.init(info, Frame::OnInit::kRestoreIfNecessary)) { in decodeNextFrame()
|
/third_party/flutter/skia/src/android/ |
D | SkAnimatedImage.cpp | 109 SkAnimatedImage::Frame::Frame() in Frame() function in SkAnimatedImage::Frame 113 bool SkAnimatedImage::Frame::init(const SkImageInfo& info, OnInit onInit) { in init() 139 bool SkAnimatedImage::Frame::copyTo(Frame* dst) const { in copyTo() 228 for (Frame* frame : { &fRestoreFrame, &fDecodingFrame }) { in decodeNextFrame() 259 auto validPriorFrame = [&frameInfo, &frameToDecode](const Frame& frame) { in decodeNextFrame() 296 if (!fDecodingFrame.init(info, Frame::OnInit::kRestoreIfNecessary)) { in decodeNextFrame()
|