Home
last modified time | relevance | path

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

/external/u-boot/tools/buildman/
Dkconfiglib.py310 for filename, cond_expr in self.defconfig_sym.def_exprs:
311 if self._eval_expr(cond_expr) == "y":
1071 prompt, cond_expr = new_prompt
1074 cond_expr = _make_and(_make_and(cond_expr, visible_if_deps),
1077 stmt.orig_prompts.append((prompt, cond_expr))
1079 stmt.prompts.append((prompt, _make_and(cond_expr, deps)))
1084 new_def_exprs = [(val_expr, _make_and(cond_expr, depends_on_expr))
1085 for val_expr, cond_expr in new_def_exprs]
1089 stmt.def_exprs.extend([(val_expr, _make_and(cond_expr, deps))
1090 for val_expr, cond_expr in new_def_exprs])
[all …]
/external/selinux/checkpolicy/
Dpolicy_parse.y77 %type <ptr> cond_expr cond_expr_prim cond_pol_list cond_else
367 cond_stmt_def : IF cond_expr '{' cond_pol_list '}' cond_else
375 cond_expr : '(' cond_expr ')'
377 | NOT cond_expr
380 | cond_expr AND cond_expr
383 | cond_expr OR cond_expr
386 | cond_expr XOR cond_expr
389 | cond_expr EQUALS cond_expr
392 | cond_expr NOTEQUAL cond_expr
Dpolicy_define.c4044 struct cond_expr *expr, *e1 = NULL, *e2; in define_cond_expr()
4059 expr = malloc(sizeof(struct cond_expr)); in define_cond_expr()
4071 e2 = (struct cond_expr *)arg1; in define_cond_expr()
4082 return (struct cond_expr *)arg1; in define_cond_expr()
4089 e2 = (struct cond_expr *)arg1; in define_cond_expr()
4100 e1->next = (struct cond_expr *)arg2; in define_cond_expr()
4103 e2 = (struct cond_expr *)arg2; in define_cond_expr()
4115 return (struct cond_expr *)arg1; in define_cond_expr()
/external/mesa3d/src/compiler/glsl/
Dlower_if_to_cond_assign.cpp173 ir_if *if_ir, ir_rvalue *cond_expr, in move_block_to_cond_assign() argument
197 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
200 assign->condition = cond_expr->clone(mem_ctx, NULL); in move_block_to_cond_assign()
206 cond_expr->clone(mem_ctx, NULL), in move_block_to_cond_assign()
Dir_reader.cpp579 s_expression *cond_expr = NULL; in read_assignment() local
584 s_pattern pat5[] = { "assign", cond_expr, mask_list, lhs_expr, rhs_expr }; in read_assignment()
592 if (cond_expr != NULL) { in read_assignment()
593 condition = read_rvalue(cond_expr); in read_assignment()
/external/selinux/libsepol/include/sepol/policydb/
Dconditional.h47 typedef struct cond_expr { struct
58 struct cond_expr *next; argument
/external/selinux/python/sepolgen/src/sepolgen/
Drefpolicy.py708 self.cond_expr = []
711 return "[If %s]" % list_to_space_str(self.cond_expr, cont=("", ""))
882 self.cond_expr = []
885 return "[Tunable Policy %s]" % list_to_space_str(self.cond_expr, cont=("", ""))
Drefparser.py413 x.cond_expr = p[4]
852 c.cond_expr = p[3]
/external/tensorflow/tensorflow/python/autograph/converters/
Dcontrol_flow.py308 cond_expr = self._create_cond_expr(cond_results, cond_var_name, body_name,
313 orelse_def + cond_expr)
/external/selinux/libsepol/src/
Dmodule_to_cil.c1262 static int cond_expr_to_cil(int indent, struct policydb *pdb, struct cond_expr *cond_expr, uint32_t… in cond_expr_to_cil() argument
1265 struct cond_expr *curr; in cond_expr_to_cil()
1283 for (curr = cond_expr; curr != NULL; curr = curr->next) { in cond_expr_to_cil()
Dkernel_to_cil.c31 static char *cond_expr_to_str(struct policydb *pdb, struct cond_expr *expr) in cond_expr_to_str()
33 struct cond_expr *curr; in cond_expr_to_str()
Dkernel_to_conf.c30 static char *cond_expr_to_str(struct policydb *pdb, struct cond_expr *expr) in cond_expr_to_str()
32 struct cond_expr *curr; in cond_expr_to_str()