Graphviz 13.0.0~dev.20241222.1117
Loading...
Searching...
No Matches
gv_guile.cpp File Reference
#include <string.h>
#include <libguile.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <gvc/gvc.h>
Include dependency graph for gv_guile.cpp:

Go to the source code of this file.

Data Structures

struct  swig_type_info
 
struct  swig_cast_info
 
struct  swig_module_info
 
struct  swig_guile_clientdata
 

Macros

#define SWIG_VERSION   0x040200
 
#define SWIGGUILE
 
#define SWIG_GUILE_INIT_STATIC   extern
 
#define SWIGTEMPLATEDISAMBIGUATOR
 
#define SWIGINLINE
 
#define SWIGUNUSED
 
#define SWIGUNUSEDPARM(p)   p SWIGUNUSED
 
#define SWIGINTERN   static SWIGUNUSED
 
#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE
 
#define SWIGEXPORT
 
#define SWIGSTDCALL
 
#define SWIG_NULLPTR   NULL
 
#define SWIG_RUNTIME_VERSION   "4"
 
#define SWIG_TYPE_TABLE_NAME
 
#define SWIGRUNTIME   SWIGINTERN
 
#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE
 
#define SWIG_BUFFER_SIZE   1024
 
#define SWIG_POINTER_DISOWN   0x1
 
#define SWIG_CAST_NEW_MEMORY   0x2
 
#define SWIG_POINTER_NO_NULL   0x4
 
#define SWIG_POINTER_CLEAR   0x8
 
#define SWIG_POINTER_RELEASE   (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
 
#define SWIG_POINTER_OWN   0x1
 
#define SWIG_OK   (0)
 
#define SWIG_ERROR   (-1)
 
#define SWIG_ERROR_RELEASE_NOT_OWNED   (-200)
 
#define SWIG_IsOK(r)   (r >= 0)
 
#define SWIG_ArgError(r)   ((r != SWIG_ERROR) ? r : SWIG_TypeError)
 
#define SWIG_CASTRANKLIMIT   (1 << 8)
 
#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)
 
#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)
 
#define SWIG_BADOBJ   (SWIG_ERROR)
 
#define SWIG_OLDOBJ   (SWIG_OK)
 
#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)
 
#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)
 
#define SWIG_AddNewMask(r)   (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
 
#define SWIG_DelNewMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
 
#define SWIG_IsNewObj(r)   (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
 
#define SWIG_AddTmpMask(r)   (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
 
#define SWIG_DelTmpMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
 
#define SWIG_IsTmpObj(r)   (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
 
#define SWIG_AddCast(r)   (r)
 
#define SWIG_CheckState(r)   (SWIG_IsOK(r) ? 1 : 0)
 
#define SWIG_snprintf(O, S, F, A)   sprintf(O,F,A)
 
#define SWIG_snprintf2(O, S, F, A, B)   sprintf(O,F,A,B)
 
#define SWIG_UnknownError   -1
 
#define SWIG_IOError   -2
 
#define SWIG_RuntimeError   -3
 
#define SWIG_IndexError   -4
 
#define SWIG_TypeError   -5
 
#define SWIG_DivisionByZero   -6
 
#define SWIG_OverflowError   -7
 
#define SWIG_SyntaxError   -8
 
#define SWIG_ValueError   -9
 
#define SWIG_SystemError   -10
 
#define SWIG_AttributeError   -11
 
#define SWIG_MemoryError   -12
 
#define SWIG_NullReferenceError   -13
 
#define SWIG_scm2str(s)    SWIG_Guile_scm2newstr(s, NULL)
 
#define SWIG_str02scm(str)    str ? scm_from_utf8_string(str) : SCM_BOOL_F
 
#define SWIG_malloc(size)    scm_malloc(size)
 
#define SWIG_free(mem)    free(mem)
 
#define SWIG_ConvertPtr(s, result, type, flags)    SWIG_Guile_ConvertPtr(s, result, type, flags)
 
#define SWIG_MustGetPtr(s, type, argnum, flags)    SWIG_Guile_MustGetPtr(s, type, argnum, flags, FUNC_NAME)
 
#define SWIG_NewPointerObj(ptr, type, owner)    SWIG_Guile_NewPointerObj((void*)ptr, type, owner)
 
#define SWIG_PointerAddress(object)    SWIG_Guile_PointerAddress(object)
 
#define SWIG_PointerType(object)    SWIG_Guile_PointerType(object)
 
#define SWIG_IsPointerOfType(object, type)    SWIG_Guile_IsPointerOfType(object, type)
 
#define SWIG_IsPointer(object)    SWIG_Guile_IsPointer(object)
 
#define SWIG_contract_assert(expr, msg)
 
#define SWIG_ConvertMember(obj, ptr, sz, ty)    SWIG_Guile_ConvertMember(obj, ptr, sz, ty, FUNC_NAME)
 
#define SWIG_NewMemberObj(ptr, sz, type)    SWIG_Guile_NewMemberObj(ptr, sz, type, FUNC_NAME)
 
#define SWIG_GetModule(clientdata)   SWIG_Guile_GetModule(clientdata)
 
#define SWIG_SetModule(clientdata, pointer)   SWIG_Guile_SetModule(pointer)
 
#define FUNC_NAME   "SWIG_Guile_scm2newstr"
 
#define SWIG_Guile_GetSmob(x)
 
#define GUILE_MAYBE_VALUES    if (gswig_list_p) gswig_result = scm_values(gswig_result);
 
#define GUILE_MAYBE_VECTOR    if (gswig_list_p) gswig_result = scm_vector(gswig_result);
 
#define SWIG_APPEND_VALUE(object)
 
#define SWIGTYPE_p_Agedge_t   swig_types[0]
 
#define SWIGTYPE_p_Agnode_t   swig_types[1]
 
#define SWIGTYPE_p_Agraph_t   swig_types[2]
 
#define SWIGTYPE_p_Agsym_t   swig_types[3]
 
#define SWIGTYPE_p_FILE   swig_types[4]
 
#define SWIGTYPE_p_unsigned_long   swig_types[5]
 
#define SWIG_TypeQuery(name)   SWIG_TypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_MangledTypeQuery(name)   SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
 
#define FUNC_NAME   "graph"
 
#define FUNC_NAME   "digraph"
 
#define FUNC_NAME   "strictgraph"
 
#define FUNC_NAME   "strictdigraph"
 
#define FUNC_NAME   "readstring"
 
#define FUNC_NAME   "read"
 
#define FUNC_NAME   "read"
 
#define FUNC_NAME   "read"
 
#define FUNC_NAME   "graph"
 
#define FUNC_NAME   "graph"
 
#define FUNC_NAME   "node"
 
#define FUNC_NAME   "edge"
 
#define FUNC_NAME   "edge"
 
#define FUNC_NAME   "edge"
 
#define FUNC_NAME   "edge"
 
#define FUNC_NAME   "edge"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "setv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "getv"
 
#define FUNC_NAME   "nameof"
 
#define FUNC_NAME   "nameof"
 
#define FUNC_NAME   "nameof"
 
#define FUNC_NAME   "nameof"
 
#define FUNC_NAME   "findsubg"
 
#define FUNC_NAME   "findnode"
 
#define FUNC_NAME   "findedge"
 
#define FUNC_NAME   "findattr"
 
#define FUNC_NAME   "findattr"
 
#define FUNC_NAME   "findattr"
 
#define FUNC_NAME   "findattr"
 
#define FUNC_NAME   "headof"
 
#define FUNC_NAME   "tailof"
 
#define FUNC_NAME   "graphof"
 
#define FUNC_NAME   "graphof"
 
#define FUNC_NAME   "graphof"
 
#define FUNC_NAME   "graphof"
 
#define FUNC_NAME   "rootof"
 
#define FUNC_NAME   "protonode"
 
#define FUNC_NAME   "protoedge"
 
#define FUNC_NAME   "ok"
 
#define FUNC_NAME   "ok"
 
#define FUNC_NAME   "ok"
 
#define FUNC_NAME   "ok"
 
#define FUNC_NAME   "ok"
 
#define FUNC_NAME   "firstsubg"
 
#define FUNC_NAME   "nextsubg"
 
#define FUNC_NAME   "firstsupg"
 
#define FUNC_NAME   "nextsupg"
 
#define FUNC_NAME   "firstedge"
 
#define FUNC_NAME   "nextedge"
 
#define FUNC_NAME   "firstout"
 
#define FUNC_NAME   "nextout"
 
#define FUNC_NAME   "firstedge"
 
#define FUNC_NAME   "firstedge"
 
#define FUNC_NAME   "nextedge"
 
#define FUNC_NAME   "nextedge"
 
#define FUNC_NAME   "firstout"
 
#define FUNC_NAME   "firstout"
 
#define FUNC_NAME   "nextout"
 
#define FUNC_NAME   "nextout"
 
#define FUNC_NAME   "firsthead"
 
#define FUNC_NAME   "nexthead"
 
#define FUNC_NAME   "firstin"
 
#define FUNC_NAME   "nextin"
 
#define FUNC_NAME   "firstin"
 
#define FUNC_NAME   "firstin"
 
#define FUNC_NAME   "nextin"
 
#define FUNC_NAME   "nextin"
 
#define FUNC_NAME   "firsttail"
 
#define FUNC_NAME   "nexttail"
 
#define FUNC_NAME   "firstnode"
 
#define FUNC_NAME   "nextnode"
 
#define FUNC_NAME   "firstnode"
 
#define FUNC_NAME   "firstnode"
 
#define FUNC_NAME   "nextnode"
 
#define FUNC_NAME   "nextnode"
 
#define FUNC_NAME   "firstattr"
 
#define FUNC_NAME   "nextattr"
 
#define FUNC_NAME   "firstattr"
 
#define FUNC_NAME   "nextattr"
 
#define FUNC_NAME   "firstattr"
 
#define FUNC_NAME   "firstattr"
 
#define FUNC_NAME   "nextattr"
 
#define FUNC_NAME   "nextattr"
 
#define FUNC_NAME   "rm"
 
#define FUNC_NAME   "rm"
 
#define FUNC_NAME   "rm"
 
#define FUNC_NAME   "rm"
 
#define FUNC_NAME   "layout"
 
#define FUNC_NAME   "render"
 
#define FUNC_NAME   "render"
 
#define FUNC_NAME   "render"
 
#define FUNC_NAME   "render"
 
#define FUNC_NAME   "render"
 
#define FUNC_NAME   "renderresult"
 
#define FUNC_NAME   "renderchannel"
 
#define FUNC_NAME   "renderdata"
 
#define FUNC_NAME   "write"
 
#define FUNC_NAME   "write"
 
#define FUNC_NAME   "write"
 
#define FUNC_NAME   "tred"
 
#define SWIG_INIT_CLIENT_DATA_TYPE   void *
 

Typedefs

typedef void *(* swig_converter_func) (void *, int *)
 
typedef struct swig_type_info *(* swig_dycast_func) (void **)
 
typedef struct swig_type_info swig_type_info
 
typedef struct swig_cast_info swig_cast_info
 
typedef struct swig_module_info swig_module_info
 
typedef SCM(* swig_guile_proc) ()
 
typedef SCM(* guile_destructor) (SCM)
 
typedef struct swig_guile_clientdata swig_guile_clientdata
 

Functions

SWIG_GUILE_INIT_STATIC void SWIG_init (void)
 
SWIGRUNTIME int SWIG_TypeNameComp (const char *f1, const char *l1, const char *f2, const char *l2)
 
SWIGRUNTIME int SWIG_TypeCmp (const char *nb, const char *tb)
 
SWIGRUNTIME int SWIG_TypeEquiv (const char *nb, const char *tb)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheck (const char *c, swig_type_info *ty)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheckStruct (const swig_type_info *from, swig_type_info *ty)
 
SWIGRUNTIMEINLINE void * SWIG_TypeCast (swig_cast_info *ty, void *ptr, int *newmemory)
 
SWIGRUNTIME swig_type_infoSWIG_TypeDynamicCast (swig_type_info *ty, void **ptr)
 
SWIGRUNTIMEINLINE const char * SWIG_TypeName (const swig_type_info *ty)
 
SWIGRUNTIME const char * SWIG_TypePrettyName (const swig_type_info *type)
 
SWIGRUNTIME void SWIG_TypeClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME void SWIG_TypeNewClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME swig_type_infoSWIG_MangledTypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME swig_type_infoSWIG_TypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME char * SWIG_PackData (char *c, void *ptr, size_t sz)
 
SWIGRUNTIME const char * SWIG_UnpackData (const char *c, void *ptr, size_t sz)
 
SWIGRUNTIME char * SWIG_PackVoidPtr (char *buff, void *ptr, const char *name, size_t bsz)
 
SWIGRUNTIME const char * SWIG_UnpackVoidPtr (const char *c, void **ptr, const char *name)
 
SWIGRUNTIME char * SWIG_PackDataName (char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
 
SWIGRUNTIME const char * SWIG_UnpackDataName (const char *c, void *ptr, size_t sz, const char *name)
 
static swig_module_infoSWIG_Guile_GetModule (void *SWIGUNUSEDPARM(clientdata))
 
SWIGINTERN char * SWIG_Guile_scm2newstr (SCM str, size_t *len)
 
SWIGINTERN void SWIG_Guile_MarkPointerNoncollectable (SCM s)
 
SWIGINTERN SCM SWIG_Guile_NewPointerObj (void *ptr, swig_type_info *type, int owner)
 
SWIGINTERN unsigned long SWIG_Guile_PointerAddress (SCM object)
 
SWIGINTERN swig_type_infoSWIG_Guile_PointerType (SCM object)
 
SWIGINTERN int SWIG_Guile_IsValidSmob (SCM smob)
 
SWIGINTERN int SWIG_Guile_ConvertPtr (SCM s, void **result, swig_type_info *type, int flags)
 
SWIGINTERNINLINE void * SWIG_Guile_MustGetPtr (SCM s, swig_type_info *type, int argnum, int flags, const char *func_name)
 
SWIGINTERNINLINE int SWIG_Guile_IsPointerOfType (SCM s, swig_type_info *type)
 
SWIGINTERNINLINE int SWIG_Guile_IsPointer (SCM s)
 
SWIGINTERN void SWIG_Guile_MarkPointerDestroyed (SCM s)
 
SWIGINTERN SCM SWIG_Guile_NewMemberObj (void *ptr, size_t sz, swig_type_info *type, const char *func_name)
 
SWIGINTERN int SWIG_Guile_ConvertMember (SCM smob, void *ptr, size_t sz, swig_type_info *type, const char *func_name)
 
SWIGINTERN int print_swig_aux (SCM swig_smob, SCM port, scm_print_state *pstate, const char *attribute)
 
SWIGINTERN int print_swig (SCM swig_smob, SCM port, scm_print_state *pstate)
 
SWIGINTERN int print_collectable_swig (SCM swig_smob, SCM port, scm_print_state *pstate)
 
SWIGINTERN int print_destroyed_swig (SCM swig_smob, SCM port, scm_print_state *pstate)
 
SWIGINTERN int print_member_function_swig (SCM swig_smob, SCM port, scm_print_state *pstate)
 
SWIGINTERN SCM equalp_swig (SCM A, SCM B)
 
SWIGINTERN size_t free_swig (SCM A)
 
SWIGINTERN size_t free_swig_member_function (SCM A)
 
SWIGINTERN int ensure_smob_tag (SCM swig_module, scm_t_bits *tag_variable, const char *smob_name, const char *scheme_variable_name)
 
SWIGINTERN SCM SWIG_Guile_Init ()
 
SWIGINTERN void SWIG_Guile_SetModule (swig_module_info *swig_module)
 
SWIGINTERN int SWIG_Guile_GetArgs (SCM *dest, SCM rest, int reqargs, int optargs, const char *procname)
 
Agraph_tgraph (char *name)
 
Agraph_tdigraph (char *name)
 
Agraph_tstrictgraph (char *name)
 
Agraph_tstrictdigraph (char *name)
 
Agraph_treadstring (char *string)
 
Agraph_tread (const char *filename)
 
Agraph_tread (FILE *f)
 
Agraph_tgraph (Agraph_t *g, char *name)
 
Agnode_tnode (Agraph_t *g, char *name)
 
Agedge_tedge (Agnode_t *t, Agnode_t *h)
 
Agedge_tedge (Agnode_t *t, char *hname)
 
Agedge_tedge (char *tname, Agnode_t *h)
 
Agedge_tedge (Agraph_t *g, char *tname, char *hname)
 
char * setv (Agraph_t *g, char *attr, char *val)
 
char * setv (Agnode_t *n, char *attr, char *val)
 
char * setv (Agedge_t *e, char *attr, char *val)
 
char * setv (Agraph_t *g, Agsym_t *a, char *val)
 
char * setv (Agnode_t *n, Agsym_t *a, char *val)
 
char * setv (Agedge_t *e, Agsym_t *a, char *val)
 
char * getv (Agraph_t *g, char *attr)
 
char * getv (Agnode_t *n, char *attr)
 
char * getv (Agedge_t *e, char *attr)
 
char * getv (Agraph_t *g, Agsym_t *a)
 
char * getv (Agnode_t *n, Agsym_t *a)
 
char * getv (Agedge_t *e, Agsym_t *a)
 
char * nameof (Agraph_t *g)
 
char * nameof (Agnode_t *n)
 
char * nameof (Agsym_t *a)
 
Agraph_tfindsubg (Agraph_t *g, char *name)
 
Agnode_tfindnode (Agraph_t *g, char *name)
 
Agedge_tfindedge (Agnode_t *t, Agnode_t *h)
 
Agsym_tfindattr (Agraph_t *g, char *name)
 
Agsym_tfindattr (Agnode_t *n, char *name)
 
Agsym_tfindattr (Agedge_t *e, char *name)
 
Agnode_theadof (Agedge_t *e)
 
Agnode_ttailof (Agedge_t *e)
 
Agraph_tgraphof (Agraph_t *g)
 
Agraph_tgraphof (Agedge_t *e)
 
Agraph_tgraphof (Agnode_t *n)
 
Agraph_trootof (Agraph_t *g)
 
Agnode_tprotonode (Agraph_t *g)
 
Agedge_tprotoedge (Agraph_t *g)
 
bool ok (Agraph_t *g)
 
bool ok (Agnode_t *n)
 
bool ok (Agedge_t *e)
 
bool ok (Agsym_t *a)
 
Agraph_tfirstsubg (Agraph_t *g)
 
Agraph_tnextsubg (Agraph_t *g, Agraph_t *sg)
 
Agraph_tfirstsupg (Agraph_t *g)
 
Agraph_tnextsupg (Agraph_t *g, Agraph_t *sg)
 
Agedge_tfirstedge (Agraph_t *g)
 
Agedge_tnextedge (Agraph_t *g, Agedge_t *e)
 
Agedge_tfirstout (Agraph_t *g)
 
Agedge_tnextout (Agraph_t *g, Agedge_t *e)
 
Agedge_tfirstedge (Agnode_t *n)
 
Agedge_tnextedge (Agnode_t *n, Agedge_t *e)
 
Agedge_tfirstout (Agnode_t *n)
 
Agedge_tnextout (Agnode_t *n, Agedge_t *e)
 
Agnode_tfirsthead (Agnode_t *n)
 
Agnode_tnexthead (Agnode_t *n, Agnode_t *h)
 
Agedge_tfirstin (Agraph_t *g)
 
Agedge_tnextin (Agnode_t *n, Agedge_t *e)
 
Agedge_tfirstin (Agnode_t *n)
 
Agedge_tnextin (Agraph_t *g, Agedge_t *e)
 
Agnode_tfirsttail (Agnode_t *n)
 
Agnode_tnexttail (Agnode_t *n, Agnode_t *t)
 
Agnode_tfirstnode (Agraph_t *g)
 
Agnode_tnextnode (Agraph_t *g, Agnode_t *n)
 
Agnode_tfirstnode (Agedge_t *e)
 
Agnode_tnextnode (Agedge_t *e, Agnode_t *n)
 
Agsym_tfirstattr (Agraph_t *g)
 
Agsym_tnextattr (Agraph_t *g, Agsym_t *a)
 
Agsym_tfirstattr (Agedge_t *e)
 
Agsym_tnextattr (Agedge_t *e, Agsym_t *a)
 
Agsym_tfirstattr (Agnode_t *n)
 
Agsym_tnextattr (Agnode_t *n, Agsym_t *a)
 
bool rm (Agraph_t *g)
 
bool rm (Agnode_t *n)
 
bool rm (Agedge_t *e)
 
bool layout (Agraph_t *g, const char *engine)
 
bool render (Agraph_t *g)
 
bool render (Agraph_t *g, const char *format)
 
bool render (Agraph_t *g, const char *format, FILE *fout)
 
bool render (Agraph_t *g, const char *format, const char *filename)
 
void renderresult (Agraph_t *g, const char *format, char *outdata)
 
bool renderchannel (Agraph_t *g, const char *format, const char *channelname)
 
char * renderdata (Agraph_t *g, const char *format)
 
bool write (Agraph_t *g, const char *filename)
 
bool write (Agraph_t *g, FILE *f)
 
bool tred (Agraph_t *g)
 
static SCM _wrap_graph__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_digraph (SCM s_0)
 
static SCM _wrap_strictgraph (SCM s_0)
 
static SCM _wrap_strictdigraph (SCM s_0)
 
static SCM _wrap_readstring (SCM s_0)
 
static SCM _wrap_read__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_read__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_read (SCM rest)
 
static SCM _wrap_graph__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_graph (SCM rest)
 
static SCM _wrap_node (SCM s_0, SCM s_1)
 
static SCM _wrap_edge__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_edge__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_edge__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_edge__SWIG_3 (int argc, SCM *argv)
 
static SCM _wrap_edge (SCM rest)
 
static SCM _wrap_setv__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_setv__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_setv__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_setv__SWIG_3 (int argc, SCM *argv)
 
static SCM _wrap_setv__SWIG_4 (int argc, SCM *argv)
 
static SCM _wrap_setv__SWIG_5 (int argc, SCM *argv)
 
static SCM _wrap_setv (SCM rest)
 
static SCM _wrap_getv__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_getv__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_getv__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_getv__SWIG_3 (int argc, SCM *argv)
 
static SCM _wrap_getv__SWIG_4 (int argc, SCM *argv)
 
static SCM _wrap_getv__SWIG_5 (int argc, SCM *argv)
 
static SCM _wrap_getv (SCM rest)
 
static SCM _wrap_nameof__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nameof__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nameof__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_nameof (SCM rest)
 
static SCM _wrap_findsubg (SCM s_0, SCM s_1)
 
static SCM _wrap_findnode (SCM s_0, SCM s_1)
 
static SCM _wrap_findedge (SCM s_0, SCM s_1)
 
static SCM _wrap_findattr__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_findattr__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_findattr__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_findattr (SCM rest)
 
static SCM _wrap_headof (SCM s_0)
 
static SCM _wrap_tailof (SCM s_0)
 
static SCM _wrap_graphof__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_graphof__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_graphof__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_graphof (SCM rest)
 
static SCM _wrap_rootof (SCM s_0)
 
static SCM _wrap_protonode (SCM s_0)
 
static SCM _wrap_protoedge (SCM s_0)
 
static SCM _wrap_ok__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_ok__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_ok__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_ok__SWIG_3 (int argc, SCM *argv)
 
static SCM _wrap_ok (SCM rest)
 
static SCM _wrap_firstsubg (SCM s_0)
 
static SCM _wrap_nextsubg (SCM s_0, SCM s_1)
 
static SCM _wrap_firstsupg (SCM s_0)
 
static SCM _wrap_nextsupg (SCM s_0, SCM s_1)
 
static SCM _wrap_firstedge__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nextedge__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_firstout__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nextout__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_firstedge__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_firstedge (SCM rest)
 
static SCM _wrap_nextedge__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nextedge (SCM rest)
 
static SCM _wrap_firstout__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_firstout (SCM rest)
 
static SCM _wrap_nextout__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nextout (SCM rest)
 
static SCM _wrap_firsthead (SCM s_0)
 
static SCM _wrap_nexthead (SCM s_0, SCM s_1)
 
static SCM _wrap_firstin__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nextin__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_firstin__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_firstin (SCM rest)
 
static SCM _wrap_nextin__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nextin (SCM rest)
 
static SCM _wrap_firsttail (SCM s_0)
 
static SCM _wrap_nexttail (SCM s_0, SCM s_1)
 
static SCM _wrap_firstnode__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nextnode__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_firstnode__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_firstnode (SCM rest)
 
static SCM _wrap_nextnode__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nextnode (SCM rest)
 
static SCM _wrap_firstattr__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_nextattr__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_firstattr__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_nextattr__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_firstattr__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_firstattr (SCM rest)
 
static SCM _wrap_nextattr__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_nextattr (SCM rest)
 
static SCM _wrap_rm__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_rm__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_rm__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_rm (SCM rest)
 
static SCM _wrap_layout (SCM s_0, SCM s_1)
 
static SCM _wrap_render__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_render__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_render__SWIG_2 (int argc, SCM *argv)
 
static SCM _wrap_render__SWIG_3 (int argc, SCM *argv)
 
static SCM _wrap_render (SCM rest)
 
static SCM _wrap_renderresult (SCM s_0, SCM s_1, SCM s_2)
 
static SCM _wrap_renderchannel (SCM s_0, SCM s_1, SCM s_2)
 
static SCM _wrap_renderdata (SCM s_0, SCM s_1)
 
static SCM _wrap_write__SWIG_0 (int argc, SCM *argv)
 
static SCM _wrap_write__SWIG_1 (int argc, SCM *argv)
 
static SCM _wrap_write (SCM rest)
 
static SCM _wrap_tred (SCM s_0)
 
SWIGRUNTIME void SWIG_InitializeModule (SWIG_INIT_CLIENT_DATA_TYPE clientdata)
 
SWIGRUNTIME void SWIG_PropagateClientData (void)
 

Variables

static int swig_initialized = 0
 
static scm_t_bits swig_tag = 0
 
static scm_t_bits swig_collectable_tag = 0
 
static scm_t_bits swig_finalized_tag = 0
 
static scm_t_bits swig_destroyed_tag = 0
 
static scm_t_bits swig_member_function_tag = 0
 
static SCM swig_make_func = SCM_EOL
 
static SCM swig_keyword = SCM_EOL
 
static SCM swig_symbol = SCM_EOL
 
static swig_type_infoswig_types [7]
 
static swig_module_info swig_module = {swig_types, 6, 0, 0, 0, 0}
 
static swig_type_info _swigt__p_Agedge_t = {"_p_Agedge_t", "Agedge_t *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_Agnode_t = {"_p_Agnode_t", "Agnode_t *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_Agraph_t = {"_p_Agraph_t", "Agraph_t *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_Agsym_t = {"_p_Agsym_t", "Agsym_t *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_FILE = {"_p_FILE", "FILE *", 0, 0, (void*)0, 0}
 
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "SCM *|unsigned long *", 0, 0, (void*)0, 0}
 
static swig_type_infoswig_type_initial []
 
static swig_cast_info _swigc__p_Agedge_t [] = { {&_swigt__p_Agedge_t, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_Agnode_t [] = { {&_swigt__p_Agnode_t, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_Agraph_t [] = { {&_swigt__p_Agraph_t, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_Agsym_t [] = { {&_swigt__p_Agsym_t, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_FILE [] = { {&_swigt__p_FILE, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_info _swigc__p_unsigned_long [] = { {&_swigt__p_unsigned_long, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_infoswig_cast_initial []
 

Macro Definition Documentation

◆ FUNC_NAME [1/113]

#define FUNC_NAME   "SWIG_Guile_scm2newstr"

◆ FUNC_NAME [2/113]

#define FUNC_NAME   "graph"

◆ FUNC_NAME [3/113]

#define FUNC_NAME   "digraph"

◆ FUNC_NAME [4/113]

#define FUNC_NAME   "strictgraph"

◆ FUNC_NAME [5/113]

#define FUNC_NAME   "strictdigraph"

◆ FUNC_NAME [6/113]

#define FUNC_NAME   "readstring"

◆ FUNC_NAME [7/113]

#define FUNC_NAME   "read"

◆ FUNC_NAME [8/113]

#define FUNC_NAME   "read"

◆ FUNC_NAME [9/113]

#define FUNC_NAME   "read"

◆ FUNC_NAME [10/113]

#define FUNC_NAME   "graph"

◆ FUNC_NAME [11/113]

#define FUNC_NAME   "graph"

◆ FUNC_NAME [12/113]

#define FUNC_NAME   "node"

◆ FUNC_NAME [13/113]

#define FUNC_NAME   "edge"

◆ FUNC_NAME [14/113]

#define FUNC_NAME   "edge"

◆ FUNC_NAME [15/113]

#define FUNC_NAME   "edge"

◆ FUNC_NAME [16/113]

#define FUNC_NAME   "edge"

◆ FUNC_NAME [17/113]

#define FUNC_NAME   "edge"

◆ FUNC_NAME [18/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [19/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [20/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [21/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [22/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [23/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [24/113]

#define FUNC_NAME   "setv"

◆ FUNC_NAME [25/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [26/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [27/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [28/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [29/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [30/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [31/113]

#define FUNC_NAME   "getv"

◆ FUNC_NAME [32/113]

#define FUNC_NAME   "nameof"

◆ FUNC_NAME [33/113]

#define FUNC_NAME   "nameof"

◆ FUNC_NAME [34/113]

#define FUNC_NAME   "nameof"

◆ FUNC_NAME [35/113]

#define FUNC_NAME   "nameof"

◆ FUNC_NAME [36/113]

#define FUNC_NAME   "findsubg"

◆ FUNC_NAME [37/113]

#define FUNC_NAME   "findnode"

◆ FUNC_NAME [38/113]

#define FUNC_NAME   "findedge"

◆ FUNC_NAME [39/113]

#define FUNC_NAME   "findattr"

◆ FUNC_NAME [40/113]

#define FUNC_NAME   "findattr"

◆ FUNC_NAME [41/113]

#define FUNC_NAME   "findattr"

◆ FUNC_NAME [42/113]

#define FUNC_NAME   "findattr"

◆ FUNC_NAME [43/113]

#define FUNC_NAME   "headof"

◆ FUNC_NAME [44/113]

#define FUNC_NAME   "tailof"

◆ FUNC_NAME [45/113]

#define FUNC_NAME   "graphof"

◆ FUNC_NAME [46/113]

#define FUNC_NAME   "graphof"

◆ FUNC_NAME [47/113]

#define FUNC_NAME   "graphof"

◆ FUNC_NAME [48/113]

#define FUNC_NAME   "graphof"

◆ FUNC_NAME [49/113]

#define FUNC_NAME   "rootof"

◆ FUNC_NAME [50/113]

#define FUNC_NAME   "protonode"

◆ FUNC_NAME [51/113]

#define FUNC_NAME   "protoedge"

◆ FUNC_NAME [52/113]

#define FUNC_NAME   "ok"

◆ FUNC_NAME [53/113]

#define FUNC_NAME   "ok"

◆ FUNC_NAME [54/113]

#define FUNC_NAME   "ok"

◆ FUNC_NAME [55/113]

#define FUNC_NAME   "ok"

◆ FUNC_NAME [56/113]

#define FUNC_NAME   "ok"

◆ FUNC_NAME [57/113]

#define FUNC_NAME   "firstsubg"

◆ FUNC_NAME [58/113]

#define FUNC_NAME   "nextsubg"

◆ FUNC_NAME [59/113]

#define FUNC_NAME   "firstsupg"

◆ FUNC_NAME [60/113]

#define FUNC_NAME   "nextsupg"

◆ FUNC_NAME [61/113]

#define FUNC_NAME   "firstedge"

◆ FUNC_NAME [62/113]

#define FUNC_NAME   "nextedge"

◆ FUNC_NAME [63/113]

#define FUNC_NAME   "firstout"

◆ FUNC_NAME [64/113]

#define FUNC_NAME   "nextout"

◆ FUNC_NAME [65/113]

#define FUNC_NAME   "firstedge"

◆ FUNC_NAME [66/113]

#define FUNC_NAME   "firstedge"

◆ FUNC_NAME [67/113]

#define FUNC_NAME   "nextedge"

◆ FUNC_NAME [68/113]

#define FUNC_NAME   "nextedge"

◆ FUNC_NAME [69/113]

#define FUNC_NAME   "firstout"

◆ FUNC_NAME [70/113]

#define FUNC_NAME   "firstout"

◆ FUNC_NAME [71/113]

#define FUNC_NAME   "nextout"

◆ FUNC_NAME [72/113]

#define FUNC_NAME   "nextout"

◆ FUNC_NAME [73/113]

#define FUNC_NAME   "firsthead"

◆ FUNC_NAME [74/113]

#define FUNC_NAME   "nexthead"

◆ FUNC_NAME [75/113]

#define FUNC_NAME   "firstin"

◆ FUNC_NAME [76/113]

#define FUNC_NAME   "nextin"

◆ FUNC_NAME [77/113]

#define FUNC_NAME   "firstin"

◆ FUNC_NAME [78/113]

#define FUNC_NAME   "firstin"

◆ FUNC_NAME [79/113]

#define FUNC_NAME   "nextin"

◆ FUNC_NAME [80/113]

#define FUNC_NAME   "nextin"

◆ FUNC_NAME [81/113]

#define FUNC_NAME   "firsttail"

◆ FUNC_NAME [82/113]

#define FUNC_NAME   "nexttail"

◆ FUNC_NAME [83/113]

#define FUNC_NAME   "firstnode"

◆ FUNC_NAME [84/113]

#define FUNC_NAME   "nextnode"

◆ FUNC_NAME [85/113]

#define FUNC_NAME   "firstnode"

◆ FUNC_NAME [86/113]

#define FUNC_NAME   "firstnode"

◆ FUNC_NAME [87/113]

#define FUNC_NAME   "nextnode"

◆ FUNC_NAME [88/113]

#define FUNC_NAME   "nextnode"

◆ FUNC_NAME [89/113]

#define FUNC_NAME   "firstattr"

◆ FUNC_NAME [90/113]

#define FUNC_NAME   "nextattr"

◆ FUNC_NAME [91/113]

#define FUNC_NAME   "firstattr"

◆ FUNC_NAME [92/113]

#define FUNC_NAME   "nextattr"

◆ FUNC_NAME [93/113]

#define FUNC_NAME   "firstattr"

◆ FUNC_NAME [94/113]

#define FUNC_NAME   "firstattr"

◆ FUNC_NAME [95/113]

#define FUNC_NAME   "nextattr"

◆ FUNC_NAME [96/113]

#define FUNC_NAME   "nextattr"

◆ FUNC_NAME [97/113]

#define FUNC_NAME   "rm"

◆ FUNC_NAME [98/113]

#define FUNC_NAME   "rm"

◆ FUNC_NAME [99/113]

#define FUNC_NAME   "rm"

◆ FUNC_NAME [100/113]

#define FUNC_NAME   "rm"

◆ FUNC_NAME [101/113]

#define FUNC_NAME   "layout"

◆ FUNC_NAME [102/113]

#define FUNC_NAME   "render"

◆ FUNC_NAME [103/113]

#define FUNC_NAME   "render"

◆ FUNC_NAME [104/113]

#define FUNC_NAME   "render"

◆ FUNC_NAME [105/113]

#define FUNC_NAME   "render"

◆ FUNC_NAME [106/113]

#define FUNC_NAME   "render"

◆ FUNC_NAME [107/113]

#define FUNC_NAME   "renderresult"

◆ FUNC_NAME [108/113]

#define FUNC_NAME   "renderchannel"

◆ FUNC_NAME [109/113]

#define FUNC_NAME   "renderdata"

◆ FUNC_NAME [110/113]

#define FUNC_NAME   "write"

◆ FUNC_NAME [111/113]

#define FUNC_NAME   "write"

◆ FUNC_NAME [112/113]

#define FUNC_NAME   "write"

◆ FUNC_NAME [113/113]

#define FUNC_NAME   "tred"

◆ GUILE_MAYBE_VALUES

#define GUILE_MAYBE_VALUES    if (gswig_list_p) gswig_result = scm_values(gswig_result);

Definition at line 1299 of file gv_guile.cpp.

◆ GUILE_MAYBE_VECTOR

#define GUILE_MAYBE_VECTOR    if (gswig_list_p) gswig_result = scm_vector(gswig_result);

Definition at line 1302 of file gv_guile.cpp.

◆ SWIG_AddCast

#define SWIG_AddCast (   r)    (r)

Definition at line 329 of file gv_guile.cpp.

◆ SWIG_AddNewMask

#define SWIG_AddNewMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)

Definition at line 305 of file gv_guile.cpp.

◆ SWIG_AddTmpMask

#define SWIG_AddTmpMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)

Definition at line 308 of file gv_guile.cpp.

◆ SWIG_APPEND_VALUE

#define SWIG_APPEND_VALUE (   object)
Value:
if (gswig_result == SCM_UNSPECIFIED) \
gswig_result = object; \
else { \
if (!gswig_list_p) { \
gswig_list_p = 1; \
gswig_result = scm_list_n(gswig_result, object, SCM_UNDEFINED); \
} \
else \
gswig_result = scm_append(scm_list_n(gswig_result, scm_list_n(object, SCM_UNDEFINED), SCM_UNDEFINED)); \
}

Definition at line 1305 of file gv_guile.cpp.

◆ SWIG_ArgError

#define SWIG_ArgError (   r)    ((r != SWIG_ERROR) ? r : SWIG_TypeError)

Definition at line 291 of file gv_guile.cpp.

◆ SWIG_AttributeError

#define SWIG_AttributeError   -11

Definition at line 760 of file gv_guile.cpp.

◆ SWIG_BADOBJ

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 300 of file gv_guile.cpp.

◆ SWIG_BUFFER_SIZE

#define SWIG_BUFFER_SIZE   1024

Definition at line 189 of file gv_guile.cpp.

◆ SWIG_CAST_NEW_MEMORY

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 194 of file gv_guile.cpp.

◆ SWIG_CASTRANKLIMIT

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 294 of file gv_guile.cpp.

◆ SWIG_CheckState

#define SWIG_CheckState (   r)    (SWIG_IsOK(r) ? 1 : 0)

Definition at line 330 of file gv_guile.cpp.

◆ SWIG_contract_assert

#define SWIG_contract_assert (   expr,
  msg 
)
Value:
do { \
if (!(expr)) \
scm_error(scm_from_locale_symbol("swig-contract-assertion-failed"), \
FUNC_NAME, msg, SCM_EOL, SCM_BOOL_F); \
} while (0)
Exstate_t expr
#define FUNC_NAME

Definition at line 837 of file gv_guile.cpp.

◆ SWIG_ConvertMember

#define SWIG_ConvertMember (   obj,
  ptr,
  sz,
  ty 
)     SWIG_Guile_ConvertMember(obj, ptr, sz, ty, FUNC_NAME)

Definition at line 845 of file gv_guile.cpp.

◆ SWIG_ConvertPtr

#define SWIG_ConvertPtr (   s,
  result,
  type,
  flags 
)     SWIG_Guile_ConvertPtr(s, result, type, flags)

Definition at line 823 of file gv_guile.cpp.

◆ SWIG_DelNewMask

#define SWIG_DelNewMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)

Definition at line 306 of file gv_guile.cpp.

◆ SWIG_DelTmpMask

#define SWIG_DelTmpMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)

Definition at line 309 of file gv_guile.cpp.

◆ SWIG_DivisionByZero

#define SWIG_DivisionByZero   -6

Definition at line 755 of file gv_guile.cpp.

◆ SWIG_ERROR

#define SWIG_ERROR   (-1)

Definition at line 284 of file gv_guile.cpp.

◆ SWIG_ERROR_RELEASE_NOT_OWNED

#define SWIG_ERROR_RELEASE_NOT_OWNED   (-200)

Definition at line 288 of file gv_guile.cpp.

◆ SWIG_free

#define SWIG_free (   mem)     free(mem)

Definition at line 821 of file gv_guile.cpp.

◆ SWIG_GetModule

#define SWIG_GetModule (   clientdata)    SWIG_Guile_GetModule(clientdata)

Definition at line 852 of file gv_guile.cpp.

◆ SWIG_Guile_GetSmob

#define SWIG_Guile_GetSmob (   x)
Value:
( !scm_is_null(x) && SCM_INSTANCEP(x) && scm_is_true(scm_slot_exists_p(x, swig_symbol)) \
? scm_slot_ref(x, swig_symbol) : (x) )
static SCM swig_symbol
Definition gv_guile.cpp:878

Definition at line 880 of file gv_guile.cpp.

◆ SWIG_GUILE_INIT_STATIC

#define SWIG_GUILE_INIT_STATIC   extern

Definition at line 12 of file gv_guile.cpp.

◆ SWIG_IndexError

#define SWIG_IndexError   -4

Definition at line 753 of file gv_guile.cpp.

◆ SWIG_INIT_CLIENT_DATA_TYPE

#define SWIG_INIT_CLIENT_DATA_TYPE   void *

Definition at line 5332 of file gv_guile.cpp.

◆ SWIG_IOError

#define SWIG_IOError   -2

Definition at line 751 of file gv_guile.cpp.

◆ SWIG_IsNewObj

#define SWIG_IsNewObj (   r)    (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))

Definition at line 307 of file gv_guile.cpp.

◆ SWIG_IsOK

#define SWIG_IsOK (   r)    (r >= 0)

Definition at line 290 of file gv_guile.cpp.

◆ SWIG_IsPointer

#define SWIG_IsPointer (   object)     SWIG_Guile_IsPointer(object)

Definition at line 835 of file gv_guile.cpp.

◆ SWIG_IsPointerOfType

#define SWIG_IsPointerOfType (   object,
  type 
)     SWIG_Guile_IsPointerOfType(object, type)

Definition at line 833 of file gv_guile.cpp.

◆ SWIG_IsTmpObj

#define SWIG_IsTmpObj (   r)    (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))

Definition at line 310 of file gv_guile.cpp.

◆ SWIG_malloc

#define SWIG_malloc (   size)     scm_malloc(size)

Definition at line 819 of file gv_guile.cpp.

◆ SWIG_MangledTypeQuery

#define SWIG_MangledTypeQuery (   name)    SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)

Definition at line 1330 of file gv_guile.cpp.

◆ SWIG_MemoryError

#define SWIG_MemoryError   -12

Definition at line 761 of file gv_guile.cpp.

◆ SWIG_MustGetPtr

#define SWIG_MustGetPtr (   s,
  type,
  argnum,
  flags 
)     SWIG_Guile_MustGetPtr(s, type, argnum, flags, FUNC_NAME)

Definition at line 825 of file gv_guile.cpp.

◆ SWIG_NewMemberObj

#define SWIG_NewMemberObj (   ptr,
  sz,
  type 
)     SWIG_Guile_NewMemberObj(ptr, sz, type, FUNC_NAME)

Definition at line 847 of file gv_guile.cpp.

◆ SWIG_NEWOBJ

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 302 of file gv_guile.cpp.

◆ SWIG_NEWOBJMASK

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 296 of file gv_guile.cpp.

◆ SWIG_NewPointerObj

#define SWIG_NewPointerObj (   ptr,
  type,
  owner 
)     SWIG_Guile_NewPointerObj((void*)ptr, type, owner)

Definition at line 827 of file gv_guile.cpp.

◆ SWIG_NULLPTR

#define SWIG_NULLPTR   NULL

Definition at line 147 of file gv_guile.cpp.

◆ SWIG_NullReferenceError

#define SWIG_NullReferenceError   -13

Definition at line 762 of file gv_guile.cpp.

◆ SWIG_OK

#define SWIG_OK   (0)

Definition at line 282 of file gv_guile.cpp.

◆ SWIG_OLDOBJ

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 301 of file gv_guile.cpp.

◆ SWIG_OverflowError

#define SWIG_OverflowError   -7

Definition at line 756 of file gv_guile.cpp.

◆ SWIG_POINTER_CLEAR

#define SWIG_POINTER_CLEAR   0x8

Definition at line 196 of file gv_guile.cpp.

◆ SWIG_POINTER_DISOWN

#define SWIG_POINTER_DISOWN   0x1

Definition at line 193 of file gv_guile.cpp.

◆ SWIG_POINTER_NO_NULL

#define SWIG_POINTER_NO_NULL   0x4

Definition at line 195 of file gv_guile.cpp.

◆ SWIG_POINTER_OWN

#define SWIG_POINTER_OWN   0x1

Definition at line 200 of file gv_guile.cpp.

◆ SWIG_POINTER_RELEASE

#define SWIG_POINTER_RELEASE   (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)

Definition at line 197 of file gv_guile.cpp.

◆ SWIG_PointerAddress

#define SWIG_PointerAddress (   object)     SWIG_Guile_PointerAddress(object)

Definition at line 829 of file gv_guile.cpp.

◆ SWIG_PointerType

#define SWIG_PointerType (   object)     SWIG_Guile_PointerType(object)

Definition at line 831 of file gv_guile.cpp.

◆ SWIG_RUNTIME_VERSION

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 159 of file gv_guile.cpp.

◆ SWIG_RuntimeError

#define SWIG_RuntimeError   -3

Definition at line 752 of file gv_guile.cpp.

◆ SWIG_scm2str

#define SWIG_scm2str (   s)     SWIG_Guile_scm2newstr(s, NULL)

Definition at line 815 of file gv_guile.cpp.

◆ SWIG_SetModule

#define SWIG_SetModule (   clientdata,
  pointer 
)    SWIG_Guile_SetModule(pointer)

Definition at line 853 of file gv_guile.cpp.

◆ SWIG_snprintf

#define SWIG_snprintf (   O,
  S,
  F,
  A 
)    sprintf(O,F,A)

Definition at line 347 of file gv_guile.cpp.

◆ SWIG_snprintf2

#define SWIG_snprintf2 (   O,
  S,
  F,
  A,
  B 
)    sprintf(O,F,A,B)

Definition at line 348 of file gv_guile.cpp.

◆ SWIG_str02scm

#define SWIG_str02scm (   str)     str ? scm_from_utf8_string(str) : SCM_BOOL_F

Definition at line 817 of file gv_guile.cpp.

◆ SWIG_SyntaxError

#define SWIG_SyntaxError   -8

Definition at line 757 of file gv_guile.cpp.

◆ SWIG_SystemError

#define SWIG_SystemError   -10

Definition at line 759 of file gv_guile.cpp.

◆ SWIG_TMPOBJ

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 303 of file gv_guile.cpp.

◆ SWIG_TMPOBJMASK

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 298 of file gv_guile.cpp.

◆ SWIG_TYPE_TABLE_NAME

#define SWIG_TYPE_TABLE_NAME

Definition at line 167 of file gv_guile.cpp.

◆ SWIG_TypeError

#define SWIG_TypeError   -5

Definition at line 754 of file gv_guile.cpp.

◆ SWIG_TypeQuery

#define SWIG_TypeQuery (   name)    SWIG_TypeQueryModule(&swig_module, &swig_module, name)

Definition at line 1329 of file gv_guile.cpp.

◆ SWIG_UnknownError

#define SWIG_UnknownError   -1

Definition at line 750 of file gv_guile.cpp.

◆ SWIG_ValueError

#define SWIG_ValueError   -9

Definition at line 758 of file gv_guile.cpp.

◆ SWIG_VERSION

#define SWIG_VERSION   0x040200

Definition at line 10 of file gv_guile.cpp.

◆ SWIGEXPORT

#define SWIGEXPORT

Definition at line 106 of file gv_guile.cpp.

◆ SWIGGUILE

#define SWIGGUILE

Definition at line 11 of file gv_guile.cpp.

◆ SWIGINLINE

#define SWIGINLINE

Definition at line 43 of file gv_guile.cpp.

◆ SWIGINTERN

#define SWIGINTERN   static SWIGUNUSED

Definition at line 78 of file gv_guile.cpp.

◆ SWIGINTERNINLINE

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 83 of file gv_guile.cpp.

◆ SWIGRUNTIME

#define SWIGRUNTIME   SWIGINTERN

Definition at line 180 of file gv_guile.cpp.

◆ SWIGRUNTIMEINLINE

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 184 of file gv_guile.cpp.

◆ SWIGSTDCALL

#define SWIGSTDCALL

Definition at line 116 of file gv_guile.cpp.

◆ SWIGTEMPLATEDISAMBIGUATOR

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 34 of file gv_guile.cpp.

◆ SWIGTYPE_p_Agedge_t

#define SWIGTYPE_p_Agedge_t   swig_types[0]

Definition at line 1321 of file gv_guile.cpp.

◆ SWIGTYPE_p_Agnode_t

#define SWIGTYPE_p_Agnode_t   swig_types[1]

Definition at line 1322 of file gv_guile.cpp.

◆ SWIGTYPE_p_Agraph_t

#define SWIGTYPE_p_Agraph_t   swig_types[2]

Definition at line 1323 of file gv_guile.cpp.

◆ SWIGTYPE_p_Agsym_t

#define SWIGTYPE_p_Agsym_t   swig_types[3]

Definition at line 1324 of file gv_guile.cpp.

◆ SWIGTYPE_p_FILE

#define SWIGTYPE_p_FILE   swig_types[4]

Definition at line 1325 of file gv_guile.cpp.

◆ SWIGTYPE_p_unsigned_long

#define SWIGTYPE_p_unsigned_long   swig_types[5]

Definition at line 1326 of file gv_guile.cpp.

◆ SWIGUNUSED

#define SWIGUNUSED

Definition at line 58 of file gv_guile.cpp.

◆ SWIGUNUSEDPARM

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 72 of file gv_guile.cpp.

Typedef Documentation

◆ guile_destructor

typedef SCM(* guile_destructor) (SCM)

Definition at line 808 of file gv_guile.cpp.

◆ swig_cast_info

◆ swig_converter_func

typedef void *(* swig_converter_func) (void *, int *)

Definition at line 357 of file gv_guile.cpp.

◆ swig_dycast_func

typedef struct swig_type_info *(* swig_dycast_func) (void **)

Definition at line 357 of file gv_guile.cpp.

◆ swig_guile_clientdata

◆ swig_guile_proc

typedef SCM(* swig_guile_proc) ()

Definition at line 806 of file gv_guile.cpp.

◆ swig_module_info

◆ swig_type_info

Function Documentation

◆ _wrap_digraph()

static SCM _wrap_digraph ( SCM  s_0)
static

Definition at line 1593 of file gv_guile.cpp.

References digraph(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_edge()

static SCM _wrap_edge ( SCM  rest)
static

Definition at line 1995 of file gv_guile.cpp.

References _wrap_edge__SWIG_0(), _wrap_edge__SWIG_1(), _wrap_edge__SWIG_2(), _wrap_edge__SWIG_3(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_edge__SWIG_0()

static SCM _wrap_edge__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 1870 of file gv_guile.cpp.

References edge, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the caller graph for this function:

◆ _wrap_edge__SWIG_1()

static SCM _wrap_edge__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 1898 of file gv_guile.cpp.

References edge, SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the caller graph for this function:

◆ _wrap_edge__SWIG_2()

static SCM _wrap_edge__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 1928 of file gv_guile.cpp.

References edge, SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the caller graph for this function:

◆ _wrap_edge__SWIG_3()

static SCM _wrap_edge__SWIG_3 ( int  argc,
SCM *  argv 
)
static

Definition at line 1958 of file gv_guile.cpp.

References edge, SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_edge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the caller graph for this function:

◆ _wrap_findattr()

static SCM _wrap_findattr ( SCM  rest)
static

Definition at line 3018 of file gv_guile.cpp.

References _wrap_findattr__SWIG_0(), _wrap_findattr__SWIG_1(), _wrap_findattr__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findattr__SWIG_0()

static SCM _wrap_findattr__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 2928 of file gv_guile.cpp.

References findattr(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findattr__SWIG_1()

static SCM _wrap_findattr__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 2958 of file gv_guile.cpp.

References findattr(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findattr__SWIG_2()

static SCM _wrap_findattr__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 2988 of file gv_guile.cpp.

References findattr(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findedge()

static SCM _wrap_findedge ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 2900 of file gv_guile.cpp.

References findedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findnode()

static SCM _wrap_findnode ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 2870 of file gv_guile.cpp.

References findnode(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_findsubg()

static SCM _wrap_findsubg ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 2840 of file gv_guile.cpp.

References findsubg(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstattr()

static SCM _wrap_firstattr ( SCM  rest)
static

Definition at line 4520 of file gv_guile.cpp.

References _wrap_firstattr__SWIG_0(), _wrap_firstattr__SWIG_1(), _wrap_firstattr__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstattr__SWIG_0()

static SCM _wrap_firstattr__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4395 of file gv_guile.cpp.

References firstattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstattr__SWIG_1()

static SCM _wrap_firstattr__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4446 of file gv_guile.cpp.

References firstattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstattr__SWIG_2()

static SCM _wrap_firstattr__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 4497 of file gv_guile.cpp.

References firstattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstedge()

static SCM _wrap_firstedge ( SCM  rest)
static

Definition at line 3682 of file gv_guile.cpp.

References _wrap_firstedge__SWIG_0(), _wrap_firstedge__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstedge__SWIG_0()

static SCM _wrap_firstedge__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3557 of file gv_guile.cpp.

References firstedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstedge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstedge__SWIG_1()

static SCM _wrap_firstedge__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3659 of file gv_guile.cpp.

References firstedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstedge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firsthead()

static SCM _wrap_firsthead ( SCM  s_0)
static

Definition at line 3925 of file gv_guile.cpp.

References firsthead(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstin()

static SCM _wrap_firstin ( SCM  rest)
static

Definition at line 4050 of file gv_guile.cpp.

References _wrap_firstin__SWIG_0(), _wrap_firstin__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstin__SWIG_0()

static SCM _wrap_firstin__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3976 of file gv_guile.cpp.

References firstin(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstin(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstin__SWIG_1()

static SCM _wrap_firstin__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4027 of file gv_guile.cpp.

References firstin(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstin(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstnode()

static SCM _wrap_firstnode ( SCM  rest)
static

Definition at line 4285 of file gv_guile.cpp.

References _wrap_firstnode__SWIG_0(), _wrap_firstnode__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstnode__SWIG_0()

static SCM _wrap_firstnode__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4211 of file gv_guile.cpp.

References firstnode(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstnode(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstnode__SWIG_1()

static SCM _wrap_firstnode__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4262 of file gv_guile.cpp.

References firstnode(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstnode(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstout()

static SCM _wrap_firstout ( SCM  rest)
static

Definition at line 3815 of file gv_guile.cpp.

References _wrap_firstout__SWIG_0(), _wrap_firstout__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstout__SWIG_0()

static SCM _wrap_firstout__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3608 of file gv_guile.cpp.

References firstout(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstout(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstout__SWIG_1()

static SCM _wrap_firstout__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3792 of file gv_guile.cpp.

References firstout(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstout(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstsubg()

static SCM _wrap_firstsubg ( SCM  s_0)
static

Definition at line 3455 of file gv_guile.cpp.

References firstsubg(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firstsupg()

static SCM _wrap_firstsupg ( SCM  s_0)
static

Definition at line 3506 of file gv_guile.cpp.

References firstsupg(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_firsttail()

static SCM _wrap_firsttail ( SCM  s_0)
static

Definition at line 4160 of file gv_guile.cpp.

References firsttail(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv()

static SCM _wrap_getv ( SCM  rest)
static

Definition at line 2612 of file gv_guile.cpp.

References _wrap_getv__SWIG_0(), _wrap_getv__SWIG_1(), _wrap_getv__SWIG_2(), _wrap_getv__SWIG_3(), _wrap_getv__SWIG_4(), _wrap_getv__SWIG_5(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_0()

static SCM _wrap_getv__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 2438 of file gv_guile.cpp.

References getv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_1()

static SCM _wrap_getv__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 2468 of file gv_guile.cpp.

References getv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_2()

static SCM _wrap_getv__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 2498 of file gv_guile.cpp.

References getv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_3()

static SCM _wrap_getv__SWIG_3 ( int  argc,
SCM *  argv 
)
static

Definition at line 2528 of file gv_guile.cpp.

References getv(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_4()

static SCM _wrap_getv__SWIG_4 ( int  argc,
SCM *  argv 
)
static

Definition at line 2556 of file gv_guile.cpp.

References getv(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_getv__SWIG_5()

static SCM _wrap_getv__SWIG_5 ( int  argc,
SCM *  argv 
)
static

Definition at line 2584 of file gv_guile.cpp.

References getv(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graph()

static SCM _wrap_graph ( SCM  rest)
static

Definition at line 1803 of file gv_guile.cpp.

References _wrap_graph__SWIG_0(), _wrap_graph__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graph__SWIG_0()

static SCM _wrap_graph__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 1568 of file gv_guile.cpp.

References graph(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graph(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graph__SWIG_1()

static SCM _wrap_graph__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 1773 of file gv_guile.cpp.

References graph(), SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graph(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graphof()

static SCM _wrap_graphof ( SCM  rest)
static

Definition at line 3193 of file gv_guile.cpp.

References _wrap_graphof__SWIG_0(), _wrap_graphof__SWIG_1(), _wrap_graphof__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graphof__SWIG_0()

static SCM _wrap_graphof__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3124 of file gv_guile.cpp.

References graphof(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graphof__SWIG_1()

static SCM _wrap_graphof__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3147 of file gv_guile.cpp.

References graphof(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_graphof__SWIG_2()

static SCM _wrap_graphof__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 3170 of file gv_guile.cpp.

References graphof(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_headof()

static SCM _wrap_headof ( SCM  s_0)
static

Definition at line 3078 of file gv_guile.cpp.

References headof(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_layout()

static SCM _wrap_layout ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 4773 of file gv_guile.cpp.

References layout(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nameof()

static SCM _wrap_nameof ( SCM  rest)
static

Definition at line 2795 of file gv_guile.cpp.

References _wrap_nameof__SWIG_0(), _wrap_nameof__SWIG_1(), _wrap_nameof__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nameof__SWIG_0()

static SCM _wrap_nameof__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 2726 of file gv_guile.cpp.

References nameof(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nameof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nameof__SWIG_1()

static SCM _wrap_nameof__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 2749 of file gv_guile.cpp.

References nameof(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nameof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nameof__SWIG_2()

static SCM _wrap_nameof__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 2772 of file gv_guile.cpp.

References nameof(), SWIG_MustGetPtr, SWIG_str02scm, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nameof(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextattr()

static SCM _wrap_nextattr ( SCM  rest)
static

Definition at line 4593 of file gv_guile.cpp.

References _wrap_nextattr__SWIG_0(), _wrap_nextattr__SWIG_1(), _wrap_nextattr__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextattr__SWIG_0()

static SCM _wrap_nextattr__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4418 of file gv_guile.cpp.

References nextattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextattr__SWIG_1()

static SCM _wrap_nextattr__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4469 of file gv_guile.cpp.

References nextattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextattr__SWIG_2()

static SCM _wrap_nextattr__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 4565 of file gv_guile.cpp.

References nextattr(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextedge()

static SCM _wrap_nextedge ( SCM  rest)
static

Definition at line 3744 of file gv_guile.cpp.

References _wrap_nextedge__SWIG_0(), _wrap_nextedge__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextedge__SWIG_0()

static SCM _wrap_nextedge__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3580 of file gv_guile.cpp.

References nextedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextedge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextedge__SWIG_1()

static SCM _wrap_nextedge__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3716 of file gv_guile.cpp.

References nextedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextedge(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nexthead()

static SCM _wrap_nexthead ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 3948 of file gv_guile.cpp.

References nexthead(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextin()

static SCM _wrap_nextin ( SCM  rest)
static

Definition at line 4112 of file gv_guile.cpp.

References _wrap_nextin__SWIG_0(), _wrap_nextin__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextin__SWIG_0()

static SCM _wrap_nextin__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3999 of file gv_guile.cpp.

References nextin(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextin(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextin__SWIG_1()

static SCM _wrap_nextin__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4084 of file gv_guile.cpp.

References nextin(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextin(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextnode()

static SCM _wrap_nextnode ( SCM  rest)
static

Definition at line 4347 of file gv_guile.cpp.

References _wrap_nextnode__SWIG_0(), _wrap_nextnode__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextnode__SWIG_0()

static SCM _wrap_nextnode__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4234 of file gv_guile.cpp.

References nextnode(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextnode(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextnode__SWIG_1()

static SCM _wrap_nextnode__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4319 of file gv_guile.cpp.

References nextnode(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextnode(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextout()

static SCM _wrap_nextout ( SCM  rest)
static

Definition at line 3877 of file gv_guile.cpp.

References _wrap_nextout__SWIG_0(), _wrap_nextout__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextout__SWIG_0()

static SCM _wrap_nextout__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3631 of file gv_guile.cpp.

References nextout(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextout(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextout__SWIG_1()

static SCM _wrap_nextout__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3849 of file gv_guile.cpp.

References nextout(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextout(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextsubg()

static SCM _wrap_nextsubg ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 3478 of file gv_guile.cpp.

References nextsubg(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nextsupg()

static SCM _wrap_nextsupg ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 3529 of file gv_guile.cpp.

References nextsupg(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_nexttail()

static SCM _wrap_nexttail ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 4183 of file gv_guile.cpp.

References nexttail(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_node()

static SCM _wrap_node ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 1840 of file gv_guile.cpp.

References SWIG_free, SWIG_MustGetPtr, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the caller graph for this function:

◆ _wrap_ok()

static SCM _wrap_ok ( SCM  rest)
static

Definition at line 3399 of file gv_guile.cpp.

References _wrap_ok__SWIG_0(), _wrap_ok__SWIG_1(), _wrap_ok__SWIG_2(), _wrap_ok__SWIG_3(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_ok__SWIG_0()

static SCM _wrap_ok__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 3307 of file gv_guile.cpp.

References ok(), SWIG_MustGetPtr, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_ok(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_ok__SWIG_1()

static SCM _wrap_ok__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 3330 of file gv_guile.cpp.

References ok(), SWIG_MustGetPtr, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_ok(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_ok__SWIG_2()

static SCM _wrap_ok__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 3353 of file gv_guile.cpp.

References ok(), SWIG_MustGetPtr, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_ok(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_ok__SWIG_3()

static SCM _wrap_ok__SWIG_3 ( int  argc,
SCM *  argv 
)
static

Definition at line 3376 of file gv_guile.cpp.

References ok(), SWIG_MustGetPtr, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_ok(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_protoedge()

static SCM _wrap_protoedge ( SCM  s_0)
static

Definition at line 3284 of file gv_guile.cpp.

References protoedge(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_protonode()

static SCM _wrap_protonode ( SCM  s_0)
static

Definition at line 3261 of file gv_guile.cpp.

References protonode(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_read()

static SCM _wrap_read ( SCM  rest)
static

Definition at line 1741 of file gv_guile.cpp.

References _wrap_read__SWIG_0(), _wrap_read__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), and SWIGTYPE_p_FILE.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_read__SWIG_0()

static SCM _wrap_read__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 1693 of file gv_guile.cpp.

References read(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_read(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_read__SWIG_1()

static SCM _wrap_read__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 1718 of file gv_guile.cpp.

References read(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, and SWIGUNUSED.

Referenced by _wrap_read(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_readstring()

static SCM _wrap_readstring ( SCM  s_0)
static

Definition at line 1668 of file gv_guile.cpp.

References readstring(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_render()

static SCM _wrap_render ( SCM  rest)
static

Definition at line 4928 of file gv_guile.cpp.

References _wrap_render__SWIG_0(), _wrap_render__SWIG_1(), _wrap_render__SWIG_2(), _wrap_render__SWIG_3(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_render__SWIG_0()

static SCM _wrap_render__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4803 of file gv_guile.cpp.

References render(), SWIG_MustGetPtr, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_render__SWIG_1()

static SCM _wrap_render__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4826 of file gv_guile.cpp.

References render(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_render__SWIG_2()

static SCM _wrap_render__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 4856 of file gv_guile.cpp.

References render(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, and SWIGUNUSED.

Referenced by _wrap_render(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_render__SWIG_3()

static SCM _wrap_render__SWIG_3 ( int  argc,
SCM *  argv 
)
static

Definition at line 4891 of file gv_guile.cpp.

References render(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_renderchannel()

static SCM _wrap_renderchannel ( SCM  s_0,
SCM  s_1,
SCM  s_2 
)
static

Definition at line 5045 of file gv_guile.cpp.

References renderchannel(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_renderdata()

static SCM _wrap_renderdata ( SCM  s_0,
SCM  s_1 
)
static

Definition at line 5082 of file gv_guile.cpp.

References renderdata(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_renderresult()

static SCM _wrap_renderresult ( SCM  s_0,
SCM  s_1,
SCM  s_2 
)
static

Definition at line 5011 of file gv_guile.cpp.

References renderresult(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_rm()

static SCM _wrap_rm ( SCM  rest)
static

Definition at line 4728 of file gv_guile.cpp.

References _wrap_rm__SWIG_0(), _wrap_rm__SWIG_1(), _wrap_rm__SWIG_2(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_rm__SWIG_0()

static SCM _wrap_rm__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 4659 of file gv_guile.cpp.

References rm(), SWIG_MustGetPtr, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_rm(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_rm__SWIG_1()

static SCM _wrap_rm__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 4682 of file gv_guile.cpp.

References rm(), SWIG_MustGetPtr, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_rm(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_rm__SWIG_2()

static SCM _wrap_rm__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 4705 of file gv_guile.cpp.

References rm(), SWIG_MustGetPtr, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_rm(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_rootof()

static SCM _wrap_rootof ( SCM  s_0)
static

Definition at line 3238 of file gv_guile.cpp.

References rootof(), SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv()

static SCM _wrap_setv ( SCM  rest)
static

Definition at line 2294 of file gv_guile.cpp.

References _wrap_setv__SWIG_0(), _wrap_setv__SWIG_1(), _wrap_setv__SWIG_2(), _wrap_setv__SWIG_3(), _wrap_setv__SWIG_4(), _wrap_setv__SWIG_5(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_0()

static SCM _wrap_setv__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 2078 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_1()

static SCM _wrap_setv__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 2115 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_2()

static SCM _wrap_setv__SWIG_2 ( int  argc,
SCM *  argv 
)
static

Definition at line 2152 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_3()

static SCM _wrap_setv__SWIG_3 ( int  argc,
SCM *  argv 
)
static

Definition at line 2189 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_4()

static SCM _wrap_setv__SWIG_4 ( int  argc,
SCM *  argv 
)
static

Definition at line 2224 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_setv__SWIG_5()

static SCM _wrap_setv__SWIG_5 ( int  argc,
SCM *  argv 
)
static

Definition at line 2259 of file gv_guile.cpp.

References setv(), SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIG_str02scm, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_strictdigraph()

static SCM _wrap_strictdigraph ( SCM  s_0)
static

Definition at line 1643 of file gv_guile.cpp.

References strictdigraph(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_strictgraph()

static SCM _wrap_strictgraph ( SCM  s_0)
static

Definition at line 1618 of file gv_guile.cpp.

References strictgraph(), SWIG_free, SWIG_NewPointerObj, SWIG_scm2str, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_tailof()

static SCM _wrap_tailof ( SCM  s_0)
static

Definition at line 3101 of file gv_guile.cpp.

References SWIG_MustGetPtr, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGUNUSED, and tailof().

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_tred()

static SCM _wrap_tred ( SCM  s_0)
static

Definition at line 5216 of file gv_guile.cpp.

References SWIG_MustGetPtr, SWIGTYPE_p_Agraph_t, SWIGUNUSED, and tred().

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_write()

static SCM _wrap_write ( SCM  rest)
static

Definition at line 5170 of file gv_guile.cpp.

References _wrap_write__SWIG_0(), _wrap_write__SWIG_1(), SWIG_CheckState, SWIG_ConvertPtr, SWIG_Guile_GetArgs(), SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_write__SWIG_0()

static SCM _wrap_write__SWIG_0 ( int  argc,
SCM *  argv 
)
static

Definition at line 5112 of file gv_guile.cpp.

References SWIG_free, SWIG_MustGetPtr, SWIG_scm2str, SWIGTYPE_p_Agraph_t, SWIGUNUSED, and write().

Referenced by _wrap_write(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _wrap_write__SWIG_1()

static SCM _wrap_write__SWIG_1 ( int  argc,
SCM *  argv 
)
static

Definition at line 5142 of file gv_guile.cpp.

References SWIG_MustGetPtr, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, SWIGUNUSED, and write().

Referenced by _wrap_write(), XS(), and ZEND_NAMED_FUNCTION().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ digraph()

Agraph_t * digraph ( char *  name)
extern

Definition at line 36 of file gv.cpp.

Referenced by _wrap_digraph().

Here is the caller graph for this function:

◆ edge() [1/4]

Agedge_t * edge ( Agnode_t t,
Agnode_t h 
)
extern

New edges

Definition at line 99 of file gv.cpp.

◆ edge() [2/4]

Agedge_t * edge ( Agnode_t t,
char *  hname 
)
extern

Definition at line 107 of file gv.cpp.

◆ edge() [3/4]

Agedge_t * edge ( Agraph_t g,
char *  tname,
char *  hname 
)
extern

Definition at line 112 of file gv.cpp.

◆ edge() [4/4]

Agedge_t * edge ( char *  tname,
Agnode_t h 
)
extern

Definition at line 102 of file gv.cpp.

◆ ensure_smob_tag()

SWIGINTERN int ensure_smob_tag ( SCM  swig_module,
scm_t_bits *  tag_variable,
const char *  smob_name,
const char *  scheme_variable_name 
)

Definition at line 1184 of file gv_guile.cpp.

References swig_module.

Referenced by SWIG_Guile_Init().

Here is the caller graph for this function:

◆ equalp_swig()

SWIGINTERN SCM equalp_swig ( SCM  A,
SCM  B 
)

Definition at line 1157 of file gv_guile.cpp.

References A, and B.

Referenced by SWIG_Guile_Init().

Here is the caller graph for this function:

◆ findattr() [1/3]

Agsym_t * findattr ( Agedge_t e,
char *  name 
)
extern

Definition at line 279 of file gv.cpp.

◆ findattr() [2/3]

Agsym_t * findattr ( Agnode_t n,
char *  name 
)
extern

Definition at line 273 of file gv.cpp.

◆ findattr() [3/3]

Agsym_t * findattr ( Agraph_t g,
char *  name 
)
extern

Definition at line 267 of file gv.cpp.

Referenced by _wrap_findattr__SWIG_0(), _wrap_findattr__SWIG_1(), and _wrap_findattr__SWIG_2().

Here is the caller graph for this function:

◆ findedge()

Agedge_t * findedge ( Agnode_t t,
Agnode_t h 
)
extern

Definition at line 259 of file gv.cpp.

Referenced by _wrap_findedge().

Here is the caller graph for this function:

◆ findnode()

Agnode_t * findnode ( Agraph_t g,
char *  name 
)
extern

Definition at line 253 of file gv.cpp.

Referenced by _wrap_findnode().

Here is the caller graph for this function:

◆ findsubg()

Agraph_t * findsubg ( Agraph_t g,
char *  name 
)
extern

Find handles from names

Definition at line 247 of file gv.cpp.

Referenced by _wrap_findsubg().

Here is the caller graph for this function:

◆ firstattr() [1/3]

Agsym_t * firstattr ( Agedge_t e)
extern

Definition at line 570 of file gv.cpp.

◆ firstattr() [2/3]

Agsym_t * firstattr ( Agnode_t n)
extern

Definition at line 556 of file gv.cpp.

◆ firstattr() [3/3]

Agsym_t * firstattr ( Agraph_t g)
extern

Definition at line 542 of file gv.cpp.

Referenced by _wrap_firstattr__SWIG_0(), _wrap_firstattr__SWIG_1(), and _wrap_firstattr__SWIG_2().

Here is the caller graph for this function:

◆ firstedge() [1/2]

Agedge_t * firstedge ( Agnode_t n)
extern

Definition at line 449 of file gv.cpp.

◆ firstedge() [2/2]

Agedge_t * firstedge ( Agraph_t g)
extern

Definition at line 409 of file gv.cpp.

Referenced by _wrap_firstedge__SWIG_0(), and _wrap_firstedge__SWIG_1().

Here is the caller graph for this function:

◆ firsthead()

Agnode_t * firsthead ( Agnode_t n)
extern

Definition at line 425 of file gv.cpp.

Referenced by _wrap_firsthead().

Here is the caller graph for this function:

◆ firstin() [1/2]

Agedge_t * firstin ( Agnode_t n)
extern

Definition at line 482 of file gv.cpp.

◆ firstin() [2/2]

Agedge_t * firstin ( Agraph_t g)
extern

Definition at line 461 of file gv.cpp.

Referenced by _wrap_firstin__SWIG_0(), and _wrap_firstin__SWIG_1().

Here is the caller graph for this function:

◆ firstnode() [1/2]

Agnode_t * firstnode ( Agedge_t e)
extern

Definition at line 530 of file gv.cpp.

◆ firstnode() [2/2]

Agnode_t * firstnode ( Agraph_t g)
extern

Definition at line 518 of file gv.cpp.

Referenced by _wrap_firstnode__SWIG_0(), and _wrap_firstnode__SWIG_1().

Here is the caller graph for this function:

◆ firstout() [1/2]

Agedge_t * firstout ( Agnode_t n)
extern

Definition at line 413 of file gv.cpp.

◆ firstout() [2/2]

Agedge_t * firstout ( Agraph_t g)
extern

Definition at line 384 of file gv.cpp.

Referenced by _wrap_firstout__SWIG_0(), and _wrap_firstout__SWIG_1().

Here is the caller graph for this function:

◆ firstsubg()

Agraph_t * firstsubg ( Agraph_t g)
extern

Definition at line 367 of file gv.cpp.

Referenced by _wrap_firstsubg().

Here is the caller graph for this function:

◆ firstsupg()

Agraph_t * firstsupg ( Agraph_t g)
extern

Definition at line 380 of file gv.cpp.

Referenced by _wrap_firstsupg().

Here is the caller graph for this function:

◆ firsttail()

Agnode_t * firsttail ( Agnode_t n)
extern

Definition at line 494 of file gv.cpp.

Referenced by _wrap_firsttail().

Here is the caller graph for this function:

◆ free_swig()

SWIGINTERN size_t free_swig ( SCM  A)

Definition at line 1166 of file gv_guile.cpp.

References A, and type.

Referenced by SWIG_Guile_Init().

Here is the caller graph for this function:

◆ free_swig_member_function()

SWIGINTERN size_t free_swig_member_function ( SCM  A)

Definition at line 1177 of file gv_guile.cpp.

References A, and free().

Referenced by SWIG_Guile_Init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getv() [1/6]

char * getv ( Agedge_t e,
Agsym_t a 
)
extern

Definition at line 205 of file gv.cpp.

◆ getv() [2/6]

char * getv ( Agedge_t e,
char *  attr 
)
extern

Definition at line 212 of file gv.cpp.

◆ getv() [3/6]

char * getv ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 162 of file gv.cpp.

◆ getv() [4/6]

char * getv ( Agnode_t n,
char *  attr 
)
extern

Definition at line 169 of file gv.cpp.

◆ getv() [5/6]

char * getv ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 129 of file gv.cpp.

◆ getv() [6/6]

char * getv ( Agraph_t g,
char *  attr 
)
extern

Getting attribute values

Definition at line 130 of file gv.cpp.

Referenced by _wrap_getv__SWIG_0(), _wrap_getv__SWIG_1(), _wrap_getv__SWIG_2(), _wrap_getv__SWIG_3(), _wrap_getv__SWIG_4(), and _wrap_getv__SWIG_5().

Here is the caller graph for this function:

◆ graph() [1/2]

Agraph_t * graph ( Agraph_t g,
char *  name 
)
extern

Definition at line 78 of file gv.cpp.

◆ graph() [2/2]

Agraph_t * graph ( char *  name)
extern

New graphs

Definition at line 30 of file gv.cpp.

Referenced by _wrap_graph__SWIG_0(), and _wrap_graph__SWIG_1().

Here is the caller graph for this function:

◆ graphof() [1/3]

Agraph_t * graphof ( Agedge_t e)
extern

Definition at line 309 of file gv.cpp.

◆ graphof() [2/3]

Agraph_t * graphof ( Agnode_t n)
extern

Definition at line 318 of file gv.cpp.

◆ graphof() [3/3]

Agraph_t * graphof ( Agraph_t g)
extern

Definition at line 303 of file gv.cpp.

Referenced by _wrap_graphof__SWIG_0(), _wrap_graphof__SWIG_1(), and _wrap_graphof__SWIG_2().

Here is the caller graph for this function:

◆ headof()

Agnode_t * headof ( Agedge_t e)
extern

Misc graph navigators returning handles

Definition at line 287 of file gv.cpp.

Referenced by _wrap_headof().

Here is the caller graph for this function:

◆ layout()

bool layout ( Agraph_t g,
const char *  engine 
)
extern

Layout

Definition at line 615 of file gv.cpp.

Referenced by _wrap_layout().

Here is the caller graph for this function:

◆ nameof() [1/3]

char * nameof ( Agnode_t n)
extern

Definition at line 348 of file gv.cpp.

◆ nameof() [2/3]

char * nameof ( Agraph_t g)
extern

Obtain names from handles

Definition at line 343 of file gv.cpp.

Referenced by _wrap_nameof__SWIG_0(), _wrap_nameof__SWIG_1(), and _wrap_nameof__SWIG_2().

Here is the caller graph for this function:

◆ nameof() [3/3]

char * nameof ( Agsym_t a)
extern

Definition at line 355 of file gv.cpp.

◆ nextattr() [1/3]

Agsym_t * nextattr ( Agedge_t e,
Agsym_t a 
)
extern

Definition at line 577 of file gv.cpp.

◆ nextattr() [2/3]

Agsym_t * nextattr ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 563 of file gv.cpp.

◆ nextattr() [3/3]

Agsym_t * nextattr ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 549 of file gv.cpp.

Referenced by _wrap_nextattr__SWIG_0(), _wrap_nextattr__SWIG_1(), and _wrap_nextattr__SWIG_2().

Here is the caller graph for this function:

◆ nextedge() [1/2]

Agedge_t * nextedge ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 455 of file gv.cpp.

◆ nextedge() [2/2]

Agedge_t * nextedge ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 411 of file gv.cpp.

Referenced by _wrap_nextedge__SWIG_0(), and _wrap_nextedge__SWIG_1().

Here is the caller graph for this function:

◆ nexthead()

Agnode_t * nexthead ( Agnode_t n,
Agnode_t h 
)
extern

Definition at line 434 of file gv.cpp.

Referenced by _wrap_nexthead().

Here is the caller graph for this function:

◆ nextin() [1/2]

Agedge_t * nextin ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 488 of file gv.cpp.

Referenced by _wrap_nextin__SWIG_0(), and _wrap_nextin__SWIG_1().

Here is the caller graph for this function:

◆ nextin() [2/2]

Agedge_t * nextin ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 470 of file gv.cpp.

◆ nextnode() [1/2]

Agnode_t * nextnode ( Agedge_t e,
Agnode_t n 
)
extern

Definition at line 536 of file gv.cpp.

◆ nextnode() [2/2]

Agnode_t * nextnode ( Agraph_t g,
Agnode_t n 
)
extern

Definition at line 524 of file gv.cpp.

Referenced by _wrap_nextnode__SWIG_0(), and _wrap_nextnode__SWIG_1().

Here is the caller graph for this function:

◆ nextout() [1/2]

Agedge_t * nextout ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 419 of file gv.cpp.

◆ nextout() [2/2]

Agedge_t * nextout ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 395 of file gv.cpp.

Referenced by _wrap_nextout__SWIG_0(), and _wrap_nextout__SWIG_1().

Here is the caller graph for this function:

◆ nextsubg()

Agraph_t * nextsubg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 373 of file gv.cpp.

Referenced by _wrap_nextsubg().

Here is the caller graph for this function:

◆ nextsupg()

Agraph_t * nextsupg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 382 of file gv.cpp.

Referenced by _wrap_nextsupg().

Here is the caller graph for this function:

◆ nexttail()

Agnode_t * nexttail ( Agnode_t n,
Agnode_t t 
)
extern

Definition at line 503 of file gv.cpp.

Referenced by _wrap_nexttail().

Here is the caller graph for this function:

◆ node()

Agnode_t * node ( Agraph_t g,
char *  name 
)
extern

New nodes

Definition at line 84 of file gv.cpp.

◆ ok() [1/4]

bool ok ( Agedge_t e)
extern

Definition at line 364 of file gv.cpp.

◆ ok() [2/4]

bool ok ( Agnode_t n)
extern

Definition at line 363 of file gv.cpp.

◆ ok() [3/4]

bool ok ( Agraph_t g)
extern

Iterators

Definition at line 362 of file gv.cpp.

Referenced by _wrap_ok__SWIG_0(), _wrap_ok__SWIG_1(), _wrap_ok__SWIG_2(), and _wrap_ok__SWIG_3().

Here is the caller graph for this function:

◆ ok() [4/4]

bool ok ( Agsym_t a)
extern

Definition at line 365 of file gv.cpp.

◆ print_collectable_swig()

SWIGINTERN int print_collectable_swig ( SCM  swig_smob,
SCM  port,
scm_print_state *  pstate 
)

Definition at line 1128 of file gv_guile.cpp.

References print_swig_aux().

Referenced by SWIG_Guile_Init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print_destroyed_swig()

SWIGINTERN int print_destroyed_swig ( SCM  swig_smob,
SCM  port,
scm_print_state *  pstate 
)

Definition at line 1134 of file gv_guile.cpp.

References print_swig_aux().

Referenced by SWIG_Guile_Init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print_member_function_swig()

SWIGINTERN int print_member_function_swig ( SCM  swig_smob,
SCM  port,
scm_print_state *  pstate 
)

Definition at line 1140 of file gv_guile.cpp.

References SWIG_TypePrettyName(), and type.

Referenced by SWIG_Guile_Init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print_swig()

SWIGINTERN int print_swig ( SCM  swig_smob,
SCM  port,
scm_print_state *  pstate 
)

Definition at line 1122 of file gv_guile.cpp.

References print_swig_aux().

Referenced by SWIG_Guile_Init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print_swig_aux()

SWIGINTERN int print_swig_aux ( SCM  swig_smob,
SCM  port,
scm_print_state *  pstate,
const char *  attribute 
)

Definition at line 1099 of file gv_guile.cpp.

References SWIG_TypePrettyName(), and type.

Referenced by print_collectable_swig(), print_destroyed_swig(), and print_swig().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ protoedge()

Agedge_t * protoedge ( Agraph_t g)
extern

Definition at line 338 of file gv.cpp.

Referenced by _wrap_protoedge().

Here is the caller graph for this function:

◆ protonode()

Agnode_t * protonode ( Agraph_t g)
extern

Obtain handles of proto node/edge for setting default attribute values

Definition at line 334 of file gv.cpp.

Referenced by _wrap_protonode().

Here is the caller graph for this function:

◆ read() [1/2]

Agraph_t * read ( const char *  filename)
extern

Definition at line 66 of file gv.cpp.

Referenced by _wrap_read__SWIG_0(), and _wrap_read__SWIG_1().

Here is the caller graph for this function:

◆ read() [2/2]

Agraph_t * read ( FILE *  f)
extern

Definition at line 60 of file gv.cpp.

◆ readstring()

Agraph_t * readstring ( char *  string)
extern

Definition at line 54 of file gv.cpp.

Referenced by _wrap_readstring().

Here is the caller graph for this function:

◆ render() [1/4]

bool render ( Agraph_t g)
extern

Render

Definition at line 624 of file gv.cpp.

Referenced by _wrap_render__SWIG_0(), _wrap_render__SWIG_1(), _wrap_render__SWIG_2(), and _wrap_render__SWIG_3().

Here is the caller graph for this function:

◆ render() [2/4]

bool render ( Agraph_t g,
const char *  format 
)
extern

Definition at line 632 of file gv.cpp.

◆ render() [3/4]

bool render ( Agraph_t g,
const char *  format,
const char *  filename 
)
extern

Definition at line 658 of file gv.cpp.

◆ render() [4/4]

bool render ( Agraph_t g,
const char *  format,
FILE *  fout 
)
extern

Definition at line 640 of file gv.cpp.

◆ renderchannel()

bool renderchannel ( Agraph_t g,
const char *  format,
const char *  channelname 
)
extern

Definition at line 648 of file gv.cpp.

Referenced by _wrap_renderchannel().

Here is the caller graph for this function:

◆ renderdata()

char * renderdata ( Agraph_t g,
const char *  format 
)
extern

Definition at line 699 of file gv.cpp.

Referenced by _wrap_renderdata().

Here is the caller graph for this function:

◆ renderresult()

void renderresult ( Agraph_t g,
const char *  format,
char *  outdata 
)
extern

Definition at line 690 of file gv.cpp.

Referenced by _wrap_renderresult().

Here is the caller graph for this function:

◆ rm() [1/3]

bool rm ( Agedge_t e)
extern

Definition at line 604 of file gv.cpp.

◆ rm() [2/3]

bool rm ( Agnode_t n)
extern

Definition at line 594 of file gv.cpp.

◆ rm() [3/3]

bool rm ( Agraph_t g)
extern

Remove graph objects

Definition at line 584 of file gv.cpp.

Referenced by _wrap_rm__SWIG_0(), _wrap_rm__SWIG_1(), and _wrap_rm__SWIG_2().

Here is the caller graph for this function:

◆ rootof()

Agraph_t * rootof ( Agraph_t g)
extern

Definition at line 327 of file gv.cpp.

Referenced by _wrap_rootof().

Here is the caller graph for this function:

◆ setv() [1/6]

char * setv ( Agedge_t e,
Agsym_t a,
char *  val 
)
extern

Definition at line 221 of file gv.cpp.

◆ setv() [2/6]

char * setv ( Agedge_t e,
char *  attr,
char *  val 
)
extern

Definition at line 229 of file gv.cpp.

◆ setv() [3/6]

char * setv ( Agnode_t n,
Agsym_t a,
char *  val 
)
extern

Definition at line 178 of file gv.cpp.

◆ setv() [4/6]

char * setv ( Agnode_t n,
char *  attr,
char *  val 
)
extern

Definition at line 186 of file gv.cpp.

◆ setv() [5/6]

char * setv ( Agraph_t g,
Agsym_t a,
char *  val 
)
extern

Definition at line 146 of file gv.cpp.

◆ setv() [6/6]

char * setv ( Agraph_t g,
char *  attr,
char *  val 
)
extern

Setting attribute values

Definition at line 152 of file gv.cpp.

Referenced by _wrap_setv__SWIG_0(), _wrap_setv__SWIG_1(), _wrap_setv__SWIG_2(), _wrap_setv__SWIG_3(), _wrap_setv__SWIG_4(), and _wrap_setv__SWIG_5().

Here is the caller graph for this function:

◆ strictdigraph()

Agraph_t * strictdigraph ( char *  name)
extern

Definition at line 48 of file gv.cpp.

Referenced by _wrap_strictdigraph().

Here is the caller graph for this function:

◆ strictgraph()

Agraph_t * strictgraph ( char *  name)
extern

Definition at line 42 of file gv.cpp.

Referenced by _wrap_strictgraph().

Here is the caller graph for this function:

◆ SWIG_Guile_ConvertMember()

SWIGINTERN int SWIG_Guile_ConvertMember ( SCM  smob,
void *  ptr,
size_t  sz,
swig_type_info type,
const char *  func_name 
)

Definition at line 1076 of file gv_guile.cpp.

References SWIG_ERROR, swig_member_function_tag, SWIG_OK, SWIG_TypeCheckStruct(), and type.

Here is the call graph for this function:

◆ SWIG_Guile_ConvertPtr()

SWIGINTERN int SWIG_Guile_ConvertPtr ( SCM  s,
void **  result,
swig_type_info type,
int  flags 
)

Definition at line 954 of file gv_guile.cpp.

References flags, NULL, swig_collectable_tag, SWIG_ERROR, SWIG_ERROR_RELEASE_NOT_OWNED, SWIG_Guile_GetSmob, SWIG_Guile_IsValidSmob(), SWIG_Guile_MarkPointerNoncollectable(), SWIG_NullReferenceError, SWIG_OK, SWIG_POINTER_CLEAR, SWIG_POINTER_DISOWN, SWIG_POINTER_NO_NULL, SWIG_POINTER_RELEASE, swig_tag, SWIG_TypeCast(), SWIG_TypeCheckStruct(), and type.

Referenced by SWIG_Guile_IsPointerOfType(), and SWIG_Guile_MustGetPtr().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_Guile_GetArgs()

SWIGINTERN int SWIG_Guile_GetArgs ( SCM *  dest,
SCM  rest,
int  reqargs,
int  optargs,
const char *  procname 
)

Definition at line 1268 of file gv_guile.cpp.

Referenced by _wrap_edge(), _wrap_findattr(), _wrap_firstattr(), _wrap_firstedge(), _wrap_firstin(), _wrap_firstnode(), _wrap_firstout(), _wrap_getv(), _wrap_graph(), _wrap_graphof(), _wrap_nameof(), _wrap_nextattr(), _wrap_nextedge(), _wrap_nextin(), _wrap_nextnode(), _wrap_nextout(), _wrap_ok(), _wrap_read(), _wrap_render(), _wrap_rm(), _wrap_setv(), and _wrap_write().

Here is the caller graph for this function:

◆ SWIG_Guile_GetModule()

SWIGINTERN swig_module_info * SWIG_Guile_GetModule ( void *  SWIGUNUSEDPARMclientdata)
static

Definition at line 1247 of file gv_guile.cpp.

References NULL, SWIG_RUNTIME_VERSION, and SWIG_TYPE_TABLE_NAME.

◆ SWIG_Guile_Init()

SWIGINTERN SCM SWIG_Guile_Init ( )

Definition at line 1204 of file gv_guile.cpp.

References ensure_smob_tag(), equalp_swig(), free_swig(), free_swig_member_function(), print_collectable_swig(), print_destroyed_swig(), print_member_function_swig(), print_swig(), swig_collectable_tag, swig_destroyed_tag, swig_finalized_tag, swig_initialized, swig_keyword, swig_make_func, swig_member_function_tag, swig_module, swig_symbol, and swig_tag.

Here is the call graph for this function:

◆ SWIG_Guile_IsPointer()

SWIGINTERNINLINE int SWIG_Guile_IsPointer ( SCM  s)

Definition at line 1029 of file gv_guile.cpp.

References NULL, SWIG_GetModule, and SWIG_Guile_IsPointerOfType().

Here is the call graph for this function:

◆ SWIG_Guile_IsPointerOfType()

SWIGINTERNINLINE int SWIG_Guile_IsPointerOfType ( SCM  s,
swig_type_info type 
)

Definition at line 1018 of file gv_guile.cpp.

References SWIG_Guile_ConvertPtr(), and type.

Referenced by SWIG_Guile_IsPointer().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_Guile_IsValidSmob()

SWIGINTERN int SWIG_Guile_IsValidSmob ( SCM  smob)

Definition at line 942 of file gv_guile.cpp.

References swig_collectable_tag, swig_finalized_tag, and swig_tag.

Referenced by SWIG_Guile_ConvertPtr(), SWIG_Guile_MarkPointerDestroyed(), and SWIG_Guile_MarkPointerNoncollectable().

Here is the caller graph for this function:

◆ SWIG_Guile_MarkPointerDestroyed()

SWIGINTERN void SWIG_Guile_MarkPointerDestroyed ( SCM  s)

Definition at line 1051 of file gv_guile.cpp.

References NULL, swig_destroyed_tag, SWIG_Guile_GetSmob, and SWIG_Guile_IsValidSmob().

Here is the call graph for this function:

◆ SWIG_Guile_MarkPointerNoncollectable()

SWIGINTERN void SWIG_Guile_MarkPointerNoncollectable ( SCM  s)

Definition at line 1038 of file gv_guile.cpp.

References NULL, SWIG_Guile_GetSmob, SWIG_Guile_IsValidSmob(), and swig_tag.

Referenced by SWIG_Guile_ConvertPtr().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_Guile_MustGetPtr()

SWIGINTERNINLINE void * SWIG_Guile_MustGetPtr ( SCM  s,
swig_type_info type,
int  argnum,
int  flags,
const char *  func_name 
)

Definition at line 1005 of file gv_guile.cpp.

References flags, SWIG_Guile_ConvertPtr(), SWIG_IsOK, and type.

Here is the call graph for this function:

◆ SWIG_Guile_NewMemberObj()

SWIGINTERN SCM SWIG_Guile_NewMemberObj ( void *  ptr,
size_t  sz,
swig_type_info type,
const char *  func_name 
)

Definition at line 1065 of file gv_guile.cpp.

References copy(), malloc(), swig_member_function_tag, and type.

Here is the call graph for this function:

◆ SWIG_Guile_NewPointerObj()

SWIGINTERN SCM SWIG_Guile_NewPointerObj ( void *  ptr,
swig_type_info type,
int  owner 
)

Definition at line 887 of file gv_guile.cpp.

References NULL, swig_collectable_tag, swig_keyword, swig_make_func, swig_tag, and type.

◆ SWIG_Guile_PointerAddress()

SWIGINTERN unsigned long SWIG_Guile_PointerAddress ( SCM  object)

Definition at line 916 of file gv_guile.cpp.

References swig_collectable_tag, swig_destroyed_tag, SWIG_Guile_GetSmob, and swig_tag.

◆ SWIG_Guile_PointerType()

SWIGINTERN swig_type_info * SWIG_Guile_PointerType ( SCM  object)

Definition at line 929 of file gv_guile.cpp.

References NULL, swig_collectable_tag, swig_destroyed_tag, SWIG_Guile_GetSmob, and swig_tag.

◆ SWIG_Guile_scm2newstr()

SWIGINTERN char * SWIG_Guile_scm2newstr ( SCM  str,
size_t *  len 
)

Definition at line 856 of file gv_guile.cpp.

References FUNC_NAME, len(), NULL, and str.

Here is the call graph for this function:

◆ SWIG_Guile_SetModule()

SWIGINTERN void SWIG_Guile_SetModule ( swig_module_info swig_module)

Definition at line 1259 of file gv_guile.cpp.

References swig_module, SWIG_RUNTIME_VERSION, and SWIG_TYPE_TABLE_NAME.

◆ SWIG_init()

◆ SWIG_InitializeModule()

SWIGRUNTIME void SWIG_InitializeModule ( SWIG_INIT_CLIENT_DATA_TYPE  clientdata)

Definition at line 5336 of file gv_guile.cpp.

References swig_module_info::cast_initial, swig_type_info::clientdata, init(), swig_type_info::name, swig_cast_info::next, swig_module_info::next, swig_module_info::size, swig_cast_initial, SWIG_GetModule, SWIG_MangledTypeQueryModule(), swig_module, SWIG_SetModule, swig_type_initial, SWIG_TypeCheck(), type, swig_cast_info::type, swig_module_info::type_initial, and swig_module_info::types.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_MangledTypeQueryModule()

SWIGRUNTIME swig_type_info * SWIG_MangledTypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 576 of file gv_guile.cpp.

References compare(), swig_type_info::name, swig_module_info::next, swig_module_info::size, and swig_module_info::types.

Referenced by SWIG_InitializeModule(), and SWIG_TypeQueryModule().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_PackData()

SWIGRUNTIME char * SWIG_PackData ( char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 650 of file gv_guile.cpp.

Referenced by SWIG_PackDataName(), and SWIG_PackVoidPtr().

Here is the caller graph for this function:

◆ SWIG_PackDataName()

SWIGRUNTIME char * SWIG_PackDataName ( char *  buff,
void *  ptr,
size_t  sz,
const char *  name,
size_t  bsz 
)

Definition at line 718 of file gv_guile.cpp.

References SWIG_PackData().

Here is the call graph for this function:

◆ SWIG_PackVoidPtr()

SWIGRUNTIME char * SWIG_PackVoidPtr ( char *  buff,
void *  ptr,
const char *  name,
size_t  bsz 
)

Definition at line 694 of file gv_guile.cpp.

References SWIG_PackData().

Here is the call graph for this function:

◆ SWIG_PropagateClientData()

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 5483 of file gv_guile.cpp.

References swig_type_info::cast, swig_type_info::clientdata, swig_cast_info::converter, swig_cast_info::next, swig_module_info::size, swig_module, SWIG_TypeClientData(), swig_cast_info::type, and swig_module_info::types.

Referenced by SWIG_init().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_TypeCast()

SWIGRUNTIMEINLINE void * SWIG_TypeCast ( swig_cast_info ty,
void *  ptr,
int *  newmemory 
)

Definition at line 494 of file gv_guile.cpp.

References swig_cast_info::converter.

Referenced by SWIG_Guile_ConvertPtr().

Here is the caller graph for this function:

◆ SWIG_TypeCheck()

SWIGRUNTIME swig_cast_info * SWIG_TypeCheck ( const char *  c,
swig_type_info ty 
)

Definition at line 440 of file gv_guile.cpp.

References swig_type_info::cast, swig_type_info::name, swig_cast_info::next, swig_cast_info::prev, and swig_cast_info::type.

Referenced by SWIG_InitializeModule().

Here is the caller graph for this function:

◆ SWIG_TypeCheckStruct()

SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct ( const swig_type_info from,
swig_type_info ty 
)

Definition at line 467 of file gv_guile.cpp.

References swig_type_info::cast, swig_cast_info::next, swig_cast_info::prev, and swig_cast_info::type.

Referenced by SWIG_Guile_ConvertMember(), and SWIG_Guile_ConvertPtr().

Here is the caller graph for this function:

◆ SWIG_TypeClientData()

SWIGRUNTIME void SWIG_TypeClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 546 of file gv_guile.cpp.

References swig_type_info::cast, swig_type_info::clientdata, swig_module_info::clientdata, swig_cast_info::converter, swig_cast_info::next, SWIG_TypeClientData(), and swig_cast_info::type.

Referenced by SWIG_PropagateClientData(), SWIG_TypeClientData(), and SWIG_TypeNewClientData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_TypeCmp()

SWIGRUNTIME int SWIG_TypeCmp ( const char *  nb,
const char *  tb 
)

Definition at line 413 of file gv_guile.cpp.

References SWIG_TypeNameComp().

Referenced by SWIG_TypeEquiv().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_TypeDynamicCast()

SWIGRUNTIME swig_type_info * SWIG_TypeDynamicCast ( swig_type_info ty,
void **  ptr 
)

Definition at line 502 of file gv_guile.cpp.

References swig_type_info::dcast.

◆ SWIG_TypeEquiv()

SWIGRUNTIME int SWIG_TypeEquiv ( const char *  nb,
const char *  tb 
)

Definition at line 432 of file gv_guile.cpp.

References SWIG_TypeCmp().

Referenced by SWIG_TypeQueryModule().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SWIG_TypeName()

SWIGRUNTIMEINLINE const char * SWIG_TypeName ( const swig_type_info ty)

Definition at line 516 of file gv_guile.cpp.

References swig_type_info::name.

◆ SWIG_TypeNameComp()

SWIGRUNTIME int SWIG_TypeNameComp ( const char *  f1,
const char *  l1,
const char *  f2,
const char *  l2 
)

Definition at line 398 of file gv_guile.cpp.

Referenced by SWIG_TypeCmp().

Here is the caller graph for this function:

◆ SWIG_TypeNewClientData()

SWIGRUNTIME void SWIG_TypeNewClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 562 of file gv_guile.cpp.

References swig_module_info::clientdata, swig_type_info::owndata, and SWIG_TypeClientData().

Here is the call graph for this function:

◆ SWIG_TypePrettyName()

SWIGRUNTIME const char * SWIG_TypePrettyName ( const swig_type_info type)

Definition at line 525 of file gv_guile.cpp.

References s::name, NULL, and type.

Referenced by print_member_function_swig(), and print_swig_aux().

Here is the caller graph for this function:

◆ SWIG_TypeQueryModule()

SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 621 of file gv_guile.cpp.

References swig_module_info::next, swig_module_info::size, swig_type_info::str, SWIG_MangledTypeQueryModule(), SWIG_TypeEquiv(), and swig_module_info::types.

Here is the call graph for this function:

◆ SWIG_UnpackData()

SWIGRUNTIME const char * SWIG_UnpackData ( const char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 666 of file gv_guile.cpp.

Referenced by SWIG_UnpackDataName(), and SWIG_UnpackVoidPtr().

Here is the caller graph for this function:

◆ SWIG_UnpackDataName()

SWIGRUNTIME const char * SWIG_UnpackDataName ( const char *  c,
void *  ptr,
size_t  sz,
const char *  name 
)

Definition at line 733 of file gv_guile.cpp.

References SWIG_UnpackData().

Here is the call graph for this function:

◆ SWIG_UnpackVoidPtr()

SWIGRUNTIME const char * SWIG_UnpackVoidPtr ( const char *  c,
void **  ptr,
const char *  name 
)

Definition at line 705 of file gv_guile.cpp.

References SWIG_UnpackData().

Here is the call graph for this function:

◆ tailof()

Agnode_t * tailof ( Agedge_t e)
extern

Definition at line 295 of file gv.cpp.

Referenced by _wrap_tailof().

Here is the caller graph for this function:

◆ tred()

bool tred ( Agraph_t g)
extern

Definition at line 728 of file gv.cpp.

Referenced by _wrap_tred().

Here is the caller graph for this function:

◆ write() [1/2]

bool write ( Agraph_t g,
const char *  filename 
)
extern

Definition at line 717 of file gv.cpp.

Referenced by _wrap_write__SWIG_0(), and _wrap_write__SWIG_1().

Here is the caller graph for this function:

◆ write() [2/2]

bool write ( Agraph_t g,
FILE *  f 
)
extern

Definition at line 710 of file gv.cpp.

Variable Documentation

◆ _swigc__p_Agedge_t

swig_cast_info _swigc__p_Agedge_t[] = { {&_swigt__p_Agedge_t, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5260 of file gv_guile.cpp.

◆ _swigc__p_Agnode_t

swig_cast_info _swigc__p_Agnode_t[] = { {&_swigt__p_Agnode_t, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5261 of file gv_guile.cpp.

◆ _swigc__p_Agraph_t

swig_cast_info _swigc__p_Agraph_t[] = { {&_swigt__p_Agraph_t, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5262 of file gv_guile.cpp.

◆ _swigc__p_Agsym_t

swig_cast_info _swigc__p_Agsym_t[] = { {&_swigt__p_Agsym_t, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5263 of file gv_guile.cpp.

◆ _swigc__p_FILE

swig_cast_info _swigc__p_FILE[] = { {&_swigt__p_FILE, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5264 of file gv_guile.cpp.

◆ _swigc__p_unsigned_long

swig_cast_info _swigc__p_unsigned_long[] = { {&_swigt__p_unsigned_long, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5265 of file gv_guile.cpp.

◆ _swigt__p_Agedge_t

swig_type_info _swigt__p_Agedge_t = {"_p_Agedge_t", "Agedge_t *", 0, 0, (void*)0, 0}
static

Definition at line 5244 of file gv_guile.cpp.

◆ _swigt__p_Agnode_t

swig_type_info _swigt__p_Agnode_t = {"_p_Agnode_t", "Agnode_t *", 0, 0, (void*)0, 0}
static

Definition at line 5245 of file gv_guile.cpp.

◆ _swigt__p_Agraph_t

swig_type_info _swigt__p_Agraph_t = {"_p_Agraph_t", "Agraph_t *", 0, 0, (void*)0, 0}
static

Definition at line 5246 of file gv_guile.cpp.

◆ _swigt__p_Agsym_t

swig_type_info _swigt__p_Agsym_t = {"_p_Agsym_t", "Agsym_t *", 0, 0, (void*)0, 0}
static

Definition at line 5247 of file gv_guile.cpp.

◆ _swigt__p_FILE

swig_type_info _swigt__p_FILE = {"_p_FILE", "FILE *", 0, 0, (void*)0, 0}
static

Definition at line 5248 of file gv_guile.cpp.

◆ _swigt__p_unsigned_long

swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "SCM *|unsigned long *", 0, 0, (void*)0, 0}
static

Definition at line 5249 of file gv_guile.cpp.

◆ swig_cast_initial

swig_cast_info* swig_cast_initial[]
static
Initial value:
= {
}
static swig_cast_info _swigc__p_Agraph_t[]
static swig_cast_info _swigc__p_FILE[]
static swig_cast_info _swigc__p_Agnode_t[]
static swig_cast_info _swigc__p_Agedge_t[]
static swig_cast_info _swigc__p_unsigned_long[]
static swig_cast_info _swigc__p_Agsym_t[]

Definition at line 5267 of file gv_guile.cpp.

Referenced by SWIG_InitializeModule().

◆ swig_collectable_tag

scm_t_bits swig_collectable_tag = 0
static

◆ swig_destroyed_tag

scm_t_bits swig_destroyed_tag = 0
static

◆ swig_finalized_tag

scm_t_bits swig_finalized_tag = 0
static

Definition at line 873 of file gv_guile.cpp.

Referenced by SWIG_Guile_Init(), and SWIG_Guile_IsValidSmob().

◆ swig_initialized

int swig_initialized = 0
static

Definition at line 870 of file gv_guile.cpp.

Referenced by SWIG_Guile_Init().

◆ swig_keyword

SCM swig_keyword = SCM_EOL
static

Definition at line 877 of file gv_guile.cpp.

Referenced by SWIG_Guile_Init(), and SWIG_Guile_NewPointerObj().

◆ swig_make_func

SCM swig_make_func = SCM_EOL
static

Definition at line 876 of file gv_guile.cpp.

Referenced by SWIG_Guile_Init(), and SWIG_Guile_NewPointerObj().

◆ swig_member_function_tag

scm_t_bits swig_member_function_tag = 0
static

◆ swig_module

swig_module_info swig_module = {swig_types, 6, 0, 0, 0, 0}
static

◆ swig_symbol

SCM swig_symbol = SCM_EOL
static

Definition at line 878 of file gv_guile.cpp.

Referenced by SWIG_Guile_Init().

◆ swig_tag

◆ swig_type_initial

swig_type_info* swig_type_initial[]
static
Initial value:
= {
}
static swig_type_info _swigt__p_Agsym_t
static swig_type_info _swigt__p_unsigned_long
static swig_type_info _swigt__p_Agraph_t
static swig_type_info _swigt__p_FILE
static swig_type_info _swigt__p_Agnode_t
static swig_type_info _swigt__p_Agedge_t

Definition at line 5251 of file gv_guile.cpp.

Referenced by SWIG_InitializeModule().

◆ swig_types

swig_type_info* swig_types[7]
static

Definition at line 1327 of file gv_guile.cpp.