Graphviz 12.1.0~dev.20240716.0947
Loading...
Searching...
No Matches
gv_tcl.cpp File Reference
#include <stdio.h>
#include <tcl.h>
#include <errno.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
#include "assert.h"
#include <stdexcept>
#include "config.h"
#include <gvc/gvc.h>
#include <limits.h>
Include dependency graph for gv_tcl.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_const_info
 
struct  swig_method
 
struct  swig_attribute
 
struct  swig_class
 
struct  swig_instance
 
struct  swig_command_info
 
struct  swig_var_info
 

Macros

#define SWIG_VERSION   0x040200
 
#define SWIGTCL
 
#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_TCL_POINTER   4
 
#define SWIG_TCL_BINARY   5
 
#define SWIG_ConvertPtr(oc, ptr, ty, flags)   SWIG_Tcl_ConvertPtr(interp, oc, ptr, ty, flags)
 
#define SWIG_NewPointerObj(ptr, type, flags)   SWIG_Tcl_NewPointerObj(ptr, type, flags)
 
#define SWIG_ConvertPacked(obj, ptr, sz, ty)   SWIG_Tcl_ConvertPacked(interp, obj, ptr, sz, ty)
 
#define SWIG_NewPackedObj(ptr, sz, type)   SWIG_Tcl_NewPackedObj(ptr, sz, type)
 
#define SWIG_ConvertInstance(obj, pptr, type, flags)   SWIG_Tcl_ConvertPtr(interp, obj, pptr, type, flags)
 
#define SWIG_NewInstanceObj(thisvalue, type, flags)   SWIG_Tcl_NewInstanceObj(interp, thisvalue, type, flags)
 
#define SWIG_ConvertFunctionPtr(obj, pptr, type)   SWIG_Tcl_ConvertPtr(interp, obj, pptr, type, 0)
 
#define SWIG_NewFunctionPtrObj(ptr, type)   SWIG_Tcl_NewPointerObj(ptr, type, 0)
 
#define SWIG_ConvertMember(obj, ptr, sz, ty)   SWIG_Tcl_ConvertPacked(interp,obj, ptr, sz, ty)
 
#define SWIG_NewMemberObj(ptr, sz, type)   SWIG_Tcl_NewPackedObj(ptr, sz, type)
 
#define SWIG_GetModule(clientdata)   SWIG_Tcl_GetModule((Tcl_Interp *) (clientdata))
 
#define SWIG_SetModule(clientdata, pointer)   SWIG_Tcl_SetModule((Tcl_Interp *) (clientdata), pointer)
 
#define SWIG_ErrorType(code)   SWIG_Tcl_ErrorType(code)
 
#define SWIG_Error(code, msg)   SWIG_Tcl_SetErrorMsg(interp, SWIG_Tcl_ErrorType(code), msg)
 
#define SWIG_fail   goto fail
 
#define SWIG_Acquire(ptr)   SWIG_Tcl_Acquire(ptr)
 
#define SWIG_MethodCommand   SWIG_Tcl_MethodCommand
 
#define SWIG_Disown(ptr)   SWIG_Tcl_Disown(ptr)
 
#define SWIG_ConvertPtrFromString(c, ptr, ty, flags)   SWIG_Tcl_ConvertPtrFromString(interp, c, ptr, ty, flags)
 
#define SWIG_MakePtr(c, ptr, ty, flags)   SWIG_Tcl_MakePtr(c, ptr, ty, flags)
 
#define SWIG_PointerTypeFromString(c)   SWIG_Tcl_PointerTypeFromString(c)
 
#define SWIG_GetArgs   SWIG_Tcl_GetArgs
 
#define SWIG_GetConstantObj(key)   SWIG_Tcl_GetConstantObj(key)
 
#define SWIG_ObjectConstructor   SWIG_Tcl_ObjectConstructor
 
#define SWIG_Thisown(ptr)   SWIG_Tcl_Thisown(ptr)
 
#define SWIG_ObjectDelete   SWIG_Tcl_ObjectDelete
 
#define SWIG_TCL_DECL_ARGS_2(arg1, arg2)   (Tcl_Interp *interp SWIGUNUSED, arg1, arg2)
 
#define SWIG_TCL_CALL_ARGS_2(arg1, arg2)   (interp, arg1, arg2)
 
#define SWIG_POINTER_EXCEPTION   0
 
#define SWIG_GetConstant   SWIG_GetConstantObj
 
#define SWIG_Tcl_GetConstant   SWIG_Tcl_GetConstantObj
 
#define SWIG_TCL_HASHTABLE_INIT   {0}
 
#define SWIG_exception_fail(code, msg)   do { SWIG_Error(code, msg); SWIG_fail; } while(0)
 
#define SWIG_contract_assert(expr, msg)   do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
 
#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_char   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 SWIG_init   Gv_Init
 
#define SWIG_name   "gv"
 
#define SWIG_prefix   "gv::"
 
#define SWIG_namespace   "gv"
 
#define SWIG_version   "0.0"
 
#define SWIG_as_voidptr(a)   const_cast< void * >(static_cast< const void * >(a))
 
#define SWIG_as_voidptrptr(a)   ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
 
#define SWIG_TCL_STUBS_VERSION   "8.4"
 
#define SWIG_From_bool   Tcl_NewBooleanObj
 
#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 struct swig_const_info swig_const_info
 
typedef int(* swig_wrapper) (ClientData, Tcl_Interp *, int, Tcl_Obj *const [])
 
typedef int(* swig_wrapper_func) (ClientData, Tcl_Interp *, int, Tcl_Obj *const [])
 
typedef char *(* swig_variable_func) (ClientData, Tcl_Interp *, char *, char *, int)
 
typedef void(* swig_delete_func) (ClientData)
 
typedef struct swig_method swig_method
 
typedef struct swig_attribute swig_attribute
 
typedef struct swig_class swig_class
 
typedef struct swig_instance swig_instance
 

Functions

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)
 
SWIGINTERN const char * SWIG_Tcl_ErrorType (int code)
 
SWIGINTERN void SWIG_Tcl_SetErrorObj (Tcl_Interp *interp, const char *ctype, Tcl_Obj *obj)
 
SWIGINTERN void SWIG_Tcl_SetErrorMsg (Tcl_Interp *interp, const char *ctype, const char *mesg)
 
SWIGINTERNINLINE void SWIG_Tcl_AddErrorMsg (Tcl_Interp *interp, const char *mesg)
 
SWIGINTERN void SWIG_Tcl_SetConstantObj (Tcl_Interp *interp, const char *name, Tcl_Obj *obj)
 
SWIGINTERN Tcl_Obj * SWIG_Tcl_GetConstantObj (const char *key)
 
SWIGRUNTIME Tcl_HashTable * SWIG_Tcl_ObjectTable (void)
 
SWIGRUNTIME void SWIG_Tcl_Acquire (void *ptr)
 
SWIGRUNTIME int SWIG_Tcl_Thisown (void *ptr)
 
SWIGRUNTIME int SWIG_Tcl_Disown (void *ptr)
 
SWIGRUNTIME int SWIG_Tcl_ConvertPtrFromString (Tcl_Interp *interp, const char *c, void **ptr, swig_type_info *ty, int flags)
 
SWIGRUNTIMEINLINE int SWIG_Tcl_ConvertPtr (Tcl_Interp *interp, Tcl_Obj *oc, void **ptr, swig_type_info *ty, int flags)
 
SWIGRUNTIME char * SWIG_Tcl_PointerTypeFromString (char *c)
 
SWIGRUNTIME int SWIG_Tcl_ConvertPacked (Tcl_Interp *SWIGUNUSEDPARM(interp), Tcl_Obj *obj, void *ptr, int sz, swig_type_info *ty)
 
SWIGRUNTIME void SWIG_Tcl_MakePtr (char *c, void *ptr, swig_type_info *ty, int SWIGUNUSEDPARM(flags))
 
SWIGRUNTIMEINLINE Tcl_Obj * SWIG_Tcl_NewPointerObj (void *ptr, swig_type_info *type, int flags)
 
SWIGRUNTIME Tcl_Obj * SWIG_Tcl_NewPackedObj (void *ptr, int sz, swig_type_info *type)
 
SWIGRUNTIME swig_module_infoSWIG_Tcl_GetModule (Tcl_Interp *interp)
 
SWIGRUNTIME void SWIG_Tcl_SetModule (Tcl_Interp *interp, swig_module_info *module)
 
SWIGRUNTIME void SWIG_Tcl_ObjectDelete (ClientData clientData)
 
SWIGRUNTIME int SWIG_Tcl_MethodCommand (ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const _objv[])
 
SWIGRUNTIME Tcl_Obj * SWIG_Tcl_NewInstanceObj (Tcl_Interp *interp, void *thisvalue, swig_type_info *type, int flags)
 
SWIGRUNTIME int SWIG_Tcl_ObjectConstructor (ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGRUNTIME int SWIG_Tcl_GetArgs (Tcl_Interp *interp, int objc, Tcl_Obj *const objv[], const char *fmt,...)
 
SWIGEXPORT int SWIG_init (Tcl_Interp *)
 
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)
 
SWIGINTERN int SWIG_AsCharPtrAndSize (Tcl_Obj *obj, char **cptr, size_t *psize, int *alloc)
 
SWIGINTERNINLINE Tcl_Obj * SWIG_FromCharPtrAndSize (const char *carray, size_t size)
 
SWIGINTERNINLINE Tcl_Obj * SWIG_FromCharPtr (const char *cptr)
 
SWIGINTERN int _wrap_graph__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_digraph (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_strictgraph (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_strictdigraph (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_readstring (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_read__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_read__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_read (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graph__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graph (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_node (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_edge__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_edge__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_edge__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_edge__SWIG_3 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_edge (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_3 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_4 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv__SWIG_5 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_setv (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_3 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_4 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv__SWIG_5 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_getv (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nameof__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nameof__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nameof__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nameof (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findsubg (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findnode (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findedge (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findattr__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findattr__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findattr__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_findattr (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_headof (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_tailof (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graphof__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graphof__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graphof__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_graphof (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_rootof (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_protonode (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_protoedge (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_ok__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_ok__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_ok__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_ok__SWIG_3 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_ok (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstsubg (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextsubg (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstsupg (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextsupg (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstedge__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextedge__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstout__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextout__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstedge__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstedge (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextedge__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextedge (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstout__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstout (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextout__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextout (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firsthead (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nexthead (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstin__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextin__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstin__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstin (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextin__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextin (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firsttail (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nexttail (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstnode__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextnode__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstnode__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstnode (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextnode__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextnode (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstattr__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextattr__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstattr__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextattr__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstattr__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_firstattr (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextattr__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_nextattr (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_rm__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_rm__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_rm__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_rm (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_layout (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_render__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_render__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_render__SWIG_2 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_render__SWIG_3 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_render (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_renderresult (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_renderchannel (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_renderdata (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_write__SWIG_0 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_write__SWIG_1 (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_write (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGINTERN int _wrap_tred (ClientData clientData SWIGUNUSED, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
 
SWIGRUNTIME void SWIG_InitializeModule (SWIG_INIT_CLIENT_DATA_TYPE clientdata)
 
SWIGRUNTIME void SWIG_PropagateClientData (void)
 
SWIGINTERN void SWIG_Tcl_InstallConstants (Tcl_Interp *interp, swig_const_info constants[])
 
SWIGINTERN void SWIG_Tcl_InstallMethodLookupTables (void)
 
SWIGEXPORT int Gv_SafeInit (Tcl_Interp *interp)
 

Variables

static Tcl_HashTable swigconstTable
 
static int swigconstTableinit = 0
 
static swig_type_infoswig_types [7]
 
static swig_module_info swig_module = {swig_types, 6, 0, 0, 0, 0}
 
static swig_command_info swig_commands []
 
static swig_var_info swig_variables []
 
static swig_const_info swig_constants []
 
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_char = {"_p_char", "char *", 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_char [] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_infoswig_cast_initial []
 

Macro Definition Documentation

◆ SWIG_Acquire

#define SWIG_Acquire (   ptr)    SWIG_Tcl_Acquire(ptr)

Definition at line 996 of file gv_tcl.cpp.

◆ SWIG_AddCast

#define SWIG_AddCast (   r)    (r)

Definition at line 329 of file gv_tcl.cpp.

◆ SWIG_AddNewMask

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

Definition at line 305 of file gv_tcl.cpp.

◆ SWIG_AddTmpMask

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

Definition at line 308 of file gv_tcl.cpp.

◆ SWIG_ArgError

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

Definition at line 291 of file gv_tcl.cpp.

◆ SWIG_as_voidptr

#define SWIG_as_voidptr (   a)    const_cast< void * >(static_cast< const void * >(a))

Definition at line 1752 of file gv_tcl.cpp.

◆ SWIG_as_voidptrptr

#define SWIG_as_voidptrptr (   a)    ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))

Definition at line 1753 of file gv_tcl.cpp.

◆ SWIG_AttributeError

#define SWIG_AttributeError   -11

Definition at line 760 of file gv_tcl.cpp.

◆ SWIG_BADOBJ

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 300 of file gv_tcl.cpp.

◆ SWIG_BUFFER_SIZE

#define SWIG_BUFFER_SIZE   1024

Definition at line 189 of file gv_tcl.cpp.

◆ SWIG_CAST_NEW_MEMORY

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 194 of file gv_tcl.cpp.

◆ SWIG_CASTRANKLIMIT

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 294 of file gv_tcl.cpp.

◆ SWIG_CheckState

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

Definition at line 330 of file gv_tcl.cpp.

◆ SWIG_contract_assert

#define SWIG_contract_assert (   expr,
  msg 
)    do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)

Definition at line 1678 of file gv_tcl.cpp.

◆ SWIG_ConvertFunctionPtr

#define SWIG_ConvertFunctionPtr (   obj,
  pptr,
  type 
)    SWIG_Tcl_ConvertPtr(interp, obj, pptr, type, 0)

Definition at line 973 of file gv_tcl.cpp.

◆ SWIG_ConvertInstance

#define SWIG_ConvertInstance (   obj,
  pptr,
  type,
  flags 
)    SWIG_Tcl_ConvertPtr(interp, obj, pptr, type, flags)

Definition at line 969 of file gv_tcl.cpp.

◆ SWIG_ConvertMember

#define SWIG_ConvertMember (   obj,
  ptr,
  sz,
  ty 
)    SWIG_Tcl_ConvertPacked(interp,obj, ptr, sz, ty)

Definition at line 977 of file gv_tcl.cpp.

◆ SWIG_ConvertPacked

#define SWIG_ConvertPacked (   obj,
  ptr,
  sz,
  ty 
)    SWIG_Tcl_ConvertPacked(interp, obj, ptr, sz, ty)

Definition at line 965 of file gv_tcl.cpp.

◆ SWIG_ConvertPtr

#define SWIG_ConvertPtr (   oc,
  ptr,
  ty,
  flags 
)    SWIG_Tcl_ConvertPtr(interp, oc, ptr, ty, flags)

Definition at line 961 of file gv_tcl.cpp.

◆ SWIG_ConvertPtrFromString

#define SWIG_ConvertPtrFromString (   c,
  ptr,
  ty,
  flags 
)    SWIG_Tcl_ConvertPtrFromString(interp, c, ptr, ty, flags)

Definition at line 999 of file gv_tcl.cpp.

◆ SWIG_DelNewMask

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

Definition at line 306 of file gv_tcl.cpp.

◆ SWIG_DelTmpMask

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

Definition at line 309 of file gv_tcl.cpp.

◆ SWIG_Disown

#define SWIG_Disown (   ptr)    SWIG_Tcl_Disown(ptr)

Definition at line 998 of file gv_tcl.cpp.

◆ SWIG_DivisionByZero

#define SWIG_DivisionByZero   -6

Definition at line 755 of file gv_tcl.cpp.

◆ SWIG_ERROR

#define SWIG_ERROR   (-1)

Definition at line 284 of file gv_tcl.cpp.

◆ SWIG_Error

#define SWIG_Error (   code,
  msg 
)    SWIG_Tcl_SetErrorMsg(interp, SWIG_Tcl_ErrorType(code), msg)

Definition at line 990 of file gv_tcl.cpp.

◆ SWIG_ERROR_RELEASE_NOT_OWNED

#define SWIG_ERROR_RELEASE_NOT_OWNED   (-200)

Definition at line 288 of file gv_tcl.cpp.

◆ SWIG_ErrorType

#define SWIG_ErrorType (   code)    SWIG_Tcl_ErrorType(code)

Definition at line 989 of file gv_tcl.cpp.

◆ SWIG_exception_fail

#define SWIG_exception_fail (   code,
  msg 
)    do { SWIG_Error(code, msg); SWIG_fail; } while(0)

Definition at line 1676 of file gv_tcl.cpp.

◆ SWIG_fail

#define SWIG_fail   goto fail

Definition at line 991 of file gv_tcl.cpp.

◆ SWIG_From_bool

#define SWIG_From_bool   Tcl_NewBooleanObj

Definition at line 2016 of file gv_tcl.cpp.

◆ SWIG_GetArgs

#define SWIG_GetArgs   SWIG_Tcl_GetArgs

Definition at line 1002 of file gv_tcl.cpp.

◆ SWIG_GetConstant

#define SWIG_GetConstant   SWIG_GetConstantObj

Definition at line 1017 of file gv_tcl.cpp.

◆ SWIG_GetConstantObj

#define SWIG_GetConstantObj (   key)    SWIG_Tcl_GetConstantObj(key)

Definition at line 1003 of file gv_tcl.cpp.

◆ SWIG_GetModule

#define SWIG_GetModule (   clientdata)    SWIG_Tcl_GetModule((Tcl_Interp *) (clientdata))

Definition at line 983 of file gv_tcl.cpp.

◆ SWIG_IndexError

#define SWIG_IndexError   -4

Definition at line 753 of file gv_tcl.cpp.

◆ SWIG_init

#define SWIG_init (   void)    Gv_Init

Definition at line 1697 of file gv_tcl.cpp.

◆ SWIG_INIT_CLIENT_DATA_TYPE

#define SWIG_INIT_CLIENT_DATA_TYPE   void *

Definition at line 5729 of file gv_tcl.cpp.

◆ SWIG_IOError

#define SWIG_IOError   -2

Definition at line 751 of file gv_tcl.cpp.

◆ SWIG_IsNewObj

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

Definition at line 307 of file gv_tcl.cpp.

◆ SWIG_IsOK

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

Definition at line 290 of file gv_tcl.cpp.

◆ SWIG_IsTmpObj

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

Definition at line 310 of file gv_tcl.cpp.

◆ SWIG_MakePtr

#define SWIG_MakePtr (   c,
  ptr,
  ty,
  flags 
)    SWIG_Tcl_MakePtr(c, ptr, ty, flags)

Definition at line 1000 of file gv_tcl.cpp.

◆ SWIG_MangledTypeQuery

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

Definition at line 1693 of file gv_tcl.cpp.

◆ SWIG_MemoryError

#define SWIG_MemoryError   -12

Definition at line 761 of file gv_tcl.cpp.

◆ SWIG_MethodCommand

#define SWIG_MethodCommand   SWIG_Tcl_MethodCommand

Definition at line 997 of file gv_tcl.cpp.

◆ SWIG_name

#define SWIG_name   "gv"

Definition at line 1698 of file gv_tcl.cpp.

◆ SWIG_namespace

#define SWIG_namespace   "gv"

Definition at line 1700 of file gv_tcl.cpp.

◆ SWIG_NewFunctionPtrObj

#define SWIG_NewFunctionPtrObj (   ptr,
  type 
)    SWIG_Tcl_NewPointerObj(ptr, type, 0)

Definition at line 974 of file gv_tcl.cpp.

◆ SWIG_NewInstanceObj

#define SWIG_NewInstanceObj (   thisvalue,
  type,
  flags 
)    SWIG_Tcl_NewInstanceObj(interp, thisvalue, type, flags)

Definition at line 970 of file gv_tcl.cpp.

◆ SWIG_NewMemberObj

#define SWIG_NewMemberObj (   ptr,
  sz,
  type 
)    SWIG_Tcl_NewPackedObj(ptr, sz, type)

Definition at line 978 of file gv_tcl.cpp.

◆ SWIG_NEWOBJ

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 302 of file gv_tcl.cpp.

◆ SWIG_NEWOBJMASK

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 296 of file gv_tcl.cpp.

◆ SWIG_NewPackedObj

#define SWIG_NewPackedObj (   ptr,
  sz,
  type 
)    SWIG_Tcl_NewPackedObj(ptr, sz, type)

Definition at line 966 of file gv_tcl.cpp.

◆ SWIG_NewPointerObj

#define SWIG_NewPointerObj (   ptr,
  type,
  flags 
)    SWIG_Tcl_NewPointerObj(ptr, type, flags)

Definition at line 962 of file gv_tcl.cpp.

◆ SWIG_NULLPTR

#define SWIG_NULLPTR   NULL

Definition at line 139 of file gv_tcl.cpp.

◆ SWIG_NullReferenceError

#define SWIG_NullReferenceError   -13

Definition at line 762 of file gv_tcl.cpp.

◆ SWIG_ObjectConstructor

#define SWIG_ObjectConstructor   SWIG_Tcl_ObjectConstructor

Definition at line 1004 of file gv_tcl.cpp.

◆ SWIG_ObjectDelete

#define SWIG_ObjectDelete   SWIG_Tcl_ObjectDelete

Definition at line 1006 of file gv_tcl.cpp.

◆ SWIG_OK

#define SWIG_OK   (0)

Definition at line 282 of file gv_tcl.cpp.

◆ SWIG_OLDOBJ

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 301 of file gv_tcl.cpp.

◆ SWIG_OverflowError

#define SWIG_OverflowError   -7

Definition at line 756 of file gv_tcl.cpp.

◆ SWIG_POINTER_CLEAR

#define SWIG_POINTER_CLEAR   0x8

Definition at line 196 of file gv_tcl.cpp.

◆ SWIG_POINTER_DISOWN

#define SWIG_POINTER_DISOWN   0x1

Definition at line 193 of file gv_tcl.cpp.

◆ SWIG_POINTER_EXCEPTION

#define SWIG_POINTER_EXCEPTION   0

Definition at line 1016 of file gv_tcl.cpp.

◆ SWIG_POINTER_NO_NULL

#define SWIG_POINTER_NO_NULL   0x4

Definition at line 195 of file gv_tcl.cpp.

◆ SWIG_POINTER_OWN

#define SWIG_POINTER_OWN   0x1

Definition at line 200 of file gv_tcl.cpp.

◆ SWIG_POINTER_RELEASE

#define SWIG_POINTER_RELEASE   (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)

Definition at line 197 of file gv_tcl.cpp.

◆ SWIG_PointerTypeFromString

#define SWIG_PointerTypeFromString (   c)    SWIG_Tcl_PointerTypeFromString(c)

Definition at line 1001 of file gv_tcl.cpp.

◆ SWIG_prefix

#define SWIG_prefix   "gv::"

Definition at line 1699 of file gv_tcl.cpp.

◆ SWIG_RUNTIME_VERSION

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 159 of file gv_tcl.cpp.

◆ SWIG_RuntimeError

#define SWIG_RuntimeError   -3

Definition at line 752 of file gv_tcl.cpp.

◆ SWIG_SetModule

#define SWIG_SetModule (   clientdata,
  pointer 
)    SWIG_Tcl_SetModule((Tcl_Interp *) (clientdata), pointer)

Definition at line 984 of file gv_tcl.cpp.

◆ SWIG_snprintf

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

Definition at line 347 of file gv_tcl.cpp.

◆ SWIG_snprintf2

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

Definition at line 348 of file gv_tcl.cpp.

◆ SWIG_SyntaxError

#define SWIG_SyntaxError   -8

Definition at line 757 of file gv_tcl.cpp.

◆ SWIG_SystemError

#define SWIG_SystemError   -10

Definition at line 759 of file gv_tcl.cpp.

◆ SWIG_TCL_BINARY

#define SWIG_TCL_BINARY   5

Definition at line 855 of file gv_tcl.cpp.

◆ SWIG_TCL_CALL_ARGS_2

#define SWIG_TCL_CALL_ARGS_2 (   arg1,
  arg2 
)    (interp, arg1, arg2)

Definition at line 1010 of file gv_tcl.cpp.

◆ SWIG_TCL_DECL_ARGS_2

#define SWIG_TCL_DECL_ARGS_2 (   arg1,
  arg2 
)    (Tcl_Interp *interp SWIGUNUSED, arg1, arg2)

Definition at line 1009 of file gv_tcl.cpp.

◆ SWIG_Tcl_GetConstant

#define SWIG_Tcl_GetConstant   SWIG_Tcl_GetConstantObj

Definition at line 1018 of file gv_tcl.cpp.

◆ SWIG_TCL_HASHTABLE_INIT

#define SWIG_TCL_HASHTABLE_INIT   {0}

Definition at line 1023 of file gv_tcl.cpp.

◆ SWIG_TCL_POINTER

#define SWIG_TCL_POINTER   4

Definition at line 854 of file gv_tcl.cpp.

◆ SWIG_TCL_STUBS_VERSION

#define SWIG_TCL_STUBS_VERSION   "8.4"

Definition at line 1776 of file gv_tcl.cpp.

◆ SWIG_Thisown

#define SWIG_Thisown (   ptr)    SWIG_Tcl_Thisown(ptr)

Definition at line 1005 of file gv_tcl.cpp.

◆ SWIG_TMPOBJ

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 303 of file gv_tcl.cpp.

◆ SWIG_TMPOBJMASK

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 298 of file gv_tcl.cpp.

◆ SWIG_TYPE_TABLE_NAME

#define SWIG_TYPE_TABLE_NAME

Definition at line 167 of file gv_tcl.cpp.

◆ SWIG_TypeError

#define SWIG_TypeError   -5

Definition at line 754 of file gv_tcl.cpp.

◆ SWIG_TypeQuery

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

Definition at line 1692 of file gv_tcl.cpp.

◆ SWIG_UnknownError

#define SWIG_UnknownError   -1

Definition at line 750 of file gv_tcl.cpp.

◆ SWIG_ValueError

#define SWIG_ValueError   -9

Definition at line 758 of file gv_tcl.cpp.

◆ SWIG_VERSION

#define SWIG_VERSION   0x040200

Definition at line 10 of file gv_tcl.cpp.

◆ SWIG_version

#define SWIG_version   "0.0"

Definition at line 1702 of file gv_tcl.cpp.

◆ SWIGEXPORT

#define SWIGEXPORT

Definition at line 98 of file gv_tcl.cpp.

◆ SWIGINLINE

#define SWIGINLINE

Definition at line 35 of file gv_tcl.cpp.

◆ SWIGINTERN

#define SWIGINTERN   static SWIGUNUSED

Definition at line 70 of file gv_tcl.cpp.

◆ SWIGINTERNINLINE

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 75 of file gv_tcl.cpp.

◆ SWIGRUNTIME

#define SWIGRUNTIME   SWIGINTERN

Definition at line 180 of file gv_tcl.cpp.

◆ SWIGRUNTIMEINLINE

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 184 of file gv_tcl.cpp.

◆ SWIGSTDCALL

#define SWIGSTDCALL

Definition at line 108 of file gv_tcl.cpp.

◆ SWIGTCL

#define SWIGTCL

Definition at line 11 of file gv_tcl.cpp.

◆ SWIGTEMPLATEDISAMBIGUATOR

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 26 of file gv_tcl.cpp.

◆ SWIGTYPE_p_Agedge_t

#define SWIGTYPE_p_Agedge_t   swig_types[0]

Definition at line 1684 of file gv_tcl.cpp.

◆ SWIGTYPE_p_Agnode_t

#define SWIGTYPE_p_Agnode_t   swig_types[1]

Definition at line 1685 of file gv_tcl.cpp.

◆ SWIGTYPE_p_Agraph_t

#define SWIGTYPE_p_Agraph_t   swig_types[2]

Definition at line 1686 of file gv_tcl.cpp.

◆ SWIGTYPE_p_Agsym_t

#define SWIGTYPE_p_Agsym_t   swig_types[3]

Definition at line 1687 of file gv_tcl.cpp.

◆ SWIGTYPE_p_char

#define SWIGTYPE_p_char   swig_types[5]

Definition at line 1689 of file gv_tcl.cpp.

◆ SWIGTYPE_p_FILE

#define SWIGTYPE_p_FILE   swig_types[4]

Definition at line 1688 of file gv_tcl.cpp.

◆ SWIGUNUSED

#define SWIGUNUSED

Definition at line 50 of file gv_tcl.cpp.

◆ SWIGUNUSEDPARM

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 64 of file gv_tcl.cpp.

Typedef Documentation

◆ swig_attribute

◆ swig_cast_info

◆ swig_class

typedef struct swig_class swig_class

◆ swig_const_info

◆ swig_converter_func

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

Definition at line 357 of file gv_tcl.cpp.

◆ swig_delete_func

typedef void(* swig_delete_func) (ClientData)

Definition at line 870 of file gv_tcl.cpp.

◆ swig_dycast_func

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

Definition at line 357 of file gv_tcl.cpp.

◆ swig_instance

typedef struct swig_instance swig_instance

◆ swig_method

typedef struct swig_method swig_method

◆ swig_module_info

◆ swig_type_info

◆ swig_variable_func

typedef char *(* swig_variable_func) (ClientData, Tcl_Interp *, char *, char *, int)

Definition at line 869 of file gv_tcl.cpp.

◆ swig_wrapper

typedef int(* swig_wrapper) (ClientData, Tcl_Interp *, int, Tcl_Obj *const[])

Definition at line 867 of file gv_tcl.cpp.

◆ swig_wrapper_func

typedef int(* swig_wrapper_func) (ClientData, Tcl_Interp *, int, Tcl_Obj *const[])

Definition at line 868 of file gv_tcl.cpp.

Function Documentation

◆ _wrap_digraph()

SWIGINTERN int _wrap_digraph ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2046 of file gv_tcl.cpp.

References digraph(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_edge()

SWIGINTERN int _wrap_edge ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2451 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_edge__SWIG_0()

SWIGINTERN int _wrap_edge__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2315 of file gv_tcl.cpp.

References edge, SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_edge().

Here is the caller graph for this function:

◆ _wrap_edge__SWIG_1()

SWIGINTERN int _wrap_edge__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2344 of file gv_tcl.cpp.

References edge, NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_edge().

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

◆ _wrap_edge__SWIG_2()

SWIGINTERN int _wrap_edge__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2376 of file gv_tcl.cpp.

References edge, NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_edge().

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

◆ _wrap_edge__SWIG_3()

SWIGINTERN int _wrap_edge__SWIG_3 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2408 of file gv_tcl.cpp.

References edge, NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_edge().

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

◆ _wrap_findattr()

SWIGINTERN int _wrap_findattr ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3468 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_findattr__SWIG_0()

SWIGINTERN int _wrap_findattr__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3372 of file gv_tcl.cpp.

References findattr(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_findattr().

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

◆ _wrap_findattr__SWIG_1()

SWIGINTERN int _wrap_findattr__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3404 of file gv_tcl.cpp.

References findattr(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_findattr().

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

◆ _wrap_findattr__SWIG_2()

SWIGINTERN int _wrap_findattr__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3436 of file gv_tcl.cpp.

References findattr(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_findattr().

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

◆ _wrap_findedge()

SWIGINTERN int _wrap_findedge ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3343 of file gv_tcl.cpp.

References findedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_findnode()

SWIGINTERN int _wrap_findnode ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3311 of file gv_tcl.cpp.

References findnode(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_findsubg()

SWIGINTERN int _wrap_findsubg ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3279 of file gv_tcl.cpp.

References findsubg(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstattr()

SWIGINTERN int _wrap_firstattr ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4874 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_firstattr__SWIG_0()

SWIGINTERN int _wrap_firstattr__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4753 of file gv_tcl.cpp.

References firstattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstattr__SWIG_1()

SWIGINTERN int _wrap_firstattr__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4803 of file gv_tcl.cpp.

References firstattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstattr__SWIG_2()

SWIGINTERN int _wrap_firstattr__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4853 of file gv_tcl.cpp.

References firstattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstedge()

SWIGINTERN int _wrap_firstedge ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4086 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_firstedge__SWIG_0()

SWIGINTERN int _wrap_firstedge__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3965 of file gv_tcl.cpp.

References firstedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_firstedge().

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

◆ _wrap_firstedge__SWIG_1()

SWIGINTERN int _wrap_firstedge__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4065 of file gv_tcl.cpp.

References firstedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_firstedge().

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

◆ _wrap_firsthead()

SWIGINTERN int _wrap_firsthead ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4309 of file gv_tcl.cpp.

References firsthead(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_firstin()

SWIGINTERN int _wrap_firstin ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4430 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_firstin__SWIG_0()

SWIGINTERN int _wrap_firstin__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4359 of file gv_tcl.cpp.

References firstin(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_firstin().

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

◆ _wrap_firstin__SWIG_1()

SWIGINTERN int _wrap_firstin__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4409 of file gv_tcl.cpp.

References firstin(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_firstin().

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

◆ _wrap_firstnode()

SWIGINTERN int _wrap_firstnode ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4652 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_firstnode__SWIG_0()

SWIGINTERN int _wrap_firstnode__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4581 of file gv_tcl.cpp.

References firstnode(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_firstnode().

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

◆ _wrap_firstnode__SWIG_1()

SWIGINTERN int _wrap_firstnode__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4631 of file gv_tcl.cpp.

References firstnode(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_firstnode().

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

◆ _wrap_firstout()

SWIGINTERN int _wrap_firstout ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4208 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_firstout__SWIG_0()

SWIGINTERN int _wrap_firstout__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4015 of file gv_tcl.cpp.

References firstout(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_firstout().

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

◆ _wrap_firstout__SWIG_1()

SWIGINTERN int _wrap_firstout__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4187 of file gv_tcl.cpp.

References firstout(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_firstout().

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

◆ _wrap_firstsubg()

SWIGINTERN int _wrap_firstsubg ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3865 of file gv_tcl.cpp.

References firstsubg(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstsupg()

SWIGINTERN int _wrap_firstsupg ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3915 of file gv_tcl.cpp.

References firstsupg(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firsttail()

SWIGINTERN int _wrap_firsttail ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4531 of file gv_tcl.cpp.

References firsttail(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_getv()

SWIGINTERN int _wrap_getv ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3077 of file gv_tcl.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(), NULL, SWIG_AsCharPtrAndSize(), SWIG_CheckState, SWIG_ConvertPtr, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Here is the call graph for this function:

◆ _wrap_getv__SWIG_0()

SWIGINTERN int _wrap_getv__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2894 of file gv_tcl.cpp.

References getv(), NULL, SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_1()

SWIGINTERN int _wrap_getv__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2926 of file gv_tcl.cpp.

References getv(), NULL, SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_2()

SWIGINTERN int _wrap_getv__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2958 of file gv_tcl.cpp.

References getv(), NULL, SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agedge_t.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_3()

SWIGINTERN int _wrap_getv__SWIG_3 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2990 of file gv_tcl.cpp.

References getv(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_4()

SWIGINTERN int _wrap_getv__SWIG_4 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3019 of file gv_tcl.cpp.

References getv(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_5()

SWIGINTERN int _wrap_getv__SWIG_5 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3048 of file gv_tcl.cpp.

References getv(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_getv().

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

◆ _wrap_graph()

SWIGINTERN int _wrap_graph ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2249 of file gv_tcl.cpp.

References _wrap_graph__SWIG_0(), _wrap_graph__SWIG_1(), NULL, SWIG_AsCharPtrAndSize(), SWIG_CheckState, SWIG_ConvertPtr, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_graph__SWIG_0()

SWIGINTERN int _wrap_graph__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2022 of file gv_tcl.cpp.

References graph(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_graph().

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

◆ _wrap_graph__SWIG_1()

SWIGINTERN int _wrap_graph__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2217 of file gv_tcl.cpp.

References graph(), NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_graph().

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

◆ _wrap_graphof()

SWIGINTERN int _wrap_graphof ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3626 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_graphof__SWIG_0()

SWIGINTERN int _wrap_graphof__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3563 of file gv_tcl.cpp.

References graphof(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_graphof().

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

◆ _wrap_graphof__SWIG_1()

SWIGINTERN int _wrap_graphof__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3584 of file gv_tcl.cpp.

References graphof(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_graphof().

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

◆ _wrap_graphof__SWIG_2()

SWIGINTERN int _wrap_graphof__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3605 of file gv_tcl.cpp.

References graphof(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_graphof().

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

◆ _wrap_headof()

SWIGINTERN int _wrap_headof ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3521 of file gv_tcl.cpp.

References headof(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_layout()

SWIGINTERN int _wrap_layout ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5104 of file gv_tcl.cpp.

References layout(), NULL, SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_nameof()

SWIGINTERN int _wrap_nameof ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3238 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nameof__SWIG_0()

SWIGINTERN int _wrap_nameof__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3175 of file gv_tcl.cpp.

References nameof(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_nameof().

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

◆ _wrap_nameof__SWIG_1()

SWIGINTERN int _wrap_nameof__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3196 of file gv_tcl.cpp.

References nameof(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_nameof().

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

◆ _wrap_nameof__SWIG_2()

SWIGINTERN int _wrap_nameof__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3217 of file gv_tcl.cpp.

References nameof(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_nameof().

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

◆ _wrap_nextattr()

SWIGINTERN int _wrap_nextattr ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4944 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nextattr__SWIG_0()

SWIGINTERN int _wrap_nextattr__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4774 of file gv_tcl.cpp.

References nextattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextattr__SWIG_1()

SWIGINTERN int _wrap_nextattr__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4824 of file gv_tcl.cpp.

References nextattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextattr__SWIG_2()

SWIGINTERN int _wrap_nextattr__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4915 of file gv_tcl.cpp.

References nextattr(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextedge()

SWIGINTERN int _wrap_nextedge ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4146 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nextedge__SWIG_0()

SWIGINTERN int _wrap_nextedge__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3986 of file gv_tcl.cpp.

References nextedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_nextedge().

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

◆ _wrap_nextedge__SWIG_1()

SWIGINTERN int _wrap_nextedge__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4117 of file gv_tcl.cpp.

References nextedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_nextedge().

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

◆ _wrap_nexthead()

SWIGINTERN int _wrap_nexthead ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4330 of file gv_tcl.cpp.

References nexthead(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_nextin()

SWIGINTERN int _wrap_nextin ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4490 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nextin__SWIG_0()

SWIGINTERN int _wrap_nextin__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4380 of file gv_tcl.cpp.

References nextin(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_nextin().

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

◆ _wrap_nextin__SWIG_1()

SWIGINTERN int _wrap_nextin__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4461 of file gv_tcl.cpp.

References nextin(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_nextin().

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

◆ _wrap_nextnode()

SWIGINTERN int _wrap_nextnode ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4712 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nextnode__SWIG_0()

SWIGINTERN int _wrap_nextnode__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4602 of file gv_tcl.cpp.

References nextnode(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_nextnode().

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

◆ _wrap_nextnode__SWIG_1()

SWIGINTERN int _wrap_nextnode__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4683 of file gv_tcl.cpp.

References nextnode(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_nextnode().

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

◆ _wrap_nextout()

SWIGINTERN int _wrap_nextout ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4268 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_nextout__SWIG_0()

SWIGINTERN int _wrap_nextout__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4036 of file gv_tcl.cpp.

References nextout(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_nextout().

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

◆ _wrap_nextout__SWIG_1()

SWIGINTERN int _wrap_nextout__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4239 of file gv_tcl.cpp.

References nextout(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_nextout().

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

◆ _wrap_nextsubg()

SWIGINTERN int _wrap_nextsubg ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3886 of file gv_tcl.cpp.

References nextsubg(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_nextsupg()

SWIGINTERN int _wrap_nextsupg ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3936 of file gv_tcl.cpp.

References nextsupg(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_nexttail()

SWIGINTERN int _wrap_nexttail ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 4552 of file gv_tcl.cpp.

References nexttail(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agnode_t.

Here is the call graph for this function:

◆ _wrap_node()

SWIGINTERN int _wrap_node ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2283 of file gv_tcl.cpp.

References NULL, SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_ok()

SWIGINTERN int _wrap_ok ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3814 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_ok__SWIG_0()

SWIGINTERN int _wrap_ok__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3730 of file gv_tcl.cpp.

References ok(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_1()

SWIGINTERN int _wrap_ok__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3751 of file gv_tcl.cpp.

References ok(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_2()

SWIGINTERN int _wrap_ok__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3772 of file gv_tcl.cpp.

References ok(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agedge_t.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_3()

SWIGINTERN int _wrap_ok__SWIG_3 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3793 of file gv_tcl.cpp.

References ok(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_ok().

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

◆ _wrap_protoedge()

SWIGINTERN int _wrap_protoedge ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3709 of file gv_tcl.cpp.

References protoedge(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_protonode()

SWIGINTERN int _wrap_protonode ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3688 of file gv_tcl.cpp.

References protonode(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_read()

SWIGINTERN int _wrap_read ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2187 of file gv_tcl.cpp.

References _wrap_read__SWIG_0(), _wrap_read__SWIG_1(), NULL, SWIG_AsCharPtrAndSize(), SWIG_CheckState, SWIG_ConvertPtr, and SWIGTYPE_p_FILE.

Here is the call graph for this function:

◆ _wrap_read__SWIG_0()

SWIGINTERN int _wrap_read__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2142 of file gv_tcl.cpp.

References NULL, read(), SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_read().

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

◆ _wrap_read__SWIG_1()

SWIGINTERN int _wrap_read__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2166 of file gv_tcl.cpp.

References read(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Referenced by _wrap_read().

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

◆ _wrap_readstring()

SWIGINTERN int _wrap_readstring ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2118 of file gv_tcl.cpp.

References NULL, readstring(), SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_render()

SWIGINTERN int _wrap_render ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5272 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_render__SWIG_0()

SWIGINTERN int _wrap_render__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5136 of file gv_tcl.cpp.

References render(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_1()

SWIGINTERN int _wrap_render__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5157 of file gv_tcl.cpp.

References NULL, render(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_2()

SWIGINTERN int _wrap_render__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5189 of file gv_tcl.cpp.

References NULL, render(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_3()

SWIGINTERN int _wrap_render__SWIG_3 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5229 of file gv_tcl.cpp.

References NULL, render(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_render().

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

◆ _wrap_renderchannel()

SWIGINTERN int _wrap_renderchannel ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5384 of file gv_tcl.cpp.

References NULL, renderchannel(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_renderdata()

SWIGINTERN int _wrap_renderdata ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5422 of file gv_tcl.cpp.

References NULL, renderdata(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_renderresult()

SWIGINTERN int _wrap_renderresult ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5344 of file gv_tcl.cpp.

References NULL, renderresult(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_rm()

SWIGINTERN int _wrap_rm ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5063 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_rm__SWIG_0()

SWIGINTERN int _wrap_rm__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5000 of file gv_tcl.cpp.

References rm(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_rm().

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

◆ _wrap_rm__SWIG_1()

SWIGINTERN int _wrap_rm__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5021 of file gv_tcl.cpp.

References rm(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_rm().

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

◆ _wrap_rm__SWIG_2()

SWIGINTERN int _wrap_rm__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5042 of file gv_tcl.cpp.

References rm(), SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, and SWIGTYPE_p_Agedge_t.

Referenced by _wrap_rm().

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

◆ _wrap_rootof()

SWIGINTERN int _wrap_rootof ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3667 of file gv_tcl.cpp.

References rootof(), SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_setv()

SWIGINTERN int _wrap_setv ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2772 of file gv_tcl.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(), NULL, SWIG_AsCharPtrAndSize(), SWIG_CheckState, SWIG_ConvertPtr, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Here is the call graph for this function:

◆ _wrap_setv__SWIG_0()

SWIGINTERN int _wrap_setv__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2523 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_1()

SWIGINTERN int _wrap_setv__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2566 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agnode_t.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_2()

SWIGINTERN int _wrap_setv__SWIG_2 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2609 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, and SWIGTYPE_p_Agedge_t.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_3()

SWIGINTERN int _wrap_setv__SWIG_3 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2652 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_4()

SWIGINTERN int _wrap_setv__SWIG_4 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2692 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_5()

SWIGINTERN int _wrap_setv__SWIG_5 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2732 of file gv_tcl.cpp.

References NULL, setv(), SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_FromCharPtr(), SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agsym_t.

Referenced by _wrap_setv().

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

◆ _wrap_strictdigraph()

SWIGINTERN int _wrap_strictdigraph ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2094 of file gv_tcl.cpp.

References NULL, strictdigraph(), SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_strictgraph()

SWIGINTERN int _wrap_strictgraph ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 2070 of file gv_tcl.cpp.

References NULL, strictgraph(), SWIG_ArgError, SWIG_as_voidptr, SWIG_AsCharPtrAndSize(), SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIG_NEWOBJ, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_tailof()

SWIGINTERN int _wrap_tailof ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 3542 of file gv_tcl.cpp.

References SWIG_ArgError, SWIG_as_voidptr, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_GetArgs, SWIG_IsOK, SWIG_NewInstanceObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and tailof().

Here is the call graph for this function:

◆ _wrap_tred()

SWIGINTERN int _wrap_tred ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5555 of file gv_tcl.cpp.

References SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIGTYPE_p_Agraph_t, and tred().

Here is the call graph for this function:

◆ _wrap_write()

SWIGINTERN int _wrap_write ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5515 of file gv_tcl.cpp.

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

Here is the call graph for this function:

◆ _wrap_write__SWIG_0()

SWIGINTERN int _wrap_write__SWIG_0 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5454 of file gv_tcl.cpp.

References NULL, SWIG_ArgError, SWIG_AsCharPtrAndSize(), SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIG_NEWOBJ, SWIGTYPE_p_Agraph_t, and write().

Referenced by _wrap_write().

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

◆ _wrap_write__SWIG_1()

SWIGINTERN int _wrap_write__SWIG_1 ( ClientData clientData  SWIGUNUSED,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 5486 of file gv_tcl.cpp.

References SWIG_ArgError, SWIG_ConvertPtr, SWIG_exception_fail, SWIG_fail, SWIG_From_bool, SWIG_GetArgs, SWIG_IsOK, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, and write().

Referenced by _wrap_write().

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 37 of file gv.cpp.

References Agdirected, agopen(), gv_init(), and gvc.

Referenced by _wrap_digraph().

Here is the call graph for this function:
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 100 of file gv.cpp.

References agraphof(), and edge.

Here is the call graph for this function:

◆ edge() [2/4]

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

Definition at line 108 of file gv.cpp.

References agraphof(), and edge.

Here is the call graph for this function:

◆ edge() [3/4]

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

Definition at line 113 of file gv.cpp.

References edge.

◆ edge() [4/4]

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

Definition at line 103 of file gv.cpp.

References agraphof(), and edge.

Here is the call graph for this function:

◆ findattr() [1/3]

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

Definition at line 285 of file gv.cpp.

References agfindattr.

◆ findattr() [2/3]

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

Definition at line 279 of file gv.cpp.

References agfindattr.

◆ findattr() [3/3]

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

Definition at line 273 of file gv.cpp.

References agfindattr.

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 265 of file gv.cpp.

References agfindedge, AGRAPH, agraphof(), and AGTYPE.

Referenced by _wrap_findedge().

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

◆ findnode()

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

Definition at line 259 of file gv.cpp.

References agnode().

Referenced by _wrap_findnode().

Here is the call graph for this function:
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 253 of file gv.cpp.

References agsubg().

Referenced by _wrap_findsubg().

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

◆ firstattr() [1/3]

Agsym_t * firstattr ( Agedge_t e)
extern

Definition at line 576 of file gv.cpp.

References AGEDGE, agnxtattr(), agraphof(), and agtail.

Here is the call graph for this function:

◆ firstattr() [2/3]

Agsym_t * firstattr ( Agnode_t n)
extern

Definition at line 562 of file gv.cpp.

References AGNODE, agnxtattr(), and agraphof().

Here is the call graph for this function:

◆ firstattr() [3/3]

Agsym_t * firstattr ( Agraph_t g)
extern

Definition at line 548 of file gv.cpp.

References agnxtattr(), AGRAPH, and agroot().

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

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

◆ firstedge() [1/2]

Agedge_t * firstedge ( Agnode_t n)
extern

Definition at line 455 of file gv.cpp.

References agfstedge(), and agraphof().

Here is the call graph for this function:

◆ firstedge() [2/2]

Agedge_t * firstedge ( Agraph_t g)
extern

Definition at line 415 of file gv.cpp.

References firstout().

Referenced by _wrap_firstedge__SWIG_0(), and _wrap_firstedge__SWIG_1().

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

◆ firsthead()

Agnode_t * firsthead ( Agnode_t n)
extern

Definition at line 431 of file gv.cpp.

References agfstout(), aghead, and agraphof().

Referenced by _wrap_firsthead().

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

◆ firstin() [1/2]

Agedge_t * firstin ( Agnode_t n)
extern

Definition at line 488 of file gv.cpp.

References agfstin(), and agraphof().

Here is the call graph for this function:

◆ firstin() [2/2]

Agedge_t * firstin ( Agraph_t g)
extern

Definition at line 467 of file gv.cpp.

References agfstin(), and agfstnode().

Referenced by _wrap_firstin__SWIG_0(), and _wrap_firstin__SWIG_1().

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

◆ firstnode() [1/2]

Agnode_t * firstnode ( Agedge_t e)
extern

Definition at line 536 of file gv.cpp.

References agtail.

◆ firstnode() [2/2]

Agnode_t * firstnode ( Agraph_t g)
extern

Definition at line 524 of file gv.cpp.

References agfstnode().

Referenced by _wrap_firstnode__SWIG_0(), and _wrap_firstnode__SWIG_1().

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

◆ firstout() [1/2]

Agedge_t * firstout ( Agnode_t n)
extern

Definition at line 419 of file gv.cpp.

References agfstout(), and agraphof().

Here is the call graph for this function:

◆ firstout() [2/2]

Agedge_t * firstout ( Agraph_t g)
extern

Definition at line 390 of file gv.cpp.

References agfstnode(), agfstout(), and agnxtnode().

Referenced by _wrap_firstout__SWIG_0(), _wrap_firstout__SWIG_1(), and firstedge().

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

◆ firstsubg()

Agraph_t * firstsubg ( Agraph_t g)
extern

Definition at line 373 of file gv.cpp.

References agfstsubg().

Referenced by _wrap_firstsubg().

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

◆ firstsupg()

Agraph_t * firstsupg ( Agraph_t g)
extern

Definition at line 386 of file gv.cpp.

References Agraph_s::parent.

Referenced by _wrap_firstsupg().

Here is the caller graph for this function:

◆ firsttail()

Agnode_t * firsttail ( Agnode_t n)
extern

Definition at line 500 of file gv.cpp.

References agfstin(), agraphof(), and agtail.

Referenced by _wrap_firsttail().

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 211 of file gv.cpp.

References AGRAPH, AGTYPE, and myagxget().

Here is the call graph for this function:

◆ getv() [2/6]

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

Definition at line 218 of file gv.cpp.

References agattr(), AGEDGE, AGRAPH, agraphof(), agtail, AGTYPE, and myagxget().

Here is the call graph for this function:

◆ getv() [3/6]

char * getv ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 168 of file gv.cpp.

References AGRAPH, AGTYPE, and myagxget().

Here is the call graph for this function:

◆ getv() [4/6]

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

Definition at line 175 of file gv.cpp.

References agattr(), AGNODE, AGRAPH, agraphof(), agroot(), AGTYPE, and myagxget().

Here is the call graph for this function:

◆ getv() [5/6]

char * getv ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 135 of file gv.cpp.

References myagxget().

Here is the call graph for this function:

◆ getv() [6/6]

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

Getting attribute values

Definition at line 136 of file gv.cpp.

References agfindattr, agroot(), and myagxget().

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 call graph for this function:
Here is the caller graph for this function:

◆ graph() [1/2]

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

Definition at line 79 of file gv.cpp.

References agsubg(), gv_init(), and gvc.

Here is the call graph for this function:

◆ graph() [2/2]

Agraph_t * graph ( char *  name)
extern

New graphs

Definition at line 31 of file gv.cpp.

References agopen(), Agundirected, gv_init(), and gvc.

Referenced by _wrap_graph__SWIG_0(), _wrap_graph__SWIG_1(), add_edge(), add_graph_to_viewport(), add_graph_to_viewport_from_file(), bfs(), chkBoundBox(), circuitModel(), closest_pairs2graph(), coarsen_match(), common_neighbors(), compute_apsp(), compute_apsp_artificial_weights(), compute_apsp_artificial_weights_packed(), compute_apsp_dijkstra(), compute_apsp_packed(), compute_apsp_simple(), compute_densities(), compute_new_weights(), compute_weighted_apsp_packed(), constructSierpinski(), constructTetrix(), cpExGraph(), cpGraph(), create_hierarchy(), dijkstra(), dijkstra_f(), dijkstra_sgd(), dist3(), dist_from_foci(), embed_graph(), empty_neighbors_vec(), empty_neighbors_vec(), extract_active_logical_coords(), extract_adjacency(), fill_neighbors_vec(), fill_neighbors_vec_unweighted(), fill_neighbors_vec_unweighted(), findClosestActiveNode(), free_adjacency(), free_graph(), freeGraph(), freeGraphData(), improve_contiguity(), init_active_level(), main(), make_coarse_ex_graph(), make_coarse_graph(), make_map_from_rectangle_groups(), make_map_internal(), makeGraph(), makeGraphData(), makeHier(), makeInfo(), makeMap(), makeSierpinski(), makeTetrix(), mapFromGraph(), maxmatch(), mdsModel(), mkGraph(), mkGraph(), my_init_graph(), prepare_topological_fisheye(), refreshViewport(), remove_edge(), rescale_layout_polar(), rescale_layout_polarFocus(), restore_old_weights(), save_graph_with_file_name(), set_active_levels(), set_active_physical_coords(), sgd(), sparse_stress_subspace_majorization_kD(), stress_majorization_kD_mkernel(), unweighted_common_fraction(), and update_graph_params().

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

◆ graphof() [1/3]

Agraph_t * graphof ( Agedge_t e)
extern

Definition at line 315 of file gv.cpp.

References AGRAPH, agraphof(), agtail, and AGTYPE.

Here is the call graph for this function:

◆ graphof() [2/3]

Agraph_t * graphof ( Agnode_t n)
extern

Definition at line 324 of file gv.cpp.

References AGRAPH, agraphof(), and AGTYPE.

Here is the call graph for this function:

◆ graphof() [3/3]

Agraph_t * graphof ( Agraph_t g)
extern

Definition at line 309 of file gv.cpp.

References agroot(), and Agraph_s::root.

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

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

◆ Gv_SafeInit()

SWIGEXPORT int Gv_SafeInit ( Tcl_Interp *  interp)

Definition at line 6019 of file gv_tcl.cpp.

References SWIG_init.

◆ headof()

Agnode_t * headof ( Agedge_t e)
extern

Misc graph navigators returning handles

Definition at line 293 of file gv.cpp.

References aghead, AGRAPH, and AGTYPE.

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 621 of file gv.cpp.

References engine, err, gvc, gvFreeLayout(), and gvLayout().

Referenced by _wrap_layout().

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

◆ nameof() [1/3]

char * nameof ( Agnode_t n)
extern

Definition at line 354 of file gv.cpp.

References agnameof(), AGRAPH, and AGTYPE.

Here is the call graph for this function:

◆ nameof() [2/3]

char * nameof ( Agraph_t g)
extern

Obtain names from handles

Definition at line 349 of file gv.cpp.

References agnameof().

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

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

◆ nameof() [3/3]

char * nameof ( Agsym_t a)
extern

Definition at line 361 of file gv.cpp.

References Agsym_s::name.

◆ nextattr() [1/3]

Agsym_t * nextattr ( Agedge_t e,
Agsym_t a 
)
extern

Definition at line 583 of file gv.cpp.

References AGEDGE, agnxtattr(), agraphof(), and agtail.

Here is the call graph for this function:

◆ nextattr() [2/3]

Agsym_t * nextattr ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 569 of file gv.cpp.

References AGNODE, agnxtattr(), and agraphof().

Here is the call graph for this function:

◆ nextattr() [3/3]

Agsym_t * nextattr ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 555 of file gv.cpp.

References agnxtattr(), AGRAPH, and agroot().

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

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

◆ nextedge() [1/2]

Agedge_t * nextedge ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 461 of file gv.cpp.

References agnxtedge(), and agraphof().

Here is the call graph for this function:

◆ nextedge() [2/2]

Agedge_t * nextedge ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 417 of file gv.cpp.

References nextout().

Referenced by _wrap_nextedge__SWIG_0(), and _wrap_nextedge__SWIG_1().

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

◆ nexthead()

Agnode_t * nexthead ( Agnode_t n,
Agnode_t h 
)
extern

Definition at line 440 of file gv.cpp.

References agfindedge, aghead, AGMKOUT, agnxtout(), and agraphof().

Referenced by _wrap_nexthead().

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

◆ nextin() [1/2]

Agedge_t * nextin ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 494 of file gv.cpp.

References agnxtin(), and agraphof().

Referenced by _wrap_nextin__SWIG_0(), and _wrap_nextin__SWIG_1().

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

◆ nextin() [2/2]

Agedge_t * nextin ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 476 of file gv.cpp.

References agfstin(), aghead, agnxtin(), and agnxtnode().

Here is the call graph for this function:

◆ nextnode() [1/2]

Agnode_t * nextnode ( Agedge_t e,
Agnode_t n 
)
extern

Definition at line 542 of file gv.cpp.

References aghead, and agtail.

◆ nextnode() [2/2]

Agnode_t * nextnode ( Agraph_t g,
Agnode_t n 
)
extern

Definition at line 530 of file gv.cpp.

References agnxtnode().

Referenced by _wrap_nextnode__SWIG_0(), and _wrap_nextnode__SWIG_1().

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

◆ nextout() [1/2]

Agedge_t * nextout ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 425 of file gv.cpp.

References agnxtout(), and agraphof().

Here is the call graph for this function:

◆ nextout() [2/2]

Agedge_t * nextout ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 401 of file gv.cpp.

References agfstout(), agnxtnode(), agnxtout(), and agtail.

Referenced by _wrap_nextout__SWIG_0(), _wrap_nextout__SWIG_1(), and nextedge().

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

◆ nextsubg()

Agraph_t * nextsubg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 379 of file gv.cpp.

References agnxtsubg().

Referenced by _wrap_nextsubg().

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

◆ nextsupg()

Agraph_t * nextsupg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 388 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 509 of file gv.cpp.

References agfindedge, AGMKIN, agnxtin(), agraphof(), and agtail.

Referenced by _wrap_nexttail().

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

◆ node()

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

New nodes

Definition at line 85 of file gv.cpp.

References agnode(), and gvc.

Here is the call graph for this function:

◆ ok() [1/4]

bool ok ( Agedge_t e)
extern

Definition at line 370 of file gv.cpp.

◆ ok() [2/4]

bool ok ( Agnode_t n)
extern

Definition at line 369 of file gv.cpp.

◆ ok() [3/4]

bool ok ( Agraph_t g)
extern

Iterators

Definition at line 368 of file gv.cpp.

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

Here is the caller graph for this function:

◆ ok() [4/4]

bool ok ( Agsym_t a)
extern

Definition at line 371 of file gv.cpp.

◆ protoedge()

Agedge_t * protoedge ( Agraph_t g)
extern

Definition at line 344 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 340 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 67 of file gv.cpp.

References agread(), gv_init(), and gvc.

Referenced by _wrap_read__SWIG_0(), and _wrap_read__SWIG_1().

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

◆ read() [2/2]

Agraph_t * read ( FILE *  f)
extern

Definition at line 61 of file gv.cpp.

References agread(), gv_init(), and gvc.

Referenced by core_loadimage_ps(), iofread(), and iofread().

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

◆ readstring()

Agraph_t * readstring ( char *  string)
extern

Definition at line 55 of file gv.cpp.

References agmemread(), gv_init(), and gvc.

Referenced by _wrap_readstring().

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

◆ render() [1/4]

bool render ( Agraph_t g)
extern

Render

Definition at line 630 of file gv.cpp.

References attach_attrs().

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

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

◆ render() [2/4]

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

Definition at line 638 of file gv.cpp.

References err, format, gvc, and gvRender().

Here is the call graph for this function:

◆ render() [3/4]

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

Definition at line 664 of file gv.cpp.

References err, format, gvc, and gvRenderFilename().

Here is the call graph for this function:

◆ render() [4/4]

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

Definition at line 646 of file gv.cpp.

References err, format, gvc, and gvRender().

Here is the call graph for this function:

◆ renderchannel()

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

Definition at line 654 of file gv.cpp.

References err, format, gv_channel_writer_init(), gv_writer_reset(), gvc, and gvRender().

Referenced by _wrap_renderchannel().

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

◆ renderdata()

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

Definition at line 705 of file gv.cpp.

References err, format, gvc, and gvRenderData().

Referenced by _wrap_renderdata().

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

◆ renderresult()

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

Definition at line 696 of file gv.cpp.

References format, gv_string_writer_init(), gv_writer_reset(), gvc, and gvRender().

Referenced by _wrap_renderresult().

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

◆ rm() [1/3]

bool rm ( Agedge_t e)
extern

Definition at line 610 of file gv.cpp.

References agdelete(), aghead, agnameof(), agraphof(), agroot(), and agtail.

Here is the call graph for this function:

◆ rm() [2/3]

bool rm ( Agnode_t n)
extern

Definition at line 600 of file gv.cpp.

References agdelete(), agnameof(), and agraphof().

Here is the call graph for this function:

◆ rm() [3/3]

bool rm ( Agraph_t g)
extern

Remove graph objects

Definition at line 590 of file gv.cpp.

References agclose().

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

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

◆ rootof()

Agraph_t * rootof ( Agraph_t g)
extern

Definition at line 333 of file gv.cpp.

References agroot().

Referenced by _wrap_rootof().

Here is the call graph for this function:
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 227 of file gv.cpp.

References AGRAPH, AGTYPE, and myagxset().

Here is the call graph for this function:

◆ setv() [2/6]

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

Definition at line 235 of file gv.cpp.

References agattr(), AGEDGE, AGRAPH, agraphof(), agroot(), agtail, AGTYPE, emptystring, and myagxset().

Here is the call graph for this function:

◆ setv() [3/6]

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

Definition at line 184 of file gv.cpp.

References AGRAPH, AGTYPE, and myagxset().

Here is the call graph for this function:

◆ setv() [4/6]

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

Definition at line 192 of file gv.cpp.

References agattr(), AGNODE, agnodeattr, AGRAPH, agraphof(), agroot(), AGTYPE, emptystring, and myagxset().

Here is the call graph for this function:

◆ setv() [5/6]

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

Definition at line 152 of file gv.cpp.

References myagxset().

Here is the call graph for this function:

◆ setv() [6/6]

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

Setting attribute values

Definition at line 158 of file gv.cpp.

References agfindattr, agraphattr, agroot(), emptystring, myagxset(), and Agraph_s::root.

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 call graph for this function:
Here is the caller graph for this function:

◆ strictdigraph()

Agraph_t * strictdigraph ( char *  name)
extern

Definition at line 49 of file gv.cpp.

References agopen(), Agstrictdirected, gv_init(), and gvc.

Referenced by _wrap_strictdigraph().

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

◆ strictgraph()

Agraph_t * strictgraph ( char *  name)
extern

Definition at line 43 of file gv.cpp.

References agopen(), Agstrictundirected, gv_init(), and gvc.

Referenced by _wrap_strictgraph().

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

◆ SWIG_AsCharPtrAndSize()

◆ SWIG_FromCharPtr()

SWIGINTERNINLINE Tcl_Obj * SWIG_FromCharPtr ( const char *  cptr)

Definition at line 2010 of file gv_tcl.cpp.

References SWIG_FromCharPtrAndSize().

Referenced by _wrap_getv__SWIG_0(), _wrap_getv__SWIG_1(), _wrap_getv__SWIG_2(), _wrap_getv__SWIG_3(), _wrap_getv__SWIG_4(), _wrap_getv__SWIG_5(), _wrap_nameof__SWIG_0(), _wrap_nameof__SWIG_1(), _wrap_nameof__SWIG_2(), _wrap_renderdata(), _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 call graph for this function:
Here is the caller graph for this function:

◆ SWIG_FromCharPtrAndSize()

SWIGINTERNINLINE Tcl_Obj * SWIG_FromCharPtrAndSize ( const char *  carray,
size_t  size 
)

Definition at line 2003 of file gv_tcl.cpp.

References NULL.

Referenced by SWIG_FromCharPtr().

Here is the caller graph for this function:

◆ SWIG_init()

SWIGEXPORT int SWIG_init ( Tcl_Interp *  interp)

Definition at line 5977 of file gv_tcl.cpp.

References swig_command_info::name, swig_var_info::name, NULL, swig_commands, swig_constants, SWIG_InitializeModule(), SWIG_name, SWIG_namespace, SWIG_PropagateClientData(), SWIG_Tcl_InstallConstants(), SWIG_Tcl_InstallMethodLookupTables(), SWIG_TCL_STUBS_VERSION, swig_variables, and SWIG_version.

Here is the call graph for this function:

◆ SWIG_InitializeModule()

SWIGRUNTIME void SWIG_InitializeModule ( SWIG_INIT_CLIENT_DATA_TYPE  clientdata)

Definition at line 5733 of file gv_tcl.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_tcl.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_tcl.cpp.

Referenced by SWIG_PackDataName(), SWIG_PackVoidPtr(), SWIG_Tcl_MakePtr(), SWIG_Tcl_NewPackedObj(), and SWIG_Tcl_SetModule().

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_tcl.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_tcl.cpp.

References SWIG_PackData().

Here is the call graph for this function:

◆ SWIG_PropagateClientData()

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 5880 of file gv_tcl.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_Tcl_Acquire()

SWIGRUNTIME void SWIG_Tcl_Acquire ( void *  ptr)

Definition at line 1047 of file gv_tcl.cpp.

References SWIG_Tcl_ObjectTable().

Here is the call graph for this function:

◆ SWIG_Tcl_AddErrorMsg()

SWIGINTERNINLINE void SWIG_Tcl_AddErrorMsg ( Tcl_Interp *  interp,
const char *  mesg 
)

Definition at line 835 of file gv_tcl.cpp.

◆ SWIG_Tcl_ConvertPacked()

SWIGRUNTIME int SWIG_Tcl_ConvertPacked ( Tcl_Interp *  SWIGUNUSEDPARMinterp,
Tcl_Obj *  obj,
void *  ptr,
int  sz,
swig_type_info ty 
)

Definition at line 1175 of file gv_tcl.cpp.

References SWIG_ERROR, SWIG_OK, SWIG_TypeCheck(), and SWIG_UnpackData().

Here is the call graph for this function:

◆ SWIG_Tcl_ConvertPtr()

SWIGRUNTIMEINLINE int SWIG_Tcl_ConvertPtr ( Tcl_Interp *  interp,
Tcl_Obj *  oc,
void **  ptr,
swig_type_info ty,
int  flags 
)

Definition at line 1152 of file gv_tcl.cpp.

References flags, and SWIG_Tcl_ConvertPtrFromString().

Referenced by SWIG_Tcl_GetArgs(), and SWIG_Tcl_ObjectConstructor().

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

◆ SWIG_Tcl_ConvertPtrFromString()

SWIGRUNTIME int SWIG_Tcl_ConvertPtrFromString ( Tcl_Interp *  interp,
const char *  c,
void **  ptr,
swig_type_info ty,
int  flags 
)

Definition at line 1073 of file gv_tcl.cpp.

References flags, NULL, SWIG_Disown, SWIG_ERROR, SWIG_ERROR_RELEASE_NOT_OWNED, SWIG_NullReferenceError, SWIG_OK, SWIG_POINTER_CLEAR, SWIG_POINTER_DISOWN, SWIG_POINTER_NO_NULL, SWIG_POINTER_RELEASE, SWIG_Thisown, SWIG_TypeCast(), SWIG_TypeCheck(), SWIG_UnpackData(), and swig_instance::thisvalue.

Referenced by SWIG_Tcl_ConvertPtr().

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

◆ SWIG_Tcl_Disown()

SWIGRUNTIME int SWIG_Tcl_Disown ( void *  ptr)

Definition at line 1062 of file gv_tcl.cpp.

References SWIG_Tcl_ObjectTable().

Here is the call graph for this function:

◆ SWIG_Tcl_ErrorType()

◆ SWIG_Tcl_GetArgs()

SWIGRUNTIME int SWIG_Tcl_GetArgs ( Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[],
const char *  fmt,
  ... 
)

Definition at line 1574 of file gv_tcl.cpp.

References NULL, SWIG_OK, SWIG_snprintf, SWIG_Tcl_ConvertPtr(), and SWIG_Tcl_GetConstantObj().

Here is the call graph for this function:

◆ SWIG_Tcl_GetConstantObj()

SWIGINTERN Tcl_Obj * SWIG_Tcl_GetConstantObj ( const char *  key)

Definition at line 935 of file gv_tcl.cpp.

References key, swigconstTable, and swigconstTableinit.

Referenced by SWIG_Tcl_GetArgs().

Here is the caller graph for this function:

◆ SWIG_Tcl_GetModule()

SWIGRUNTIME swig_module_info * SWIG_Tcl_GetModule ( Tcl_Interp *  interp)

Definition at line 1235 of file gv_tcl.cpp.

References SWIG_RUNTIME_VERSION, SWIG_TYPE_TABLE_NAME, and SWIG_UnpackData().

Here is the call graph for this function:

◆ SWIG_Tcl_InstallConstants()

SWIGINTERN void SWIG_Tcl_InstallConstants ( Tcl_Interp *  interp,
swig_const_info  constants[] 
)

Definition at line 5922 of file gv_tcl.cpp.

References SWIG_NewPackedObj, SWIG_NewPointerObj, SWIG_TCL_BINARY, SWIG_TCL_POINTER, SWIG_Tcl_SetConstantObj(), swigconstTable, swigconstTableinit, type, and swig_const_info::type.

Referenced by SWIG_init().

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

◆ SWIG_Tcl_InstallMethodLookupTables()

SWIGINTERN void SWIG_Tcl_InstallMethodLookupTables ( void  )

Definition at line 5951 of file gv_tcl.cpp.

References swig_class::hashtable, swig_method::method, swig_class::methods, swig_method::name, swig_module_info::size, swig_module, type, and swig_module_info::type_initial.

Referenced by SWIG_init().

Here is the caller graph for this function:

◆ SWIG_Tcl_MakePtr()

SWIGRUNTIME void SWIG_Tcl_MakePtr ( char *  c,
void *  ptr,
swig_type_info ty,
int   SWIGUNUSEDPARMflags 
)

Definition at line 1199 of file gv_tcl.cpp.

References swig_type_info::name, and SWIG_PackData().

Here is the call graph for this function:

◆ SWIG_Tcl_MethodCommand()

SWIGRUNTIME int SWIG_Tcl_MethodCommand ( ClientData  clientData,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  _objv[] 
)

◆ SWIG_Tcl_NewInstanceObj()

SWIGRUNTIME Tcl_Obj * SWIG_Tcl_NewInstanceObj ( Tcl_Interp *  interp,
void *  thisvalue,
swig_type_info type,
int  flags 
)

Definition at line 1458 of file gv_tcl.cpp.

References swig_instance::classptr, swig_instance::cmdtok, swig_instance::destroy, flags, malloc(), SWIG_Acquire, SWIG_MethodCommand, SWIG_NewPointerObj, SWIG_ObjectDelete, swig_instance::thisptr, swig_instance::thisvalue, and type.

Here is the call graph for this function:

◆ SWIG_Tcl_NewPackedObj()

SWIGRUNTIME Tcl_Obj * SWIG_Tcl_NewPackedObj ( void *  ptr,
int  sz,
swig_type_info type 
)

Definition at line 1220 of file gv_tcl.cpp.

References SWIG_PackData(), and type.

Here is the call graph for this function:

◆ SWIG_Tcl_NewPointerObj()

SWIGRUNTIMEINLINE Tcl_Obj * SWIG_Tcl_NewPointerObj ( void *  ptr,
swig_type_info type,
int  flags 
)

Definition at line 1211 of file gv_tcl.cpp.

References flags, SWIG_BUFFER_SIZE, SWIG_MakePtr, and type.

◆ SWIG_Tcl_ObjectConstructor()

SWIGRUNTIME int SWIG_Tcl_ObjectConstructor ( ClientData  clientData,
Tcl_Interp *  interp,
int  objc,
Tcl_Obj *const  objv[] 
)

Definition at line 1494 of file gv_tcl.cpp.

References swig_instance::classptr, swig_instance::cmdtok, swig_class::constructor, swig_instance::destroy, malloc(), s1(), SWIG_Acquire, SWIG_MethodCommand, SWIG_ObjectDelete, SWIG_OK, SWIG_Tcl_ConvertPtr(), swig_instance::thisptr, swig_instance::thisvalue, and swig_class::type.

Here is the call graph for this function:

◆ SWIG_Tcl_ObjectDelete()

SWIGRUNTIME void SWIG_Tcl_ObjectDelete ( ClientData  clientData)

Definition at line 1265 of file gv_tcl.cpp.

References swig_instance::classptr, swig_instance::destroy, swig_class::destructor, free(), SWIG_Disown, swig_instance::thisptr, and swig_instance::thisvalue.

Here is the call graph for this function:

◆ SWIG_Tcl_ObjectTable()

SWIGRUNTIME Tcl_HashTable * SWIG_Tcl_ObjectTable ( void  )

Definition at line 1035 of file gv_tcl.cpp.

Referenced by SWIG_Tcl_Acquire(), SWIG_Tcl_Disown(), and SWIG_Tcl_Thisown().

Here is the caller graph for this function:

◆ SWIG_Tcl_PointerTypeFromString()

SWIGRUNTIME char * SWIG_Tcl_PointerTypeFromString ( char *  c)

Definition at line 1158 of file gv_tcl.cpp.

◆ SWIG_Tcl_SetConstantObj()

SWIGINTERN void SWIG_Tcl_SetConstantObj ( Tcl_Interp *  interp,
const char *  name,
Tcl_Obj *  obj 
)

Definition at line 928 of file gv_tcl.cpp.

References NULL, and swigconstTable.

Referenced by SWIG_Tcl_InstallConstants().

Here is the caller graph for this function:

◆ SWIG_Tcl_SetErrorMsg()

SWIGINTERN void SWIG_Tcl_SetErrorMsg ( Tcl_Interp *  interp,
const char *  ctype,
const char *  mesg 
)

Definition at line 822 of file gv_tcl.cpp.

References NULL.

◆ SWIG_Tcl_SetErrorObj()

SWIGINTERN void SWIG_Tcl_SetErrorObj ( Tcl_Interp *  interp,
const char *  ctype,
Tcl_Obj *  obj 
)

Definition at line 814 of file gv_tcl.cpp.

References NULL.

◆ SWIG_Tcl_SetModule()

SWIGRUNTIME void SWIG_Tcl_SetModule ( Tcl_Interp *  interp,
swig_module_info module 
)

Definition at line 1249 of file gv_tcl.cpp.

References SWIG_BUFFER_SIZE, SWIG_PackData(), SWIG_RUNTIME_VERSION, and SWIG_TYPE_TABLE_NAME.

Here is the call graph for this function:

◆ SWIG_Tcl_Thisown()

SWIGRUNTIME int SWIG_Tcl_Thisown ( void *  ptr)

Definition at line 1053 of file gv_tcl.cpp.

References SWIG_Tcl_ObjectTable().

Here is the call 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_tcl.cpp.

References swig_cast_info::converter.

Referenced by SWIG_Tcl_ConvertPtrFromString().

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_tcl.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(), SWIG_Tcl_ConvertPacked(), and SWIG_Tcl_ConvertPtrFromString().

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 
)

◆ SWIG_TypeClientData()

SWIGRUNTIME void SWIG_TypeClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 546 of file gv_tcl.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_tcl.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_tcl.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_tcl.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_tcl.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_tcl.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_tcl.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_tcl.cpp.

References s::name, NULL, and type.

◆ 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_tcl.cpp.

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

Referenced by SWIG_Tcl_MethodCommand().

Here is the call graph for this function:
Here is the caller 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_tcl.cpp.

Referenced by SWIG_Tcl_ConvertPacked(), SWIG_Tcl_ConvertPtrFromString(), SWIG_Tcl_GetModule(), 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_tcl.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_tcl.cpp.

References SWIG_UnpackData().

Here is the call graph for this function:

◆ tailof()

Agnode_t * tailof ( Agedge_t e)
extern

Definition at line 301 of file gv.cpp.

References AGRAPH, agtail, and AGTYPE.

Referenced by _wrap_tailof().

Here is the caller graph for this function:

◆ tred()

bool tred ( Agraph_t g)
extern

Definition at line 734 of file gv.cpp.

References err, and gvToolTred().

Referenced by _wrap_tred().

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

◆ write() [1/2]

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

Definition at line 723 of file gv.cpp.

References agwrite(), and err.

Referenced by _wrap_write__SWIG_0(), and _wrap_write__SWIG_1().

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

◆ write() [2/2]

bool write ( Agraph_t g,
FILE *  f 
)
extern

Definition at line 716 of file gv.cpp.

References agwrite(), and err.

Here is the call graph for this function:

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 5654 of file gv_tcl.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 5655 of file gv_tcl.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 5656 of file gv_tcl.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 5657 of file gv_tcl.cpp.

◆ _swigc__p_char

swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 5659 of file gv_tcl.cpp.

◆ _swigc__p_FILE

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

Definition at line 5658 of file gv_tcl.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 5638 of file gv_tcl.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 5639 of file gv_tcl.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 5640 of file gv_tcl.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 5641 of file gv_tcl.cpp.

◆ _swigt__p_char

swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}
static

Definition at line 5643 of file gv_tcl.cpp.

◆ _swigt__p_FILE

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

Definition at line 5642 of file gv_tcl.cpp.

◆ swig_cast_initial

swig_cast_info* swig_cast_initial[]
static
Initial value:
= {
}
static swig_cast_info _swigc__p_Agraph_t[]
Definition gv_tcl.cpp:5656
static swig_cast_info _swigc__p_FILE[]
Definition gv_tcl.cpp:5658
static swig_cast_info _swigc__p_Agnode_t[]
Definition gv_tcl.cpp:5655
static swig_cast_info _swigc__p_char[]
Definition gv_tcl.cpp:5659
static swig_cast_info _swigc__p_Agedge_t[]
Definition gv_tcl.cpp:5654
static swig_cast_info _swigc__p_Agsym_t[]
Definition gv_tcl.cpp:5657

Definition at line 5661 of file gv_tcl.cpp.

Referenced by SWIG_InitializeModule().

◆ swig_commands

swig_command_info swig_commands[]
static

Definition at line 5576 of file gv_tcl.cpp.

Referenced by SWIG_init().

◆ swig_constants

swig_const_info swig_constants[]
static
Initial value:
= {
{0,0,0,0,0,0}
}

Definition at line 5632 of file gv_tcl.cpp.

Referenced by SWIG_init().

◆ swig_module

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

◆ swig_type_initial

swig_type_info* swig_type_initial[]
static
Initial value:
= {
}
static swig_type_info _swigt__p_Agsym_t
Definition gv_tcl.cpp:5641
static swig_type_info _swigt__p_Agraph_t
Definition gv_tcl.cpp:5640
static swig_type_info _swigt__p_FILE
Definition gv_tcl.cpp:5642
static swig_type_info _swigt__p_char
Definition gv_tcl.cpp:5643
static swig_type_info _swigt__p_Agnode_t
Definition gv_tcl.cpp:5639
static swig_type_info _swigt__p_Agedge_t
Definition gv_tcl.cpp:5638

Definition at line 5645 of file gv_tcl.cpp.

Referenced by SWIG_InitializeModule().

◆ swig_types

swig_type_info* swig_types[7]
static

Definition at line 1690 of file gv_tcl.cpp.

◆ swig_variables

swig_var_info swig_variables[]
static
Initial value:
= {
{0,0,0,0}
}

Definition at line 5628 of file gv_tcl.cpp.

Referenced by SWIG_init().

◆ swigconstTable

Tcl_HashTable swigconstTable
static

◆ swigconstTableinit

int swigconstTableinit = 0
static

Definition at line 925 of file gv_tcl.cpp.

Referenced by SWIG_Tcl_GetConstantObj(), and SWIG_Tcl_InstallConstants().