Home
last modified time | relevance | path

Searched refs:Frame (Results 1 – 25 of 531) sorted by relevance

12345678910>>...22

/external/rust/crates/quiche/src/
Dframe.rs41 pub enum Frame { enum
160 impl Frame { implementation
163 ) -> Result<Frame> { in from_bytes() argument
178 Frame::Padding { len } in from_bytes()
181 0x01 => Frame::Ping, in from_bytes()
185 0x04 => Frame::ResetStream { in from_bytes()
191 0x05 => Frame::StopSending { in from_bytes()
201 Frame::Crypto { data } in from_bytes()
204 0x07 => Frame::NewToken { in from_bytes()
210 0x10 => Frame::MaxData { in from_bytes()
[all …]
/external/rust/crates/quiche/src/h3/
Dframe.rs48 pub enum Frame { enum
85 impl Frame { implementation
88 ) -> Result<Frame> { in from_bytes() argument
93 DATA_FRAME_TYPE_ID => Frame::Data { in from_bytes()
97 HEADERS_FRAME_TYPE_ID => Frame::Headers { in from_bytes()
101 CANCEL_PUSH_FRAME_TYPE_ID => Frame::CancelPush { in from_bytes()
111 GOAWAY_FRAME_TYPE_ID => Frame::GoAway { in from_bytes()
115 MAX_PUSH_FRAME_TYPE_ID => Frame::MaxPushId { in from_bytes()
119 _ => Frame::Unknown, in from_bytes()
129 Frame::Data { payload } => { in to_bytes()
[all …]
/external/rust/crates/regex-syntax/src/hir/
Dvisitor.rs68 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 …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DFrame.java29 public class Frame{ class
55 public Frame(final int maxLocals, final int maxStack) { in Frame() method in Frame
63 public Frame(final LocalVariables locals, final OperandStack stack) { in Frame() method in Frame
73 final Frame f = new Frame(locals.getClone(), stack.getClone()); in clone()
80 public Frame getClone() { in getClone()
81 return (Frame) clone(); in getClone()
108 if (!(o instanceof Frame)) { in equals()
111 final Frame f = (Frame) o; in equals()
140 Frame._this = _this; in setThis()
DControlFlowGraph.java69 private final Map<InstructionContext, Frame> inFrames; // key: the last-executed JSR
74 private final Map<InstructionContext, Frame> outFrames; // key: the last-executed JSR
120 public Frame getOutFrame(final ArrayList<InstructionContext> execChain) { in getOutFrame()
123 Frame org; in getOutFrame()
137 public Frame getInFrame() { in getInFrame()
138 Frame org; in getInFrame()
166 …public boolean execute(final Frame inFrame, final ArrayList<InstructionContext> execPreds, final I… in execute()
180 Frame inF = inFrames.get(lastExecutionJSR()); in execute()
197 final Frame workingFrame = inF.getClone(); in execute()
241 private boolean mergeInFrames(final Frame inFrame) { in mergeInFrames()
[all …]
/external/perfetto/src/profiling/common/
Dcallstack_trie.h60 struct Frame { struct
61 Frame(Interned<Mapping> m, Interned<std::string> fn_name, uint64_t pc) in Frame() argument
67 bool operator<(const Frame& other) const { argument
72 bool operator==(const Frame& other) const {
109 explicit Node(Interned<Frame> frame) : Node(frame, 0, nullptr) {} in Node()
113 Node(Interned<Frame> frame, uint64_t id) in Node()
115 Node(Interned<Frame> frame, uint64_t id, Node* parent) in Node()
123 Node* GetOrCreateChild(const Interned<Frame>& loc);
130 const Interned<Frame> location_;
138 Node* AddChild(const Interned<Frame>& loc,
[all …]
Dcallstack_trie.cc30 const Interned<Frame>& loc) { in GetOrCreateChild()
37 std::vector<Interned<Frame>> GlobalCallstackTrie::BuildInverseCallstack( in BuildInverseCallstack()
39 std::vector<Interned<Frame>> res; in BuildInverseCallstack()
66 const std::vector<Interned<Frame>>& callstack) { in CreateCallsite()
71 const Interned<Frame>& loc = *it; in CreateCallsite()
99 Interned<Frame> GlobalCallstackTrie::InternCodeLocation( in InternCodeLocation()
114 Frame frame(mapping_interner_.Intern(std::move(map)), in InternCodeLocation()
120 Interned<Frame> GlobalCallstackTrie::MakeRootFrame() { in MakeRootFrame()
123 Frame frame(mapping_interner_.Intern(std::move(map)), in MakeRootFrame()
130 const Interned<Frame>& loc, in AddChild()
[all …]
/external/swiftshader/src/Vulkan/Debug/
DThread.hpp70 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);
/external/rust/crates/regex-syntax/src/ast/
Dvisitor.rs128 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 …]
/external/libchrome/base/profiler/
Dstack_sampling_profiler.h115 struct BASE_EXPORT Frame { struct
116 Frame(uintptr_t instruction_pointer, size_t module_index);
117 ~Frame();
120 Frame();
154 Sample(const Frame& frame);
155 Sample(const std::vector<Frame>& frames);
158 std::vector<Frame> frames;
347 BASE_EXPORT bool operator==(const StackSamplingProfiler::Frame& a,
348 const StackSamplingProfiler::Frame& b);
349 BASE_EXPORT bool operator<(const StackSamplingProfiler::Frame& a,
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dtraceback.cc38 std::string Traceback::Frame::ToString() const { in ToString()
45 for (const Frame& frame : Frames()) { in ToString()
51 std::vector<Traceback::Frame> Traceback::Frames() const { in Frames()
54 std::vector<Traceback::Frame> frames; in Frames()
57 frames.push_back(Frame{ in Frames()
103 py::class_<Traceback::Frame>(m, "Frame") in BuildTracebackSubmodule()
104 .def_readonly("file_name", &Traceback::Frame::file_name) in BuildTracebackSubmodule()
105 .def_readonly("function_name", &Traceback::Frame::function_name) in BuildTracebackSubmodule()
107 &Traceback::Frame::function_start_line) in BuildTracebackSubmodule()
108 .def_readonly("line_num", &Traceback::Frame::line_num) in BuildTracebackSubmodule()
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DFrame.java24 public class Frame { class
37 public Frame(int locals, int stack) { in Frame() method in Frame
151 public Frame copy() { in copy()
152 Frame frame = new Frame(locals.length, stack.length); in copy()
165 public Frame copyStack() { in copyStack()
166 Frame frame = new Frame(locals.length, stack.length); in copyStack()
179 public boolean mergeStack(Frame frame) { in mergeStack()
209 public boolean merge(Frame frame) { in merge()
DAnalyzer.java88 private Frame[] frames;
120 public Frame[] analyze(CtClass clazz, MethodInfo method) throws BadBytecode { in analyze()
138 frames = new Frame[codeLength]; in analyze()
162 public Frame[] analyze(CtMethod method) throws BadBytecode { in analyze()
172 Frame frame = frames[pos].copy(); in analyzeNextEntry()
232 private Frame firstFrame(MethodInfo method, int maxLocals, int maxStack) { in firstFrame()
235 Frame first = new Frame(maxLocals, maxStack); in firstFrame()
275 private void merge(IntQueue queue, Frame frame, int target) { in merge()
276 Frame old = frames[target]; in merge()
291 private void mergeExceptionHandlers(IntQueue queue, MethodInfo method, int pos, Frame frame) { in mergeExceptionHandlers()
[all …]
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
DOutboundFlowController.java122 OutboundFlowState.Frame frame = state.newFrame(source, outFinished); in data()
229 final Queue<Frame> pendingWriteQueue;
238 pendingWriteQueue = new ArrayDeque<Frame>(2); in OutboundFlowState()
293 Frame newFrame(Buffer data, boolean endStream) { in newFrame()
294 return new Frame(data, endStream); in newFrame()
307 private Frame peek() { in peek()
318 Frame pendingWrite = peek(); in writeBytes()
331 Frame partialFrame = pendingWrite.split(maxBytes); in writeBytes()
346 private final class Frame { class in OutboundFlowController.OutboundFlowState
351 Frame(Buffer data, boolean endStream) { in Frame() method in OutboundFlowController.OutboundFlowState.Frame
[all …]
/external/python/cpython2/Tools/webchecker/
Dtktools.py78 if name: frame = Frame(parent, class_=class_, name=name)
79 else: frame = Frame(parent, class_=class_)
81 if name: frame = Frame(parent, name=name)
82 else: frame = Frame(parent)
93 vbarframe = Frame(frame, borderwidth=0)
98 corner = Frame(vbarframe, width=sbwidth, height=sbwidth)
223 frame = Frame(parent)
258 frame = Frame(parent)
282 if class_: frame = Frame(master, class_=class_, name=name)
283 else: frame = Frame(master, name=name)
[all …]
/external/pigweed/pw_hdlc/
Ddecoder_test.cc29 TEST(Frame, Fields) { in TEST() argument
32 auto result = Frame::Parse(kFrameData); in TEST()
34 Frame& frame = result.value(); in TEST()
44 TEST(Frame, MultibyteAddress) { in TEST() argument
47 auto result = Frame::Parse(kFrameData); in TEST()
49 Frame& frame = result.value(); in TEST()
59 TEST(Frame, MultibyteAddressTooLong) { in TEST() argument
65 auto result = Frame::Parse(kFrameData); in TEST()
74 [](const Result<Frame>&) { FAIL(); }); in TEST() argument
81 [&status](const Result<Frame>& result) { status = result.status(); }); in TEST()
Ddecoder.cc27 Result<Frame> Frame::Parse(ConstByteSpan frame) { in Parse()
36 return Frame( in Parse()
40 Result<Frame> Decoder::Process(const byte new_byte) { in Process()
65 return Frame::Parse(buffer_.first(completed_frame_size)); in Process()
126 if (current_frame_size_ < Frame::kMinSizeBytes) { in CheckFrame()
/external/eigen/demos/opengl/
Dcamera.h17 class Frame
22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(),
26 Frame lerp(float alpha, const Frame& other) const in lerp()
28 return Frame((1.f-alpha)*position + alpha * other.position, in lerp()
66 void setFrame(const Frame& f);
67 const Frame& frame(void) const { return mFrame; } in frame()
102 Frame mFrame;
/external/perfetto/src/ipc/
Dclient_impl.cc91 Frame frame; in BindService()
93 Frame::BindService* req = frame.mutable_msg_bind_service(); in BindService()
101 qr.type = Frame::kMsgBindServiceFieldNumber; in BindService()
119 Frame frame; in BeginInvoke()
121 Frame::InvokeMethod* req = frame.mutable_msg_invoke_method(); in BeginInvoke()
133 qr.type = Frame::kMsgInvokeMethodFieldNumber; in BeginInvoke()
141 bool ClientImpl::SendFrame(const Frame& frame, int fd) { in SendFrame()
221 while (std::unique_ptr<Frame> frame = frame_deserializer_.PopNextFrame()) in OnDataAvailable()
225 void ClientImpl::OnFrameReceived(const Frame& frame) { in OnFrameReceived()
235 if (req.type == Frame::kMsgBindServiceFieldNumber && in OnFrameReceived()
[all …]
Dclient_impl_unittest.cc88 void(const Frame::InvokeMethod&, Frame::InvokeMethodReply*));
141 while (std::unique_ptr<Frame> frame = frame_deserializer.PopNextFrame()) in OnDataAvailable()
145 void OnFrameReceived(const Frame& req) { in OnFrameReceived()
150 Frame reply; in OnFrameReceived()
164 Frame reply; in OnFrameReceived()
186 void Reply(const Frame& frame) { in Reply()
239 [](const Frame::InvokeMethod& req, Frame::InvokeMethodReply* reply) { in TEST_F()
287 .WillOnce(Invoke([on_req_received](const Frame::InvokeMethod& req, in TEST_F()
288 Frame::InvokeMethodReply*) { in TEST_F()
318 .WillRepeatedly(Invoke([&replies_left](const Frame::InvokeMethod& req, in TEST_F()
[all …]
/external/OpenCSD/decoder/tests/snapshots/a57_single_step/pkt_proc_logs/
Dtrc_pkt_lister_a57ss.ppl25 Frame Data; Index 0; ID_DATA[0x10]; 00 00 00 00 00 00 00 00 00 00 00 80 01 00
28 Frame Data; Index 16; ID_DATA[0x10]; 04 81 f2 00 00 00 00 00 00 00 00 9d 12 5a fe
31 Frame Data; Index 32; ID_DATA[0x10]; ff 00 00 00 00 06 03 9d 13 5a fe ff 00 00 00
34 Frame Data; Index 48; ID_DATA[0x10]; 00 81 f2 00 00 00 00 00 00 00 00 02 c0 a1 c5
37 Frame Data; Index 64; ID_DATA[0x10]; 97 80 80 00
39 Frame Data; Index 68; ID_DATA[0x 0]; 00 00 00 00 00 00 00 00 00 00
40 Frame Data; Index 80; ID_DATA[0x 0]; 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
41 Frame Data; Index 96; ID_DATA[0x 0]; 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
42 Frame Data; Index 112; ID_DATA[0x 0]; 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
/external/jacoco/org.jacoco.core.test.validation.java5/src/org/jacoco/core/test/validation/java5/
DStructuredLockingTest.java40 import org.objectweb.asm.tree.analysis.Frame;
81 protected Frame<BasicValue> newFrame(int nLocals, int nStack) { in assertStructuredLocking()
86 protected Frame<BasicValue> newFrame( in assertStructuredLocking()
87 Frame<? extends BasicValue> src) { in assertStructuredLocking()
92 Frame<BasicValue>[] frames = analyzer.analyze(owner, mn); in assertStructuredLocking()
139 private static class LockFrame extends Frame<BasicValue> {
148 public LockFrame(Frame<? extends BasicValue> src) { in LockFrame()
153 public Frame<BasicValue> init(Frame<? extends BasicValue> src) { in init()
185 public boolean merge(Frame<? extends BasicValue> frame, in merge()
/external/skia/include/android/
DSkAnimatedImage.h118 struct Frame { struct
135 Frame(); argument
137 bool copyTo(Frame*) const;
150 Frame fDisplayFrame;
151 Frame fDecodingFrame;
152 Frame fRestoreFrame;
/external/skia/src/codec/
DSkHeifCodec.h95 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;
/external/python/cpython2/Lib/idlelib/
Dtabbedpages.py16 class TabSet(Frame):
45 Frame.__init__(self, page_set, **kw)
61 self.padding_frame = Frame(self, height=2,
112 tab_row = Frame(self)
175 class TabButton(Frame):
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
231 self.mask = Frame(page_set, borderwidth=0, relief=FLAT,
235 self.mskl = Frame(page_set, borderwidth=0, relief=FLAT,
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
243 self.mskr = Frame(page_set, borderwidth=0, relief=FLAT,
[all …]

12345678910>>...22