Home
last modified time | relevance | path

Searched refs:SCM_MAKE_VALIDATE_MSG (Results 1 – 25 of 40) sorted by relevance

12

/dports/lang/guile1/guile-1.8.8/libguile/
H A Dvalidate.h125 #define SCM_MAKE_VALIDATE_MSG(pos, var, pred, msg) \ macro
166 #define SCM_VALIDATE_REAL(pos, z) SCM_MAKE_VALIDATE_MSG (pos, z, REALP, "real")
227 SCM_MAKE_VALIDATE_MSG (pos, scm, NULL_OR_NIL_P, "empty list")
306 #define SCM_VALIDATE_HOOK(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, HOOKP, "hook")
308 #define SCM_VALIDATE_RGXP(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, RGXP, "regexp")
315 SCM_MAKE_VALIDATE_MSG (pos, port, INPUT_PORT_P, "input port")
318 SCM_MAKE_VALIDATE_MSG (pos, port, OUTPUT_PORT_P, "output port")
325 SCM_MAKE_VALIDATE_MSG (pos, port, OPINPORTP, "open input port")
336 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTPORTP, "open output port")
339 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTSTRPORTP, "open output string port")
[all …]
H A Dgoops.h104 #define SCM_VALIDATE_CLASS(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, CLASSP, "class")
108 #define SCM_VALIDATE_INSTANCE(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, INSTANCEP, "instance")
112 #define SCM_VALIDATE_PUREGENERIC(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, PUREGENERICP, "pure generic…
116 #define SCM_VALIDATE_ACCESSOR(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, ACCESSORP, "accessor")
129 #define SCM_VALIDATE_GENERIC(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, GENERICP, "generic function")
133 #define SCM_VALIDATE_METHOD(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, METHODP, "method")
H A Dmodules.h37 #define SCM_VALIDATE_MODULE(pos, scm) SCM_MAKE_VALIDATE_MSG (pos, scm, MODULEP, "module")
H A Dasync.c83 #define VALIDATE_ASYNC(pos, a) SCM_MAKE_VALIDATE_MSG(pos, a, ASYNCP, "user async")
/dports/lang/guile2/guile-2.2.7/libguile/
H A Dvalidate.h127 #define SCM_MAKE_VALIDATE_MSG(pos, var, pred, msg) \ macro
172 #define SCM_VALIDATE_REAL(pos, z) SCM_MAKE_VALIDATE_MSG (pos, z, REALP, "real")
238 SCM_MAKE_VALIDATE_MSG (pos, scm, NULL_OR_NIL_P, "empty list")
328 #define SCM_VALIDATE_HOOK(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, HOOKP, "hook")
330 #define SCM_VALIDATE_RGXP(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, RGXP, "regexp")
337 SCM_MAKE_VALIDATE_MSG (pos, port, INPUT_PORT_P, "input port")
340 SCM_MAKE_VALIDATE_MSG (pos, port, OUTPUT_PORT_P, "output port")
347 SCM_MAKE_VALIDATE_MSG (pos, port, OPINPORTP, "open input port")
358 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTPORTP, "open output port")
361 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTSTRPORTP, "open output string port")
[all …]
H A Dgoops.h63 #define SCM_VALIDATE_CLASS(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, CLASSP, "class")
67 #define SCM_VALIDATE_INSTANCE(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, INSTANCEP, "instance")
78 #define SCM_VALIDATE_GENERIC(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, GENERICP, "generic function")
81 #define SCM_VALIDATE_METHOD(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, METHODP, "method")
H A Dmodules.h38 #define SCM_VALIDATE_MODULE(pos, scm) SCM_MAKE_VALIDATE_MSG (pos, scm, MODULEP, "module")
H A Dhashtab.h32 SCM_MAKE_VALIDATE_MSG (pos, arg, HASHTABLE_P, "hash-table")
/dports/lang/guile/guile-3.0.7/libguile/
H A Dgoops.h73 #define SCM_VALIDATE_CLASS(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, CLASSP, "class")
77 #define SCM_VALIDATE_INSTANCE(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, INSTANCEP, "instance")
88 #define SCM_VALIDATE_GENERIC(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, GENERICP, "generic function")
91 #define SCM_VALIDATE_METHOD(pos, x) SCM_MAKE_VALIDATE_MSG (pos, x, METHODP, "method")
H A Dstacks.h49 SCM_MAKE_VALIDATE_MSG (pos, v, STACKP, "stack")
51 SCM_MAKE_VALIDATE_MSG (pos, v, FRAMEP, "frame")
H A Dports.h79 SCM_MAKE_VALIDATE_MSG (pos, port, PORTP, "port")
82 SCM_MAKE_VALIDATE_MSG (pos, port, INPUT_PORT_P, "input port")
85 SCM_MAKE_VALIDATE_MSG (pos, port, OUTPUT_PORT_P, "output port")
88 SCM_MAKE_VALIDATE_MSG (pos, port, OPINPORTP, "open input port")
97 SCM_MAKE_VALIDATE_MSG (pos, port, OPPORTP, "open port")
100 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTPORTP, "open output port")
H A Dfports.h52 SCM_MAKE_VALIDATE_MSG (pos, port, FPORTP, "file port")
54 SCM_MAKE_VALIDATE_MSG (pos, port, OPFPORTP, "open file port")
H A Dregex-posix.h31 #define SCM_VALIDATE_RGXP(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, RGXP, "regexp")
H A Dkeywords.h41 SCM_MAKE_VALIDATE_MSG (pos, v, KEYWORDP, "keyword")
H A Dhooks.h39 #define SCM_VALIDATE_HOOK(pos, a) SCM_MAKE_VALIDATE_MSG (pos, a, HOOKP, "hook")
H A Dvariable.h39 SCM_MAKE_VALIDATE_MSG (pos, var, VARIABLEP, "variable")
H A Dstrports.h42 SCM_MAKE_VALIDATE_MSG (pos, port, OPOUTSTRPORTP, "open output string port")
H A Drandom.h81 SCM_MAKE_VALIDATE_MSG (pos, v, RSTATEP, "random-generator-state")
H A Dprint.h61 SCM_MAKE_VALIDATE_MSG(pos, a, PRINT_STATE_P, "print-state")
H A Derror.h109 #define SCM_MAKE_VALIDATE_MSG(pos, var, pred, msg) \ macro
H A Dfilesys.h37 SCM_MAKE_VALIDATE_MSG (pos, port, DIRP, "directory port")
H A Dchars.h56 #define SCM_VALIDATE_CHAR(pos, scm) SCM_MAKE_VALIDATE_MSG (pos, scm, CHARP, "character")
H A Dmodules.h36 #define SCM_VALIDATE_MODULE(pos, scm) SCM_MAKE_VALIDATE_MSG (pos, scm, MODULEP, "module")
H A Dstruct.h121 SCM_MAKE_VALIDATE_MSG (pos, v, STRUCTP, "struct")
H A Dsrcprop.c169 SCM_MAKE_VALIDATE_MSG (pos, scm, NIMP, "non-immediate")

12