/third_party/rust/crates/regex/regex-syntax/src/hir/ |
D | visitor.rs | 68 stack: Vec<(&'a Hir, Frame<'a>)>, 73 enum Frame<'a> { enum 133 if let Frame::Alternation { .. } = x { in visit() 149 fn induct(&mut self, hir: &'a Hir) -> Option<Frame<'a>> { in induct() 151 HirKind::Repetition(ref x) => Some(Frame::Repetition(x)), in induct() 152 HirKind::Group(ref x) => Some(Frame::Group(x)), in induct() 155 Some(Frame::Concat { head: &x[0], tail: &x[1..] }) in induct() 159 Some(Frame::Alternation { head: &x[0], tail: &x[1..] }) in induct() 167 fn pop(&self, induct: Frame<'a>) -> Option<Frame<'a>> { in pop() 169 Frame::Repetition(_) => None, in pop() [all …]
|
/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/rust/crates/regex/regex-syntax/src/ast/ |
D | visitor.rs | 128 stack: Vec<(&'a Ast, Frame<'a>)>, 137 enum Frame<'a> { enum 237 if let Frame::Alternation { .. } = x { in visit() 260 ) -> Result<Option<Frame<'a>>, V::Err> { in induct() 266 Ast::Repetition(ref x) => Some(Frame::Repetition(x)), in induct() 267 Ast::Group(ref x) => Some(Frame::Group(x)), in induct() 270 Some(Frame::Concat { head: &x.asts[0], tail: &x.asts[1..] }) in induct() 273 Ast::Alternation(ref x) => Some(Frame::Alternation { in induct() 283 fn pop(&self, induct: Frame<'a>) -> Option<Frame<'a>> { in pop() 285 Frame::Repetition(_) => None, in pop() [all …]
|
/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/jinja2/ |
D | compiler.py | 61 def visitor(self: "CodeGenerator", node: nodes.BinExpr, frame: Frame) -> None: argument 85 def visitor(self: "CodeGenerator", node: nodes.UnaryExpr, frame: Frame) -> None: argument 165 class Frame: class 229 return Frame(self.eval_ctx, level=self.symbols.level + 1) 230 return Frame(self.eval_ctx, self) 389 def buffer(self, frame: Frame) -> None: argument 395 self, frame: Frame, force_unescaped: bool = False argument 422 def start_write(self, frame: Frame, node: t.Optional[nodes.Node] = None) -> None: argument 429 def end_write(self, frame: Frame) -> None: argument 435 self, s: str, frame: Frame, node: t.Optional[nodes.Node] = None argument [all …]
|
D | nativetypes.py | 10 from .compiler import Frame 63 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo argument 76 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo argument 82 self, node: nodes.Expr, frame: Frame, finalize: CodeGenerator._FinalizeInfo argument
|
/third_party/node/deps/v8/src/builtins/ |
D | frames.tq | 34 type Frame = FrameWithArguments|StubFrame; 36 extern macro LoadFramePointer(): Frame; 37 extern macro LoadParentFramePointer(): Frame; 40 macro LoadObjectFromFrame(f: Frame, o: constexpr int32): Object { 43 macro LoadPointerFromFrame(f: Frame, o: constexpr int32): RawPtr { 46 macro LoadIntptrFromFrame(f: Frame, o: constexpr int32): intptr { 52 operator '.function' macro LoadFunctionFromFrame(f: Frame): JSFunction { 62 operator '.caller' macro LoadCallerFromFrame(f: Frame): Frame { 64 return %RawDownCast<Frame>(result); 72 operator '.argument_count' macro LoadArgCFromFrame(f: Frame): intptr { [all …]
|
/third_party/node/deps/v8/src/compiler/ |
D | frame.h | 91 class V8_EXPORT_PRIVATE Frame : public ZoneObject { 93 explicit Frame(int fixed_frame_size_in_slots); 94 Frame(const Frame&) = delete; 95 Frame& operator=(const Frame&) = delete; 229 explicit FrameAccessState(const Frame* const frame) in FrameAccessState() 235 const Frame* frame() const { return frame_; } in frame() 269 const Frame* const frame_;
|
D | frame.cc | 13 Frame::Frame(int fixed_frame_size_in_slots) in Frame() function in v8::internal::compiler::Frame 20 void Frame::AlignFrame(int alignment) { in AlignFrame()
|
/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/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/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/skia/src/codec/ |
D | SkHeifCodec.h | 101 class Frame : public SkFrame { 103 Frame(int i) : INHERITED(i) {} in Frame() function 121 Frame* appendNewFrame(); 122 const Frame* frame(int i) const; 123 Frame* editFrameAt(int i); 135 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/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/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)
|
D | configdialog.py | 19 from tkinter.ttk import (Frame, LabelFrame, Button, Checkbutton, Entry, Label, 114 self.frame = frame = Frame(self, padding="5px") 158 outer = Frame(self.frame, padding=2) 159 buttons_frame = Frame(outer, padding=2) 170 Frame(outer, height=2, borderwidth=0).pack(side=TOP) 288 class FontPage(Frame): 344 frame_font_name = Frame(frame_font) 345 frame_font_param = Frame(frame_font) 458 class HighPage(Frame): 665 self.frame_color_set = Frame(frame_custom, style='frame_color_set.TFrame') [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/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/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/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()
|