Searched refs:expr (Results 1 - 25 of 846) sorted by relevance

1234567891011>>

/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dswigp4.ml6 <:expr< $int:_$ >> -> <:expr< (C_int $e$) >>
7 | <:expr< $str:_$ >> -> <:expr< (C_string $e$) >>
8 | <:expr< $chr:_$ >> -> <:expr< (C_char $e$) >>
9 | <:expr< $flo:_$ >> -> <:expr< (C_double $e$) >>
10 | <:expr< True >> -> <:expr< (C_boo
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Debugging/
H A DIrDADebugging.h21 #define LOGIT(expr) \
23 #expr, __FILE__, __FUNCTION__, __LINE__)
25 #define LOGIT(expr) ((void)0)
73 #define assert(expr) \
75 if (expr) { } \
77 LOGIT(expr); \
81 #define require(expr, failed) \
83 if (expr) { } \
85 LOGIT(expr); \
90 #define nrequire(expr, faile
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/
H A Ddcethread-test.h84 #define MU_TRY_DCETHREAD(expr) \
87 if ((expr)) \
89 #expr, strerror(errno)); \
H A Ddcethread-util.h106 #define DCETHREAD_SYSCALL(type, expr) \
112 ret = (expr); \
119 #define DCETHREAD_WRAP_THROW_TYPE(type, expr) \
122 type ret = (expr); \
128 #define DCETHREAD_WRAP_THROW(expr) DCETHREAD_WRAP_THROW_TYPE(int, expr)
/macosx-10.9.5/groff-38/groff/src/include/
H A Dassert.h26 inline void do_assert(int expr, int line, const char *file) argument
28 if (!expr)
38 #define assert(expr) do_assert(expr, __LINE__, __FILE__)
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dsel-gram.y47 struct hx_expr *expr;
57 %type <expr> expr
58 %type <expr> comp
59 %type <expr> word words
60 %type <expr> number
61 %type <expr> string
62 %type <expr> function
63 %type <expr> variable variables
73 start: expr { _hx509_expr_inpu
75 expr : kw_TRUE { $$ = _hx509_make_expr(op_TRUE, NULL, NULL); } label
[all...]
H A Dsel.c39 struct hx_expr *expr; local
41 expr = malloc(sizeof(*expr));
42 if (expr == NULL)
44 expr->op = op;
45 expr->arg1 = arg1;
46 expr->arg2 = arg2;
48 return expr;
86 eval_comp(hx509_context context, hx509_env env, struct hx_expr *expr) argument
88 switch (expr
159 _hx509_expr_eval(hx509_context context, hx509_env env, struct hx_expr *expr) argument
183 _hx509_expr_free(struct hx_expr *expr) argument
[all...]
H A Dtest_expr.c46 struct hx_expr *expr; local
66 expr = _hx509_expr_parse(foo[i].str);
67 if (expr == NULL)
70 val = _hx509_expr_eval(context, env, expr);
81 _hx509_expr_free(expr);
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/win/
H A Dsver.sh8 LEN=`expr length "$i"`
10 END=`expr $LEN - 2`
12 VERSION=`expr substr "$i" 2 $END`
/macosx-10.9.5/llvmCore-3425.0.33/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...]
/macosx-10.9.5/curl-78.94.1/curl/tests/unit/
H A Dcurlcheck.h25 #define fail_if(expr, msg) \
26 if(expr) { \
28 __FILE__, __LINE__, #expr, msg); \
32 #define fail_unless(expr, msg) \
33 if(!(expr)) { \
35 __FILE__, __LINE__, #expr, msg); \
56 #define abort_if(expr, msg) \
57 if(expr) { \
59 __FILE__, __LINE__, #expr, msg); \
64 #define abort_unless(expr, ms
[all...]
/macosx-10.9.5/curl-78.94.1/curl/include/curl/
H A Dtypecheck-gcc.h346 /* XXX: should evaluate to true iff expr is a pointer */
347 #define _curl_is_any_ptr(expr) \
348 (sizeof(expr) == sizeof(void*))
350 /* evaluates to true if expr is NULL */
351 /* XXX: must not evaluate expr, so this check is not accurate */
352 #define _curl_is_NULL(expr) \
353 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
355 /* evaluates to true if expr is type*, const type* or NULL */
356 #define _curl_is_ptr(expr, type) \
357 (_curl_is_NULL(expr) || \
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/ssl/
H A Dssl_expr.c41 ssl_expr *ssl_expr_comp(apr_pool_t *p, char *expr) argument
44 ssl_expr_info.inputbuf = expr;
45 ssl_expr_info.inputlen = strlen(expr);
47 ssl_expr_info.expr = FALSE;
52 return ssl_expr_info.expr;
73 int ssl_expr_exec(request_rec *r, ssl_expr *expr) argument
77 rc = ssl_expr_eval(r, expr);
/macosx-10.9.5/llvmCore-3425.0.33/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...]
/macosx-10.9.5/llvmCore-3425.0.33/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...]
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dnice.test81 } [list [expr $niceBase+3] [expr $niceBase+3]]
85 } [list [expr $niceBase+3+4] [expr $niceBase+3+4]]
101 } [list [expr $niceBase+3+4-1] [expr $niceBase+3+4-1]]
105 } [list [expr $niceBase+3+4-1-9] [expr $niceBase+3+4-1-9]]
109 } [list [expr $niceBase+3+4-1-9-10] [expr
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.v2/
H A Dbashrand33 expr "$Lower" + 0 >/dev/null 2>&1 || {
38 expr "$Upper" + 0 >/dev/null 2>&1 || {
43 expr "$SEED" + 0 >/dev/null 2>&1 || {
49 (( $Lower < 0 )) || [ `expr "$Lower" : '.*'` -gt 5 ] && {
54 (( $Upper > 32767 )) || [ `expr "$Upper" : '.*'` -gt 5 ] && {
59 (( $SEED < 0 )) || (( $SEED > 32767 )) || [ `expr "$SEED" : '.*'` -gt 5 ] && {
/macosx-10.9.5/libxml2-26/libxml2/
H A DtestAutomata.c32 char expr[5000]; local
68 while (fgets(expr, 4500, input) != NULL) {
69 if (expr[0] == '#')
71 len = strlen(expr);
74 ((expr[len] == '\n') || (expr[len] == '\t') ||
75 (expr[len] == '\r') || (expr[len] == ' '))) len--;
76 expr[len + 1] = 0;
78 if ((am != NULL) && (expr[
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A DtestAutomata.c32 char expr[5000]; local
68 while (fgets(expr, 4500, input) != NULL) {
69 if (expr[0] == '#')
71 len = strlen(expr);
74 ((expr[len] == '\n') || (expr[len] == '\t') ||
75 (expr[len] == '\r') || (expr[len] == ' '))) len--;
76 expr[len + 1] = 0;
78 if ((am != NULL) && (expr[
[all...]
/macosx-10.9.5/text_cmds-87/ed/
H A Dre.c44 static pattern_t *expr = NULL; local
55 if (!expr)
57 return expr;
61 if (expr && !patlock)
62 regfree(expr);
63 else if ((expr = (pattern_t *) malloc(sizeof(pattern_t))) == NULL) {
69 if ((n = regcomp(expr, exprs, 0))) {
70 regerror(n, expr, error, sizeof error);
72 free(expr);
73 return expr
[all...]
/macosx-10.9.5/objc4-551.1/
H A Druntests.sh22 XIT=`expr $XIT \| $?`
24 XIT=`expr $XIT \| $?`
26 XIT=`expr $XIT \| $?`
28 XIT=`expr $XIT \| $?`
/macosx-10.9.5/procmail-14/procmail/examples/
H A Ddirname11 t=`expr "$1" : "\(.*/\)[^/]*$"`
/macosx-10.9.5/ruby-104/ruby/tool/
H A Drmdirs4 parent=`expr "$dir" : '\(.*\)/[^/][^/]*'`; do
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/metadata/
H A Dtests.sh67 n=`expr $n + 1`
69 status=`expr $status + $ret`
74 n=`expr $n + 1`
76 status=`expr $status + $ret`
81 n=`expr $n + 1`
83 status=`expr $status + $ret`
88 n=`expr $n + 1`
90 status=`expr $status + $ret`
95 n=`expr $n + 1`
97 status=`expr
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/filter-aaaa/
H A Dtests.sh31 n=`expr $n + 1`
36 status=`expr $status + $ret`
41 n=`expr $n + 1`
46 status=`expr $status + $ret`
54 n=`expr $n + 1`
60 status=`expr $status + $ret`
62 n=`expr $n + 1`
68 status=`expr $status + $ret`
70 n=`expr $n + 1`
77 status=`expr
[all...]

Completed in 183 milliseconds

1234567891011>>