Symbol: subexpr
crypto/heimdal/lib/hx509/sel.c
116
struct hx_expr *subexpr;
crypto/heimdal/lib/hx509/sel.c
121
subexpr = expr->arg2;
crypto/heimdal/lib/hx509/sel.c
123
if (subexpr->op == expr_WORDS) {
crypto/heimdal/lib/hx509/sel.c
124
while (subexpr) {
crypto/heimdal/lib/hx509/sel.c
125
s1 = eval_word(context, env, subexpr->arg1);
crypto/heimdal/lib/hx509/sel.c
128
subexpr = subexpr->arg2;
crypto/heimdal/lib/hx509/sel.c
130
} else if (subexpr->op == expr_VAR) {
crypto/heimdal/lib/hx509/sel.c
133
subenv = find_variable(context, env, subexpr);
crypto/heimdal/lib/hx509/sel.c
148
_hx509_abort("hx509 eval IN unknown op: %d", (int)subexpr->op);
usr.bin/dtc/input_buffer.cc
504
expression_ptr subexpr;
usr.bin/dtc/input_buffer.cc
519
return (*subexpr)();
usr.bin/dtc/input_buffer.cc
525
subexpr->dump();
usr.bin/dtc/input_buffer.cc
544
expression_ptr subexpr;
usr.bin/dtc/input_buffer.cc
548
result s = (*subexpr)();
usr.bin/dtc/input_buffer.cc
570
subexpr->dump();
usr.bin/dtc/input_buffer.cc
940
expression_ptr &&subexpr = parse_expression();
usr.bin/dtc/input_buffer.cc
941
if (!subexpr)
usr.bin/dtc/input_buffer.cc
945
lhs.reset(new paren_expression(l, std::move(subexpr)));
usr.bin/dtc/input_buffer.cc
959
expression_ptr &&subexpr = parse_expression();
usr.bin/dtc/input_buffer.cc
960
if (!subexpr)
usr.bin/dtc/input_buffer.cc
964
lhs.reset(new unary_operator<'+', unary_plus<valty>>(l, std::move(subexpr)));
usr.bin/dtc/input_buffer.cc
970
expression_ptr &&subexpr = parse_expression();
usr.bin/dtc/input_buffer.cc
971
if (!subexpr)
usr.bin/dtc/input_buffer.cc
975
lhs.reset(new unary_operator<'-', std::negate<valty>>(l, std::move(subexpr)));
usr.bin/dtc/input_buffer.cc
981
expression_ptr &&subexpr = parse_expression();
usr.bin/dtc/input_buffer.cc
982
if (!subexpr)
usr.bin/dtc/input_buffer.cc
986
lhs.reset(new unary_operator<'!', std::logical_not<valty>>(l, std::move(subexpr)));
usr.bin/dtc/input_buffer.cc
992
expression_ptr &&subexpr = parse_expression();
usr.bin/dtc/input_buffer.cc
993
if (!subexpr)
usr.bin/dtc/input_buffer.cc
997
lhs.reset(new unary_operator<'~', bit_not<valty>>(l, std::move(subexpr)));