Searched refs:cond_expr (Results 1 – 12 of 12) sorted by relevance
/external/u-boot/tools/buildman/ |
D | kconfiglib.py | 310 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/ |
D | policy_parse.y | 77 %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
|
D | policy_define.c | 4044 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/ |
D | lower_if_to_cond_assign.cpp | 173 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()
|
D | ir_reader.cpp | 579 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/ |
D | conditional.h | 47 typedef struct cond_expr { struct 58 struct cond_expr *next; argument
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | refpolicy.py | 708 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=("", ""))
|
D | refparser.py | 413 x.cond_expr = p[4] 852 c.cond_expr = p[3]
|
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | control_flow.py | 308 cond_expr = self._create_cond_expr(cond_results, cond_var_name, body_name, 313 orelse_def + cond_expr)
|
/external/selinux/libsepol/src/ |
D | module_to_cil.c | 1262 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()
|
D | kernel_to_conf.c | 30 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()
|
D | kernel_to_cil.c | 31 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()
|