Home
last modified time | relevance | path

Searched refs:cond_expr (Results 1 – 12 of 12) sorted by relevance

/external/checkpolicy/
Dpolicy_parse.y75 %type <ptr> cond_expr cond_expr_prim cond_pol_list cond_else
352 cond_stmt_def : IF cond_expr '{' cond_pol_list '}' cond_else
359 cond_expr : '(' cond_expr ')'
361 | NOT cond_expr
364 | cond_expr AND cond_expr
367 | cond_expr OR cond_expr
370 | cond_expr XOR cond_expr
373 | cond_expr EQUALS cond_expr
376 | cond_expr NOTEQUAL cond_expr
Dpolicy_define.c3235 struct cond_expr *expr, *e1 = NULL, *e2; in define_cond_expr()
3250 expr = malloc(sizeof(struct cond_expr)); in define_cond_expr()
3262 e2 = (struct cond_expr *)arg1; in define_cond_expr()
3273 return (struct cond_expr *)arg1; in define_cond_expr()
3280 e2 = (struct cond_expr *)arg1; in define_cond_expr()
3291 e1->next = (struct cond_expr *)arg2; in define_cond_expr()
3294 e2 = (struct cond_expr *)arg2; in define_cond_expr()
3306 return (struct cond_expr *)arg1; in define_cond_expr()
/external/chromium_org/third_party/mesa/src/src/glsl/
Dlower_if_to_cond_assign.cpp111 ir_if *if_ir, ir_rvalue *cond_expr, in move_block_to_cond_assign() argument
136 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
139 assign->condition = cond_expr->clone(mem_ctx, NULL); in move_block_to_cond_assign()
145 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
Dir_reader.cpp543 s_expression *cond_expr = NULL; in read_assignment() local
548 s_pattern pat5[] = { "assign", cond_expr, mask_list, lhs_expr, rhs_expr }; in read_assignment()
556 if (cond_expr != NULL) { in read_assignment()
557 condition = read_rvalue(cond_expr); in read_assignment()
/external/mesa3d/src/glsl/
Dlower_if_to_cond_assign.cpp111 ir_if *if_ir, ir_rvalue *cond_expr, in move_block_to_cond_assign() argument
136 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
139 assign->condition = cond_expr->clone(mem_ctx, NULL); in move_block_to_cond_assign()
145 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
Dir_reader.cpp543 s_expression *cond_expr = NULL; in read_assignment() local
548 s_pattern pat5[] = { "assign", cond_expr, mask_list, lhs_expr, rhs_expr }; in read_assignment()
556 if (cond_expr != NULL) { in read_assignment()
557 condition = read_rvalue(cond_expr); in read_assignment()
/external/libsepol/include/sepol/policydb/
Dconditional.h43 typedef struct cond_expr { struct
54 struct cond_expr *next; argument
/external/valgrind/main/VEX/priv/
Dguest_s390_helpers.c1845 IRExpr *cond_expr, *cc_op_expr, *cc_dep1, *cc_dep2; in guest_s390x_spechelper() local
1850 cond_expr = args[0]; in guest_s390x_spechelper()
1855 if (! isC64(cond_expr)) return NULL; in guest_s390x_spechelper()
1858 cond = cond_expr->Iex.Const.con->Ico.U64; in guest_s390x_spechelper()
2354 binop(Iop_Shl64, cond_expr, in guest_s390x_spechelper()
Dhost_s390_isel.c1857 IRExpr *cond_expr; in s390_isel_int_expr_wrk() local
1861 cond_expr = expr->Iex.ITE.cond; in s390_isel_int_expr_wrk()
1863 vassert(typeOfIRExpr(env->type_env, cond_expr) == Ity_I1); in s390_isel_int_expr_wrk()
1870 s390_cc_t cc = s390_isel_cc(env, cond_expr); in s390_isel_int_expr_wrk()
/external/chromium_org/tools/gyp/pylib/gyp/
Dinput.py1046 [cond_expr, true_dict] = condition[0:2]
1055 cond_expr_expanded = ExpandVariables(cond_expr, phase, variables,
/external/libsepol/
DChangeLog374 * Merged cond_expr mapping and package section count bug fixes
/external/bison/
DNEWS494 if_stmt : "if" cond_expr "then" then_stmt ';'
495 { $if_stmt = mk_if_stmt($cond_expr, $then_stmt); }