Searched defs:expr (Results 1 - 25 of 199) sorted by relevance

12345678

/external/iproute2/misc/
H A Dssfilter.y44 applet: null expr
53 expr: DCOND HOSTCOND label
115 | expr '|' expr
120 | expr expr
125 | expr '&' expr
131 | '!' expr
135 | '(' expr ')'
[all...]
/external/libsepol/src/
H A Dconstraint.c28 int constraint_expr_init(constraint_expr_t * expr) argument
30 memset(expr, 0, sizeof(*expr));
31 ebitmap_init(&expr->names);
32 if ((expr->type_names = malloc(sizeof(*expr->type_names))) == NULL) {
35 type_set_init(expr->type_names);
39 void constraint_expr_destroy(constraint_expr_t * expr) argument
41 if (expr != NULL) {
42 ebitmap_destroy(&expr
[all...]
/external/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
38 | expr
40 | expr error
47 expr: label
50 | match relation expr
66 | invert '(' expr ')'
/external/libffi/src/
H A Ddebug.c41 void ffi_assert(char *expr, char *file, int line) argument
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
/external/javassist/src/main/javassist/compiler/
H A DNoFieldException.java22 private ASTree expr; field in class:NoFieldException
29 expr = e;
38 public ASTree getExpr() { return expr; }
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
25 type func = Function of proto * expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
25 type func = Function of proto * expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
25 type func = Function of proto * expr
/external/mesa3d/src/glsl/
H A Dir_mod_to_fract.cpp68 ir_rvalue *expr; local
74 expr = new(ir) ir_expression(ir_binop_div,
79 expr = new(ir) ir_expression(ir_unop_fract,
81 expr,
86 ir->operands[1] = expr;
H A Dhir_field_selection.cpp31 _mesa_ast_field_selection_to_hir(const ast_expression *expr, argument
39 op = expr->subexpressions[0]->hir(instructions, state);
47 YYLTYPE loc = expr->get_location();
52 expr->primary_expression.identifier,
62 expr->primary_expression.identifier);
66 expr->primary_expression.identifier);
71 expr->primary_expression.identifier);
73 } else if (expr->subexpressions[1] != NULL) {
78 ast_expression *call = expr->subexpressions[1];
98 expr
[all...]
H A Dir_div_to_mul_rcp.cpp68 ir_rvalue *expr; local
69 expr = new(ir) ir_expression(ir_unop_rcp,
76 ir->operands[1] = expr;
H A Dlower_texture_projection.cpp64 ir_expression *expr = new(mem_ctx) ir_expression(ir_unop_rcp, local
68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL);
/external/javassist/src/main/javassist/compiler/ast/
H A DInstanceOfExpr.java24 public InstanceOfExpr(ASTList className, int dim, ASTree expr) { argument
25 super(className, dim, expr);
28 public InstanceOfExpr(int type, int dim, ASTree expr) { argument
29 super(type, dim, expr);
H A DCastExpr.java28 public CastExpr(ASTList className, int dim, ASTree expr) { argument
29 super(className, new ASTList(expr));
34 public CastExpr(int type, int dim, ASTree expr) { argument
35 super(null, new ASTList(expr));
H A DExpr.java57 public void setOprand1(ASTree expr) { argument
58 setLeft(expr);
63 public void setOprand2(ASTree expr) { argument
64 getRight().setLeft(expr);
/external/javassist/src/main/javassist/expr/
H A DConstructorCall.java16 package javassist.expr;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
20 | If of expr * expr * expr
23 | For of string * expr * expr * exp
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * exp
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * exp
[all...]
/external/valgrind/main/none/tests/
H A Dvalgrind_cpp_test.cpp43 void VG_(assert_fail)(Bool isCore, const Char* expr, const Char* file, argument
/external/webkit/Source/WebCore/xml/
H A DXPathEvaluator.cpp68 RefPtr<XPathExpression> expr = createExpression(expression, resolver, ec); local
72 return expr->evaluate(contextNode, type, result, ec);
H A DXPathExpression.cpp47 RefPtr<XPathExpression> expr = XPathExpression::create(); local
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
51 if (!expr->m_topExpression)
54 return expr.release();
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DOneStepIteratorForward.java160 public boolean deepEquals(Expression expr) argument
162 if(!super.deepEquals(expr))
165 if(m_axis != ((OneStepIteratorForward)expr).m_axis)
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFragSelectWrapper.java36 public XRTreeFragSelectWrapper(Expression expr) argument
38 super(expr);
/external/libsepol/tests/
H A Dtest-linker-cond-map.c60 cond_expr_t *expr; local
63 CU_ASSERT_FATAL(d->cond_list->expr != NULL);
65 expr = d->cond_list->expr;
68 CU_ASSERT_FATAL(expr != NULL);
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
72 CU_ASSERT(strcmp(p->sym_val_to_name[SYM_BOOLS][expr->bool - 1], bools[i].bool) == 0);
74 expr = expr->next;

Completed in 8363 milliseconds

12345678