Home
last modified time | relevance | path

Searched refs:Ast (Results 1 – 25 of 1939) sorted by relevance

12345678910>>...78

/dports/devel/kdev-python/kdev-python-21.12.3/parser/
H A Dast.cpp20 Ast::Ast( Ast* parent, Ast::AstType type ) : parent(parent), astType( type ), startCol(0), startLin… in Ast() function in Python::Ast
23 ArgumentsAst::ArgumentsAst(Ast* parent): Ast(parent, Ast::ArgumentsAstType) in ArgumentsAst()
28 ArgAst::ArgAst(Ast* parent): Ast(parent, Ast::ArgAstType), argumentName(nullptr), annotation(nullpt… in ArgAst()
68 BreakAst::BreakAst(Ast* parent): StatementAst(parent, Ast::BreakAstType) in BreakAst()
83 CodeAst::CodeAst() : Ast(nullptr, Ast::CodeAstType), name(nullptr) in CodeAst()
112 DictAst::DictAst(Ast* parent): ExpressionAst(parent, Ast::DictAstType) in DictAst()
202 KeywordAst::KeywordAst(Ast* parent): Ast(parent, Ast::KeywordAstType), argumentName(nullptr), value… in KeywordAst()
257 SetAst::SetAst(Ast* parent): ExpressionAst(parent, Ast::SetAstType) in SetAst()
312 TryAst::TryAst(Ast* parent): StatementAst(parent, Ast::TryAstType) in TryAst()
327 WithItemAst::WithItemAst(Ast* parent): Ast(parent, Ast::WithItemAstType) in WithItemAst()
[all …]
H A Dastvisitor.cpp23 void AstVisitor::visitNode(Ast* node) in visitNode()
27 …case Ast::CodeAstType: this->visitCode(static_cast<CodeAst*>(node… in visitNode()
31 …case Ast::AwaitAstType: this->visitAwait(static_cast<AwaitAst*>(no… in visitNode()
37 …case Ast::ForAstType: this->visitFor(static_cast<ForAst*>(node))… in visitNode()
39 …case Ast::IfAstType: this->visitIf(static_cast<IfAst*>(node)); … in visitNode()
42 …case Ast::TryAstType: this->visitTry(static_cast<TryAst*>(node))… in visitNode()
88 case Ast::IdentifierAstType: break; in visitNode()
89 case Ast::StatementAstType: break; in visitNode()
90 case Ast::LastAstType: Q_ASSERT(false); break; in visitNode()
91 case Ast::LastStatementType: Q_ASSERT(false); break; in visitNode()
[all …]
H A Dast.h40 class Ast; variable
173 Ast(Ast* parent, AstType type);
174 Ast();
250 QList<Ast*> body;
266 QList<Ast*> body;
276 QList<Ast*> body;
320 QList<Ast*> body;
328 QList<Ast*> body;
336 QList<Ast*> body;
350 QList<Ast*> body;
[all …]
/dports/java/jikes/jikes-1.22/src/
H A Dsemantic.h1027 void (Semantic::*DefiniteStmt[Ast::_num_expr_or_stmt_kinds])(Ast*);
1032 void DefiniteBlock(Ast*);
1221 void (Semantic::*ProcessExprOrStmt[Ast::_num_expr_or_stmt_kinds])(Ast*);
1240 void ProcessBlock(Ast*);
1248 void ProcessIfStatement(Ast*);
1250 void ProcessDoStatement(Ast*);
1271 void ProcessName(Ast*);
1274 void ProcessFieldAccess(Ast*);
1276 void ProcessLongLiteral(Ast*);
1279 void ProcessTrueLiteral(Ast*);
[all …]
/dports/net/krill/krill-0.9.4/cargo-crates/jmespatch-0.3.0/src/
H A Dast.rs25 pub enum Ast { enum
33 lhs: Box<Ast>,
35 rhs: Box<Ast>,
45 then: Box<Ast>,
57 ast: Box<Ast>,
64 node: Box<Ast>,
73 args: Vec<Ast>,
122 lhs: Box<Ast>,
124 rhs: Box<Ast>,
138 lhs: Box<Ast>,
[all …]
H A Dparser.rs152 Ok(Ast::Expref { in nud()
210 Ok(Ast::Or { in led()
219 Ok(Ast::And { in led()
228 Ok(Ast::Subexpr { in led()
235 Ast::Field { name: v, .. } => Ok(Ast::Function { in led()
297 Ok(Ast::Projection { in parse_flatten()
310 Ok(Ast::Comparison { in parse_comparator()
376 Ok(Ast::Projection { in parse_wildcard_values()
416 Ok(Ast::Index { in parse_index()
430 Ok(Ast::Projection { in parse_index()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/regions/
H A Dregions-creating-enums.rs1 enum Ast<'a> { enum
3 Add(&'a Ast<'a>, &'a Ast<'a>)
7 let x = Ast::Num(3); in build()
8 let y = Ast::Num(4); in build()
9 let z = Ast::Add(&x, &y); in build()
13 fn compute(x: &Ast) -> usize { in compute()
15 Ast::Num(x) => { x } in compute()
16 Ast::Add(x, y) => { compute(x) + compute(y) } in compute()
20 fn map_nums<'a,'b, F>(x: &Ast, f: &mut F) -> &'a Ast<'b> where F: FnMut(usize) -> usize { in map_nums() argument
22 Ast::Num(x) => { in map_nums()
[all …]
H A Dregions-creating-enums4.stderr4 LL | Ast::Add(x, y)
10 LL | fn mk_add_bad2<'a,'b>(x: &'a Ast<'a>, y: &'a Ast<'a>, z: &Ast) -> Ast<'b> {
15 LL | Ast::Add(x, y)
17 = note: expected `&Ast<'_>`
18 found `&Ast<'a>`
22 LL | fn mk_add_bad2<'a,'b>(x: &'a Ast<'a>, y: &'a Ast<'a>, z: &Ast) -> Ast<'b> {
27 LL | Ast::Add(x, y)
29 = note: expected `Ast<'b>`
30 found `Ast<'_>`
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/crates/hir/src/
H A Dhas_source.rs18 type Ast; typedef
48 type Ast = FieldSource; typedef
60 type Ast = ast::Adt; typedef
70 type Ast = ast::Struct; typedef
76 type Ast = ast::Union; typedef
82 type Ast = ast::Enum; typedef
94 type Ast = ast::Fn; typedef
100 type Ast = ast::Const; typedef
106 type Ast = ast::Static; typedef
112 type Ast = ast::Trait; typedef
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/rust-analyzer/crates/hir/src/
H A Dhas_source.rs18 type Ast; typedef
48 type Ast = FieldSource; typedef
60 type Ast = ast::Adt; typedef
70 type Ast = ast::Struct; typedef
76 type Ast = ast::Union; typedef
82 type Ast = ast::Enum; typedef
94 type Ast = ast::Fn; typedef
100 type Ast = ast::Const; typedef
106 type Ast = ast::Static; typedef
112 type Ast = ast::Trait; typedef
[all …]
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/ast2/
H A Dast_slice.go44 func (x AstSlice) New() Ast { return AstSlice{} }
45 func (x NodeSlice) New() Ast { return NodeSlice{} }
46 func (x ExprSlice) New() Ast { return ExprSlice{} }
48 func (x DeclSlice) New() Ast { return DeclSlice{} }
50 func (x SpecSlice) New() Ast { return SpecSlice{} }
51 func (x StmtSlice) New() Ast { return StmtSlice{} }
119 func (x FieldList) New() Ast {
122 func (x File) New() Ast {
125 func (x GenDecl) New() Ast {
165 func (x File) Append(child Ast) AstWithSlice { argument
[all …]
H A Dast_node.go214 func (x BasicLit) New() Ast {
219 func (x CallExpr) New() Ast {
223 func (x ChanType) New() Ast {
227 func (x CompositeLit) New() Ast {
233 func (x EmptyStmt) New() Ast {
245 func (x ImportSpec) New() Ast {
256 func (x Package) New() Ast {
260 func (x RangeStmt) New() Ast {
273 func (x TypeSpec) New() Ast {
420 func (x Field) Get(i int) Ast {
[all …]
/dports/math/ogdf/OGDF/src/ogdf/fileformats/
H A DDotParser.cpp256 Ast::Ast(const Tokens &tokens) in Ast() function in ogdf::dot::Ast
262 Ast::~Ast() in ~Ast()
277 Ast::Graph *Ast::root() const in root()
283 Ast::EdgeStmt *Ast::parseEdgeStmt( in parseEdgeStmt()
305 Ast::EdgeRhs *Ast::parseEdgeRhs( in parseEdgeRhs()
327 Ast::NodeStmt *Ast::parseNodeStmt( in parseNodeStmt()
342 Ast::NodeId *Ast::parseNodeId( in parseNodeId()
410 Ast::Port *Ast::parsePort( in parsePort()
543 Ast::Stmt *Ast::parseStmt( in parseStmt()
596 Ast::Graph *Ast::parseGraph( in parseGraph()
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/regex-syntax-0.6.18/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { impl
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/sccache/sccache-0.2.15/cargo-crates/regex-syntax-0.6.21/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/rust-bindgen/bindgen-0.59.2/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/regex-syntax-0.6.22/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { impl
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/regex-syntax-0.6.18/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { implementation
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/regex-syntax-0.6.25/src/ast/
H A Dmod.rs443 pub ast: Ast,
469 pub enum Ast { enum
493 impl Ast { impl
522 Ast::Empty(_) in has_subexprs()
525 | Ast::Dot(_) in has_subexprs()
527 Ast::Class(_) in has_subexprs()
557 pub asts: Vec<Ast>,
581 pub asts: Vec<Ast>,
1127 pub ast: Box<Ast>,
1190 pub ast: Box<Ast>,
[all …]

12345678910>>...78