/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/ |
makefile | 2 SRC=test.c rexpr.c
3 OBJ=test.o rexpr.o
10 shar makefile test.c rexpr.c rexpr.h > rexpr.shar
13 $(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
|
test.c | 2 #include "rexpr.h"
5 * test for rexpr().
7 * cc -o rexpr test.c rexpr.c
9 * rexpr r string
17 if ( argc!=3 ) fprintf(stderr,"rexpr: expr s\n");
18 else printf("%d\n", rexpr(argv[1], argv[2]));
|
rexpr.h | 23 int rexpr( char *expr, char *s );
26 int rexpr();
|
rexpr.c | 4 * int rexpr(char *expr, char *s);
57 * if ( rexpr("[a-zA-Z][a-zA-Z0-9]+", str) ) then str is keyword
71 #include "rexpr.h"
120 static int rexpr(char *expr,char *s)
function 122 static int rexpr(expr, s)
130 fprintf(stderr, "rexpr(%s,%s);\n", expr,s);
432 if ( p==NULL ) {fprintf(stderr,"rexpr: out of memory\n"); exit(-1);}
446 if ( p==NULL ) {fprintf(stderr,"rexpr: out of memory\n"); exit(-1);}
|
/external/protobuf/src/google/protobuf/stubs/ |
status_macros.h | 68 #define ASSIGN_OR_RETURN_IMPL(status, lhs, rexpr) \ 69 Status status = DoAssignOrReturn(lhs, (rexpr)); \ 81 #define ASSIGN_OR_RETURN(lhs, rexpr) \ 83 STATUS_MACROS_CONCAT_NAME(_status_or_value, __COUNTER__), lhs, rexpr);
|
/build/kati/ |
eval.go | 569 rexpr := iast.rhs 571 params, err := ev.args(buf, lexpr, rexpr) 573 return iast.errorf("%v\n (%s,%s)", err, lexpr, rexpr)
|
/external/selinux/libsepol/cil/src/ |
cil_build_ast.c | 2708 struct cil_list *rexpr; local [all...] |