Home
last modified time | relevance | path

Searched refs:KW_AND (Results 1 – 14 of 14) sorted by relevance

/dports/finance/ledger/ledger-3.2.1/src/
H A Dtoken.cc55 kind = KW_AND; in parse_reserved_word()
169 kind = KW_AND; in next()
173 kind = KW_AND; in next()
569 case expr_t::token_t::KW_AND: out << "and"; break; in operator <<()
H A Dtoken.h80 KW_AND, // &, &&, and enumerator
H A Dparser.cc320 if (tok.kind == token_t::KW_AND) { in parse_and_expr()
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/filter/
H A Dfilter-expr-parser.c35 { "and", KW_AND },
H A Dfilter-expr-grammar.h231 KW_AND = 10519, /* KW_AND */ enumerator
411 #define KW_AND 10519 macro
H A Dfilter-expr-grammar.ym67 %left KW_AND
95 | filter_expr KW_AND filter_expr { $$ = fop_and_new($1, $3); }
H A Dfilter-expr-grammar.y412 %left KW_AND
440 | filter_expr KW_AND filter_expr { $$ = fop_and_new($1, $3); }
H A Dfilter-expr-grammar.c293 KW_AND = 10519, /* KW_AND */ enumerator
473 #define KW_AND 10519 macro
/dports/cad/stepcode/stepcode-0.8/src/express/
H A Dexp_kw.c8 char * KW_AND = "AND"; variable
/dports/cad/stepcode/stepcode-0.8/include/express/
H A Dexp_kw.h11 extern SC_EXPRESS_EXPORT char * KW_AND;
/dports/textproc/py-license-expression/license-expression-0.99/src/license_expression/
H A D__init__.py117 KW_AND = Keyword('and', TOKEN_AND) variable
121 KEYWORDS = (KW_AND, KW_OR, KW_LPAR, KW_RPAR, KW_WITH,)
125 OPERATORS = {'and': KW_AND, 'or': KW_OR, 'with': KW_WITH}
/dports/devel/z88dk/z88dk/libsrc/_DEVELOPMENT/EXAMPLES/
H A Dclisp.c148 KW_GT, KW_LT, KW_AND, KW_DIVIDE, KW_LAMBDA, enumerator
220 { "and", FTYPE(FTYPE_SPECIAL, FTYPE_ANY_ARGS), KW_AND },
708 case KW_AND: in special()
/dports/devel/z88dk/z88dk/examples/clisp/
H A Dclisp.c268 ,KW_LT, KW_AND, KW_DIVIDE, KW_LAMBDA, enumerator
363 { "and", FTYPE(FTYPE_SPECIAL, FTYPE_ANY_ARGS), KW_AND },
1023 case KW_AND:
/dports/lang/micropython/micropython-1.17/py/
H A Dgrammar.h247 DEF_RULE(and_test, c(or_and_test), list, rule(not_test), tok(KW_AND))