Searched refs:if_stmt (Results 1 – 13 of 13) sorted by relevance
/external/mesa3d/src/glsl/ |
D | loop_analysis.cpp | 94 loop_variable_state::insert(ir_if *if_stmt) in insert() argument 99 t->ir = if_stmt; in insert() 247 ir_if *if_stmt = ((ir_instruction *) node)->as_if(); in visit_leave() local 249 if ((if_stmt != NULL) && is_loop_terminator(if_stmt)) in visit_leave() 250 ls->insert(if_stmt); in visit_leave()
|
D | loop_controls.cpp | 198 ir_if *if_stmt = t->ir; in visit_leave() local 203 ir_expression *cond = if_stmt->condition->as_expression(); in visit_leave() 265 if_stmt->remove(); in visit_leave()
|
D | lower_vec_index_to_cond_assign.cpp | 237 ir_if *if_stmt = new(mem_ctx) ir_if(ir->condition); in visit_leave() local 239 list.move_nodes_to(&if_stmt->then_instructions); in visit_leave() 240 ir->insert_before(if_stmt); in visit_leave()
|
D | lower_variable_index_to_cond_assign.cpp | 461 ir_if *if_stmt = new(mem_ctx) ir_if(orig_assign->condition); in convert_dereference_array() local 463 sg.generate(0, length, &if_stmt->then_instructions); in convert_dereference_array() 464 base_ir->insert_before(if_stmt); in convert_dereference_array()
|
D | ast_to_hir.cpp | 3800 ir_if *const if_stmt = new(ctx) ir_if(not_cond); in condition_to_hir() local 3805 if_stmt->then_instructions.push_tail(break_stmt); in condition_to_hir() 3806 stmt->body_instructions.push_tail(if_stmt); in condition_to_hir()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | Python.g | 226 compound_stmt: if_stmt 234 if_stmt: 'if' test COLON suite ('elif' test COLON suite)* ('else' COLON suite)?
|
/external/bison/tests/ |
D | named-refs.at | 333 | if_stmt { $$ = $1; } 339 if_stmt: IF expr[cond] THEN stmt.list FI 340 { $if_stmt = new IfStmt($cond, $[stmt.list], 0); };
|
/external/mesa3d/src/mesa/program/ |
D | ir_to_mesa.cpp | 778 ir_if *if_stmt = new(mem_ctx) ir_if(e); in visit() local 783 if_stmt->then_instructions.push_tail(brk); in visit() 785 if_stmt->accept(this); in visit()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi.cpp | 1128 ir_if *if_stmt = new(ir) ir_if(e); in visit() local 1132 if_stmt->then_instructions.push_tail(brk); in visit() 1134 if_stmt->accept(this); in visit() 1136 delete if_stmt; in visit()
|
/external/bison/ |
D | NEWS | 494 if_stmt : "if" cond_expr "then" then_stmt ';' 495 { $if_stmt = mk_if_stmt($cond_expr, $then_stmt); }
|
/external/toybox/kconfig/ |
D | zconf.tab.c_shipped | 520 "if_entry", "if_end", "if_stmt", "if_block", "menu", "menu_entry",
|
/external/bison/doc/ |
D | bison.texi | 6760 if_stmt: 6824 The definition of @code{if_stmt} above is solely to blame for the 6836 | if_stmt 6841 if_stmt: 6991 to be shifted, and the rule @samp{if_stmt: "if" expr "then" stmt}, asking
|
D | bison.info | 6483 if_stmt: 6540 The definition of `if_stmt' above is solely to blame for the 6548 | if_stmt 6551 if_stmt: 6698 willing to be shifted, and the rule `if_stmt: "if" expr "then" stmt',
|