Home
last modified time | relevance | path

Searched refs:sub_stmt (Results 1 – 8 of 8) sorted by relevance

/dports/databases/p5-SQL-Abstract-Classic/SQL-Abstract-Classic-1.91/t/
H A D07subqueries.t20 my (@tests, $sub_stmt, @sub_bind, $where);
23 ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
27 bar => \["IN ($sub_stmt)" => @sub_bind],
36 ($sub_stmt, @sub_bind)
41 bar => \["> ALL ($sub_stmt)" => @sub_bind],
50 ($sub_stmt, @sub_bind)
54 -nest => \["EXISTS ($sub_stmt)" => @sub_bind],
74 ($sub_stmt, @sub_bind)
76 $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
79 -nest => \["NOT ( $sub_stmt )" => @sub_bind],
[all …]
/dports/databases/p5-SQL-Abstract/SQL-Abstract-2.000001/t/
H A D07subqueries.t20 my (@tests, $sub_stmt, @sub_bind, $where);
23 ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
27 bar => \["IN ($sub_stmt)" => @sub_bind],
36 ($sub_stmt, @sub_bind)
41 bar => \["> ALL ($sub_stmt)" => @sub_bind],
50 ($sub_stmt, @sub_bind)
54 -nest => \["EXISTS ($sub_stmt)" => @sub_bind],
74 ($sub_stmt, @sub_bind)
76 $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
79 -nest => \["NOT ( $sub_stmt )" => @sub_bind],
[all …]
/dports/cad/iverilog/verilog-11.0/tgt-vhdl/
H A Dstmt.cc651 ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt); in draw_delay() local
664 if (ivl_statement_type(sub_stmt) != IVL_ST_NOOP) in draw_delay()
665 draw_stmt(proc, container, sub_stmt); in draw_delay()
759 ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt); in draw_synthesisable_wait() local
760 if (ivl_statement_type(sub_stmt) != IVL_ST_CONDIT) in draw_synthesisable_wait()
765 if (ivl_stmt_cond_false(sub_stmt) == NULL) in draw_synthesisable_wait()
772 get_nexuses_from_expr(ivl_stmt_cond_expr(sub_stmt), test_nexuses); in draw_synthesisable_wait()
791 vhdl_expr *reset_test = translate_expr(ivl_stmt_cond_expr(sub_stmt)); in draw_synthesisable_wait()
795 draw_stmt(proc, body->get_then_container(), ivl_stmt_cond_true(sub_stmt)); in draw_synthesisable_wait()
822 draw_stmt(proc, else_container, ivl_stmt_cond_false(sub_stmt)); in draw_synthesisable_wait()
/dports/cad/iverilog/verilog-11.0/tgt-vlog95/
H A Dstmt.c1280 ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt); in emit_stmt_do_while() local
1281 stmt_named_type_t named_type = get_named_type(sub_stmt, 1); in emit_stmt_do_while()
1292 ivl_scope_t my_scope = ivl_stmt_block_scope(sub_stmt); in emit_stmt_do_while()
1300 emit_stmt_do_while_body(my_scope, sub_stmt); in emit_stmt_do_while()
1306 emit_stmt_do_while_body(my_scope, sub_stmt); in emit_stmt_do_while()
1312 emit_stmt(scope, sub_stmt); in emit_stmt_do_while()
1318 emit_stmt(scope, sub_stmt); in emit_stmt_do_while()
/dports/databases/p5-SQL-Abstract/SQL-Abstract-2.000001/
H A DREADME1012 my ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
1016 bar => \["IN ($sub_stmt)" => @sub_bind],
1026 expressed in the same way. Of course the $sub_stmt and its associated
1029 my ($sub_stmt, @sub_bind)
1034 bar => \["> ALL ($sub_stmt)" => @sub_bind],
1041 my ($sub_stmt, @sub_bind)
1045 \["EXISTS ($sub_stmt)" => @sub_bind],
1063 my ($sub_stmt, @sub_bind)
1065 $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
1068 \["NOT ($sub_stmt)" => @sub_bind],
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/
H A Djsinterp.py126 for sub_stmt in sub_statements:
127 ret, should_abort = self.interpret_statement(sub_stmt, local_vars, allow_recursion - 1)
/dports/lang/halide/Halide-release_2019_08_27-2654-g664dc4993/src/
H A DAddImageChecks.cpp180 Stmt sub_stmt = TrimStmtToPartsThatAccessBuffers(bufs).mutate(s); in add_image_checks_inner() local
181 map<string, Box> boxes = boxes_touched(sub_stmt, empty_scope, fb); in add_image_checks_inner()
/dports/www/firefox/firefox-99.0/third_party/rust/naga/src/front/wgsl/
H A Dmod.rs3701 let sub_stmt = crate::Statement::If { in parse_statement() localVariable
3708 reject.push(sub_stmt, NagaSpan::from(other_span_start..span_end)) in parse_statement()