HomeSort by: relevance | last modified time | path
    Searched refs:expr (Results 1 - 25 of 5892) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/indent/
lsym_switch.c 19 switch (expr) // comment
lsym_switch.c 19 switch (expr) // comment
lsym_switch.c 19 switch (expr) // comment
psym_switch_expr.c 13 * In all practical cases, a 'switch (expr)' is followed by a block, but the
21 switch (expr)
33 switch (expr)
47 switch (expr)
psym_switch_expr.c 13 * In all practical cases, a 'switch (expr)' is followed by a block, but the
21 switch (expr)
33 switch (expr)
47 switch (expr)
psym_switch_expr.c 13 * In all practical cases, a 'switch (expr)' is followed by a block, but the
21 switch (expr)
33 switch (expr)
47 switch (expr)
psym_rbrace.c 61 switch (expr)
67 switch (expr)
psym_rbrace.c 61 switch (expr)
67 switch (expr)
psym_rbrace.c 61 switch (expr)
67 switch (expr)
lsym_form_feed.c 21 * Test form feed after 'if (expr)', even though it does not occur in practice.
26 if (expr)
38 if (expr)
lsym_form_feed.c 21 * Test form feed after 'if (expr)', even though it does not occur in practice.
26 if (expr)
38 if (expr)
lsym_form_feed.c 21 * Test form feed after 'if (expr)', even though it does not occur in practice.
26 if (expr)
38 if (expr)
lsym_case_label.c 19 void function(void){switch(expr){case 1:;case 2:break;default:switch(inner){case 4:break;}}}
26 switch (expr) {
49 switch (expr) {
64 switch (expr) {
114 switch (expr) {
lsym_case_label.c 19 void function(void){switch(expr){case 1:;case 2:break;default:switch(inner){case 4:break;}}}
26 switch (expr) {
49 switch (expr) {
64 switch (expr) {
114 switch (expr) {
lsym_case_label.c 19 void function(void){switch(expr){case 1:;case 2:break;default:switch(inner){case 4:break;}}}
26 switch (expr) {
49 switch (expr) {
64 switch (expr) {
114 switch (expr) {
  /src/usr.bin/m4/
parser.y 51 top : expr { end_result = $1; }
53 expr : expr '+' expr { $$ = $1 + $3; } label
54 | expr '-' expr { $$ = $1 - $3; }
55 | expr EXPONENT expr { $$ = pow($1, $3); }
56 | expr '*' expr { $$ = $1 * $3;
    [all...]
parser.y 51 top : expr { end_result = $1; }
53 expr : expr '+' expr { $$ = $1 + $3; } label
54 | expr '-' expr { $$ = $1 - $3; }
55 | expr EXPONENT expr { $$ = pow($1, $3); }
56 | expr '*' expr { $$ = $1 * $3;
    [all...]
parser.y 51 top : expr { end_result = $1; }
53 expr : expr '+' expr { $$ = $1 + $3; } label
54 | expr '-' expr { $$ = $1 - $3; }
55 | expr EXPONENT expr { $$ = pow($1, $3); }
56 | expr '*' expr { $$ = $1 * $3;
    [all...]
  /src/external/bsd/tradcpp/dist/
eval.h 32 bool eval(struct place *p, char *expr);
eval.h 32 bool eval(struct place *p, char *expr);
eval.h 32 bool eval(struct place *p, char *expr);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
int_util.h 28 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__)
29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
int_util.h 28 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__)
29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
int_util.h 28 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__)
29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
  /src/usr.sbin/gspa/gspa/
gsp_gram.y 46 expr y_expr;
69 %type <y_expr> expr
78 | ID '=' expr { do_asg($1, $3, 0); }
94 | expr { $$ = expr_op($1); }
98 ea : '@' expr { $$ = abs_adr($2); }
104 | '*' REGISTER '(' expr ')'
108 expr : ID { $$ = id_expr($1); } label
111 | '(' expr ')' { $$ = $2; }
112 | '~' expr { $$ = bexpr('~', $2, NULL); }
113 | '-' expr %prec UMINU
    [all...]

Completed in 141 milliseconds

1 2 3 4 5 6 7 8 91011>>