HomeSort by relevance Sort by last modified time
    Searched defs:expr_type (Results 1 - 11 of 11) sorted by null

  /external/selinux/libsepol/tests/
test-linker-cond-map.c 54 uint32_t expr_type; member in struct:test_cond_expr
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
103 bools[0].expr_type = COND_BOOL;
113 bools[0].expr_type = COND_BOOL;
131 bools[0].expr_type = COND_BOOL;
141 bools[0].expr_type = COND_BOOL;
153 bools[0].expr_type = COND_BOOL;
155 bools[1].expr_type = COND_BOOL;
157 bools[2].expr_type = COND_AND
    [all...]
  /external/adhd/cras/src/server/
cras_expr.h 45 enum expr_type { enum
55 enum expr_type type;
  /external/selinux/libsepol/include/sepol/policydb/
conditional.h 56 uint32_t expr_type; member in struct:cond_expr
constraint.h 39 uint32_t expr_type; /* expression type */ member in struct:constraint_expr
  /external/toybox/kconfig/
expr.h 34 enum expr_type { enum
44 enum expr_type type;
162 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
163 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
164 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
180 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
181 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
731 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
732 if (!Expr_type) return 0;
739 expr_type = make_type("expr", &AST_type, NULL, 0);
740 if (!expr_type) return 0;
741 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
714 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
715 if (!Expr_type) return 0;
722 expr_type = make_type("expr", &AST_type, NULL, 0);
723 if (!expr_type) return 0;
724 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
725 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
727 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
729 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 146 static PyTypeObject *Expr_type;
153 static PyTypeObject *expr_type; variable
731 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
732 if (!Expr_type) return 0;
739 expr_type = make_type("expr", &AST_type, NULL, 0);
740 if (!expr_type) return 0;
741 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2)
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 181 static PyTypeObject *Expr_type;
188 static PyTypeObject *expr_type; variable
914 Expr_type = make_type("Expr", stmt_type, Expr_fields, 1);
915 if (!Expr_type) return 0;
922 expr_type = make_type("expr", &AST_type, NULL, 0);
923 if (!expr_type) return 0;
924 if (!add_attributes(expr_type, expr_attributes, 2)) return 0;
925 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
927 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
929 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2)
    [all...]