• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/

Lines Matching refs:location

100     parser_location_p location ATTRIBUTE_UNUSED,
114 parser_location_p location,
120 exp->exp.constant.val.other = AST_char_constant(location, value);
126 parser_location_p location ATTRIBUTE_UNUSED,
139 parser_location_p location,
145 exp->exp.constant.val.other = AST_string_constant(location, string);
151 parser_location_p location
156 exp->exp.constant.val.other = AST_null_constant(location);
162 parser_location_p location,
168 exp->exp.constant.val.other = AST_boolean_constant(location, value);
174 parser_location_p location ATTRIBUTE_UNUSED,
191 parser_location_p location,
196 ASTP_evaluate_expr(location, exp, true);
199 const_return = AST_integer_constant(location, exp->exp.constant.val.integer);
224 parser_location_p location,
228 if (ASTP_evaluate_expr(location, exp, true)) {
238 ((ASTP_expr_integer_value(location, exp->exp.expression.oper2) == 2) ||
239 (ASTP_expr_integer_value(location, exp->exp.expression.oper2) == 4) ||
240 (ASTP_expr_integer_value(location, exp->exp.expression.oper2) == 8)))
248 ASTP_expr_integer_value(location, exp->exp.expression.oper2) == 1)
270 long nval = ASTP_expr_integer_value(location, op1->exp.expression.oper2);
277 ASTP_expr_integer_value(location, op2->exp.expression.oper1)
289 parser_location_p location,
294 ASTP_evaluate_expr(location, exp, true);
335 parser_location_p location,
345 log_warning(location->lineno, NIDL_EXP_IS_NULL, NULL);
356 location,
373 location,
386 location,
398 result = ASTP_evaluate_expr(location, exp->exp.expression.oper1, constant_only);
404 result = ASTP_evaluate_expr(location, exp->exp.expression.oper2, constant_only);
410 result = ASTP_evaluate_expr(location, exp->exp.expression.oper3, constant_only);
420 !ASTP_expr_integer_value(location, op1);
424 ~ASTP_expr_integer_value(location, op1);
428 +ASTP_expr_integer_value(location, op1);
432 -ASTP_expr_integer_value(location, op1);
437 val = ASTP_expr_integer_value(location, op2);
439 log_error(location->lineno, NIDL_INTDIVBY0, NULL);
441 val = ASTP_expr_integer_value(location, op1) % val;
445 val = ASTP_expr_integer_value(location, op2);
447 log_error(location->lineno, NIDL_INTDIVBY0, NULL);
449 val = ASTP_expr_integer_value(location, op1) / val;
453 val1 = ASTP_expr_integer_value(location, op1);
454 val2 = ASTP_expr_integer_value(location, op2);
457 log_error(location->lineno, NIDL_INTOVERFLOW, KEYWORDS_lookup_text(LONG_KW), NULL);
462 ASTP_expr_integer_value(location, op1) -
463 ASTP_expr_integer_value(location, op2);
467 ASTP_expr_integer_value(location, op1) +
468 ASTP_expr_integer_value(location, op2);
472 ASTP_expr_integer_value(location, op1) >>
473 ASTP_expr_integer_value(location, op2);
477 ASTP_expr_integer_value(location, op1) <<
478 ASTP_expr_integer_value(location, op2);
482 ASTP_expr_integer_value(location, op1) >=
483 ASTP_expr_integer_value(location, op2);
487 ASTP_expr_integer_value(location, op1) <=
488 ASTP_expr_integer_value(location, op2);
492 ASTP_expr_integer_value(location, op1) >
493 ASTP_expr_integer_value(location, op2);
497 ASTP_expr_integer_value(location, op1) <
498 ASTP_expr_integer_value(location, op2);
502 ASTP_expr_integer_value(location, op1) !=
503 ASTP_expr_integer_value(location, op2);
507 ASTP_expr_integer_value(location, op1) ==
508 ASTP_expr_integer_value(location, op2);
512 ASTP_expr_integer_value(location, op1) &
513 ASTP_expr_integer_value(location, op2);
517 ASTP_expr_integer_value(location, op1) |
518 ASTP_expr_integer_value(location, op2);
522 ASTP_expr_integer_value(location, op1) ^
523 ASTP_expr_integer_value(location, op2);
527 ASTP_expr_integer_value(location, op1) &&
528 ASTP_expr_integer_value(location, op2);
532 ASTP_expr_integer_value(location, op1) ||
533 ASTP_expr_integer_value(location, op2);
537 if (ASTP_expr_integer_value(location, op1)) {