from               88 ext/charconv/charconv.c int Scm_ConversionSupportedP(const char *from, const char *to)
from               90 ext/charconv/charconv.c     ScmConvInfo *info = jconv_open(to, from);
from              134 ext/charconv/charconv.c static ScmObj conv_name(int dir, ScmPort *remote, const char *from, const char *to)
from              138 ext/charconv/charconv.c                from, to, (dir == SCM_PORT_INPUT? "from" : "to"),
from               94 ext/charconv/charconv.h extern int Scm_ConversionSupportedP(const char *from, const char *to);
from               12 ext/charconv/convlib.c   ScmObj from;
from               17 ext/charconv/convlib.c   from = (from_scm);
from               23 ext/charconv/convlib.c const char *cfrom = Scm_GetCESName(from, "from-code");
from              363 ext/net/net.c      struct sockaddr from;
from              364 ext/net/net.c      socklen_t fromlen = sizeof(from);
from              369 ext/net/net.c      SCM_SYSCALL(r, recvfrom(sock->fd, buf, bytes, flags, &from, &fromlen));
from              374 ext/net/net.c                         Scm_MakeSockAddr(NULL, &from, fromlen));
from              377 gc/include/gc_alloc.h ???copy stuff from stl_alloc.h or remove it to a different file ???
from               41 gc/solaris_threads.c   --> Not yet supported.  Try porting the code from linux_threads.c.
from              405 src/char.c     ScmObj Scm_CharSetAddRange(ScmCharSet *cs, ScmChar from, ScmChar to)
from              410 src/char.c         if (to < from) return SCM_OBJ(cs);
from              411 src/char.c         if (from < SCM_CHARSET_MASK_CHARS) {
from              413 src/char.c                 for (i=from; i<=to; i++) MASK_SET(cs, i);
from              416 src/char.c             for (i=from; i<SCM_CHARSET_MASK_CHARS; i++)  MASK_SET(cs, i);
from              417 src/char.c             from = SCM_CHARSET_MASK_CHARS;
from              420 src/char.c             cs->ranges = newrange(from, to, NULL);
from              433 src/char.c             if (from <= lo->hi+1) break;
from              436 src/char.c             lop->next = newrange(from, to, NULL);
from              443 src/char.c         if (from < lo->lo) { /* FROM extends the LO */
from              446 src/char.c                     if (lop == NULL) cs->ranges = newrange(from, to, lo);
from              447 src/char.c                     else             lop->next = newrange(from, to, lo);
from              449 src/char.c                     lo->lo = from;
from              452 src/char.c                 lo->lo = from;
from              456 src/char.c                 lo->lo = from;
from             1427 src/extlib.c     ScmObj from;
from             1435 src/extlib.c     from = (from_scm);
from             1440 src/extlib.c     if (SCM_EXACTP(from)) fromc = Scm_GetInteger(from);
from             1441 src/extlib.c     else if (SCM_CHARP(from)) fromc = SCM_CHAR_VALUE(from);
from             1442 src/extlib.c     if (fromc < 0) Scm_Error("character or positive integer required, but got %S", from);
from             1443 src/extlib.c     if (fromc > SCM_CHAR_MAX) Scm_Error("argument out of range: %S", from);
from              905 src/gauche.h   				      ScmChar from, ScmChar to);
from              598 src/gauche/vm.h SCM_EXTERN ScmObj Scm_CallSyntaxCompiler(ScmObj syn, ScmObj from, ScmObj env);