Graphviz 12.1.0~dev.20240716.0947
Loading...
Searching...
No Matches
gv_lua.cpp File Reference
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include <stdlib.h>
#include <assert.h>
#include "lrodefs.h"
#include "lrotable.h"
#include "config.h"
#include <gvc/gvc.h>
Include dependency graph for gv_lua.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_lua_var_info
 
struct  swig_lua_attribute
 
struct  swig_lua_namespace
 
struct  swig_lua_class
 
struct  swig_lua_userdata
 
struct  swig_lua_rawdata
 
struct  swig::LANGUAGE_OBJ
 

Namespaces

namespace  swig
 

Macros

#define SWIG_VERSION   0x040200
 
#define SWIGLUA
 
#define SWIG_LUA_TARGET   SWIG_LUA_FLAVOR_LUA
 
#define SWIG_LUA_MODULE_GLOBAL
 
#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_LUA_FLAVOR_LUA   1
 
#define SWIG_LUA_FLAVOR_ELUA   2
 
#define SWIG_LUA_FLAVOR_ELUAC   3
 
#define SWIG_LUA_CONSTTAB_INT(B, C)   LSTRKEY(B), LNUMVAL(C)
 
#define SWIG_LUA_CONSTTAB_FLOAT(B, C)   LSTRKEY(B), LNUMVAL(C)
 
#define SWIG_LUA_CONSTTAB_STRING(B, C)   LSTRKEY(B), LSTRVAL(C)
 
#define SWIG_LUA_CONSTTAB_CHAR(B, C)   LSTRKEY(B), LNUMVAL(C)
 
#define SWIG_LUA_CONSTTAB_POINTER(B, C, D)   LSTRKEY(B), LNILVAL
 
#define SWIG_LUA_CONSTTAB_BINARY(B, S, C, D)   LSTRKEY(B), LNILVAL
 
#define LRO_STRVAL(v)   {{.p = (char *) v}, LUA_TSTRING}
 
#define LSTRVAL   LRO_STRVAL
 
#define MIN_OPT_LEVEL   2
 
#define lua_rawlen   lua_strlen
 
#define lua_pushglobaltable(L)   lua_pushvalue(L, LUA_GLOBALSINDEX)
 
#define lua_absindex(L, i)   ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1)
 
#define lua_rawsetp(L, index, ptr)
 
#define lua_rawgetp(L, index, ptr)
 
#define SWIG_LUA_INT   1
 
#define SWIG_LUA_FLOAT   2
 
#define SWIG_LUA_STRING   3
 
#define SWIG_LUA_POINTER   4
 
#define SWIG_LUA_BINARY   5
 
#define SWIG_LUA_CHAR   6
 
#define SWIG_NewPointerObj(L, ptr, type, owner)   SWIG_Lua_NewPointerObj(L, (void *)ptr, type, owner)
 
#define SWIG_ConvertPtr(L, idx, ptr, type, flags)   SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags)
 
#define SWIG_MustGetPtr(L, idx, type, flags, argnum, fnname)   SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)
 
#define SWIG_ConvertMember(L, idx, ptr, sz, ty)   SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty)
 
#define SWIG_NewMemberObj(L, ptr, sz, type)   SWIG_Lua_NewPackedObj(L, ptr, sz, type)
 
#define SWIG_GetModule(clientdata)   SWIG_Lua_GetModule((lua_State*)(clientdata))
 
#define SWIG_SetModule(clientdata, pointer)   SWIG_Lua_SetModule((lua_State*) (clientdata), pointer)
 
#define SWIG_MODULE_CLIENTDATA_TYPE   lua_State*
 
#define SWIG_contract_assert(expr, msg)    do { if (!(expr)) { SWIG_Lua_pusherrstring(L, (char *) msg); goto fail; } } while (0)
 
#define SWIG_fail   {goto fail;}
 
#define SWIG_fail_arg(func_name, argnum, type)
 
#define SWIG_fail_ptr(func_name, argnum, type)    SWIG_fail_arg(func_name,argnum,(type && type->str)?type->str:"void*")
 
#define SWIG_check_num_args(func_name, a, b)
 
#define SWIG_Lua_get_table(L, n)    (lua_pushstring(L, n), lua_rawget(L,-2))
 
#define SWIG_Lua_add_function(L, n, f)
 
#define SWIG_Lua_add_boolean(L, n, b)
 
#define SWIG_isptrtype(L, I)   (lua_isuserdata(L,I) || lua_isnil(L,I))
 
#define SWIG_DOSTRING_FAIL(S)   fprintf(stderr,"%s\n",S)
 
#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 SWIG_TypeQuery(name)   SWIG_TypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_MangledTypeQuery(name)   SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_name   "gv"
 
#define SWIG_init   luaopen_gv
 
#define SWIG_init_user   luaopen_gv_user
 
#define SWIG_LUACODE   luaopen_gv_luacode
 
#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 const LUA_REG_TYPE swig_lua_method
 
typedef const LUA_REG_TYPE swig_lua_const_info
 
typedef struct swig_lua_namespace swig_lua_namespace
 
typedef struct swig_lua_class swig_lua_class
 
typedef int(* swig_lua_base_iterator_func) (lua_State *, swig_type_info *, int, int *ret)
 

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)
 
static const char *() lua_tolstring (lua_State *L, int idx, size_t *len)
 
SWIGRUNTIME void SWIG_Lua_pusherrstring (lua_State *L, const char *str)
 
SWIGRUNTIME void SWIG_Lua_pushferrstring (lua_State *L, const char *fmt,...)
 
SWIGRUNTIME swig_module_infoSWIG_Lua_GetModule (lua_State *L)
 
SWIGRUNTIME void SWIG_Lua_SetModule (lua_State *L, swig_module_info *module)
 
SWIGINTERN int SWIG_Lua_set_immutable (lua_State *L)
 
SWIGINTERN int SWIG_Lua_namespace_get (lua_State *L)
 
SWIGINTERN int SWIG_Lua_namespace_set (lua_State *L)
 
SWIGINTERN void SWIG_Lua_InstallConstants (lua_State *L, swig_lua_const_info constants[])
 
SWIGINTERN void SWIG_Lua_add_variable (lua_State *L, const char *name, lua_CFunction getFn, lua_CFunction setFn)
 
SWIGINTERN void SWIG_Lua_class_register (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN int SWIG_Lua_add_namespace_details (lua_State *L, swig_lua_namespace *ns)
 
SWIGINTERN void SWIG_Lua_add_namespace_classes (lua_State *L, swig_lua_namespace *ns)
 
SWIGINTERN void SWIG_Lua_namespace_register (lua_State *L, swig_lua_namespace *ns, int reg)
 
SWIGINTERN void SWIG_Lua_get_class_metatable (lua_State *L, const char *cname)
 
SWIGINTERN int SWIG_Lua_iterate_bases (lua_State *L, swig_type_info *SWIGUNUSED swig_type, int first_arg, swig_lua_base_iterator_func func, int *const ret)
 
SWIGINTERN int SWIG_Lua_class_do_get_item (lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_do_get (lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_get (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_do_set (lua_State *L, swig_type_info *type, int first_arg, int *ret)
 
SWIGINTERN int SWIG_Lua_class_set (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_destruct (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_tostring (lua_State *L)
 
SWIGINTERN int SWIG_Lua_class_disown (lua_State *L)
 
SWIGRUNTIME int SWIG_Lua_class_equal (lua_State *L)
 
SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods (lua_State *L)
 
SWIGINTERN void SWIG_Lua_create_class_registry (lua_State *L)
 
SWIGINTERN void SWIG_Lua_get_class_registry (lua_State *L)
 
SWIGINTERN void SWIG_Lua_get_inheritable_metamethods (lua_State *L)
 
SWIGINTERN void SWIG_Lua_init_base_class (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_static_details (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_user_metamethods (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_add_class_instance_details (lua_State *L, swig_lua_class *clss)
 
SWIGRUNTIME int SWIG_Lua_resolve_metamethod (lua_State *L)
 
SWIGINTERN int SWIG_Lua_do_resolve_metamethod (lua_State *L, const swig_lua_class *clss, int metamethod_name_idx, int skip_check)
 
SWIGINTERN int SWIG_Lua_add_class_user_metamethod (lua_State *L, swig_lua_class *clss, const int metatable_index)
 
SWIGINTERN void SWIG_Lua_class_register_static (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_class_register_instance (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_elua_class_register_instance (lua_State *L, swig_lua_class *clss)
 
SWIGINTERN void SWIG_Lua_AddMetatable (lua_State *L, swig_type_info *type)
 
SWIGRUNTIME void SWIG_Lua_NewPointerObj (lua_State *L, void *ptr, swig_type_info *type, int own)
 
SWIGRUNTIME int SWIG_Lua_ConvertPtr (lua_State *L, int index, void **ptr, swig_type_info *type, int flags)
 
SWIGRUNTIME void * SWIG_Lua_MustGetPtr (lua_State *L, int index, swig_type_info *type, int flags, int argnum, const char *func_name)
 
SWIGRUNTIME void SWIG_Lua_NewPackedObj (lua_State *L, void *ptr, size_t size, swig_type_info *type)
 
SWIGRUNTIME int SWIG_Lua_ConvertPacked (lua_State *L, int index, void *ptr, size_t size, swig_type_info *type)
 
SWIGRUNTIME const char * SWIG_Lua_typename (lua_State *L, int tp)
 
SWIGRUNTIME int SWIG_Lua_type (lua_State *L)
 
SWIGINTERN int SWIG_Lua_dostring (lua_State *L, const char *str)
 
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_lua_isnilstring (lua_State *L, int idx)
 
static int _wrap_graph__SWIG_0 (lua_State *L)
 
static int _wrap_digraph (lua_State *L)
 
static int _wrap_strictgraph (lua_State *L)
 
static int _wrap_strictdigraph (lua_State *L)
 
static int _wrap_readstring (lua_State *L)
 
static int _wrap_read__SWIG_0 (lua_State *L)
 
static int _wrap_read__SWIG_1 (lua_State *L)
 
static int _wrap_read (lua_State *L)
 
static int _wrap_graph__SWIG_1 (lua_State *L)
 
static int _wrap_graph (lua_State *L)
 
static int _wrap_node (lua_State *L)
 
static int _wrap_edge__SWIG_0 (lua_State *L)
 
static int _wrap_edge__SWIG_1 (lua_State *L)
 
static int _wrap_edge__SWIG_2 (lua_State *L)
 
static int _wrap_edge__SWIG_3 (lua_State *L)
 
static int _wrap_edge (lua_State *L)
 
static int _wrap_setv__SWIG_0 (lua_State *L)
 
static int _wrap_setv__SWIG_1 (lua_State *L)
 
static int _wrap_setv__SWIG_2 (lua_State *L)
 
static int _wrap_setv__SWIG_3 (lua_State *L)
 
static int _wrap_setv__SWIG_4 (lua_State *L)
 
static int _wrap_setv__SWIG_5 (lua_State *L)
 
static int _wrap_setv (lua_State *L)
 
static int _wrap_getv__SWIG_0 (lua_State *L)
 
static int _wrap_getv__SWIG_1 (lua_State *L)
 
static int _wrap_getv__SWIG_2 (lua_State *L)
 
static int _wrap_getv__SWIG_3 (lua_State *L)
 
static int _wrap_getv__SWIG_4 (lua_State *L)
 
static int _wrap_getv__SWIG_5 (lua_State *L)
 
static int _wrap_getv (lua_State *L)
 
static int _wrap_nameof__SWIG_0 (lua_State *L)
 
static int _wrap_nameof__SWIG_1 (lua_State *L)
 
static int _wrap_nameof__SWIG_2 (lua_State *L)
 
static int _wrap_nameof (lua_State *L)
 
static int _wrap_findsubg (lua_State *L)
 
static int _wrap_findnode (lua_State *L)
 
static int _wrap_findedge (lua_State *L)
 
static int _wrap_findattr__SWIG_0 (lua_State *L)
 
static int _wrap_findattr__SWIG_1 (lua_State *L)
 
static int _wrap_findattr__SWIG_2 (lua_State *L)
 
static int _wrap_findattr (lua_State *L)
 
static int _wrap_headof (lua_State *L)
 
static int _wrap_tailof (lua_State *L)
 
static int _wrap_graphof__SWIG_0 (lua_State *L)
 
static int _wrap_graphof__SWIG_1 (lua_State *L)
 
static int _wrap_graphof__SWIG_2 (lua_State *L)
 
static int _wrap_graphof (lua_State *L)
 
static int _wrap_rootof (lua_State *L)
 
static int _wrap_protonode (lua_State *L)
 
static int _wrap_protoedge (lua_State *L)
 
static int _wrap_ok__SWIG_0 (lua_State *L)
 
static int _wrap_ok__SWIG_1 (lua_State *L)
 
static int _wrap_ok__SWIG_2 (lua_State *L)
 
static int _wrap_ok__SWIG_3 (lua_State *L)
 
static int _wrap_ok (lua_State *L)
 
static int _wrap_firstsubg (lua_State *L)
 
static int _wrap_nextsubg (lua_State *L)
 
static int _wrap_firstsupg (lua_State *L)
 
static int _wrap_nextsupg (lua_State *L)
 
static int _wrap_firstedge__SWIG_0 (lua_State *L)
 
static int _wrap_nextedge__SWIG_0 (lua_State *L)
 
static int _wrap_firstout__SWIG_0 (lua_State *L)
 
static int _wrap_nextout__SWIG_0 (lua_State *L)
 
static int _wrap_firstedge__SWIG_1 (lua_State *L)
 
static int _wrap_firstedge (lua_State *L)
 
static int _wrap_nextedge__SWIG_1 (lua_State *L)
 
static int _wrap_nextedge (lua_State *L)
 
static int _wrap_firstout__SWIG_1 (lua_State *L)
 
static int _wrap_firstout (lua_State *L)
 
static int _wrap_nextout__SWIG_1 (lua_State *L)
 
static int _wrap_nextout (lua_State *L)
 
static int _wrap_firsthead (lua_State *L)
 
static int _wrap_nexthead (lua_State *L)
 
static int _wrap_firstin__SWIG_0 (lua_State *L)
 
static int _wrap_nextin__SWIG_0 (lua_State *L)
 
static int _wrap_firstin__SWIG_1 (lua_State *L)
 
static int _wrap_firstin (lua_State *L)
 
static int _wrap_nextin__SWIG_1 (lua_State *L)
 
static int _wrap_nextin (lua_State *L)
 
static int _wrap_firsttail (lua_State *L)
 
static int _wrap_nexttail (lua_State *L)
 
static int _wrap_firstnode__SWIG_0 (lua_State *L)
 
static int _wrap_nextnode__SWIG_0 (lua_State *L)
 
static int _wrap_firstnode__SWIG_1 (lua_State *L)
 
static int _wrap_firstnode (lua_State *L)
 
static int _wrap_nextnode__SWIG_1 (lua_State *L)
 
static int _wrap_nextnode (lua_State *L)
 
static int _wrap_firstattr__SWIG_0 (lua_State *L)
 
static int _wrap_nextattr__SWIG_0 (lua_State *L)
 
static int _wrap_firstattr__SWIG_1 (lua_State *L)
 
static int _wrap_nextattr__SWIG_1 (lua_State *L)
 
static int _wrap_firstattr__SWIG_2 (lua_State *L)
 
static int _wrap_firstattr (lua_State *L)
 
static int _wrap_nextattr__SWIG_2 (lua_State *L)
 
static int _wrap_nextattr (lua_State *L)
 
static int _wrap_rm__SWIG_0 (lua_State *L)
 
static int _wrap_rm__SWIG_1 (lua_State *L)
 
static int _wrap_rm__SWIG_2 (lua_State *L)
 
static int _wrap_rm (lua_State *L)
 
static int _wrap_layout (lua_State *L)
 
static int _wrap_render__SWIG_0 (lua_State *L)
 
static int _wrap_render__SWIG_1 (lua_State *L)
 
static int _wrap_render__SWIG_2 (lua_State *L)
 
static int _wrap_render__SWIG_3 (lua_State *L)
 
static int _wrap_render (lua_State *L)
 
static int _wrap_renderresult (lua_State *L)
 
static int _wrap_renderchannel (lua_State *L)
 
static int _wrap_renderdata (lua_State *L)
 
static int _wrap_write__SWIG_0 (lua_State *L)
 
static int _wrap_write__SWIG_1 (lua_State *L)
 
static int _wrap_write (lua_State *L)
 
static int _wrap_tred (lua_State *L)
 
SWIGRUNTIME void SWIG_InitializeModule (SWIG_INIT_CLIENT_DATA_TYPE clientdata)
 
SWIGRUNTIME void SWIG_PropagateClientData (void)
 
void SWIG_init_user (lua_State *L)
 
LUALIB_API int SWIG_init (lua_State *L)
 

Variables

static swig_type_infoswig_types [6]
 
static swig_module_info swig_module = {swig_types, 5, 0, 0, 0, 0}
 
static swig_lua_attribute swig_SwigModule_attributes []
 
static swig_lua_const_info swig_SwigModule_constants []
 
static swig_lua_method swig_SwigModule_methods []
 
static swig_lua_classswig_SwigModule_classes []
 
static swig_lua_namespaceswig_SwigModule_namespaces []
 
static swig_lua_namespace swig_SwigModule
 
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_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_infoswig_cast_initial []
 
const char * SWIG_LUACODE
 

Macro Definition Documentation

◆ LRO_STRVAL

#define LRO_STRVAL (   v)    {{.p = (char *) v}, LUA_TSTRING}

Definition at line 877 of file gv_lua.cpp.

◆ LSTRVAL

#define LSTRVAL   LRO_STRVAL

Definition at line 878 of file gv_lua.cpp.

◆ lua_absindex

#define lua_absindex (   L,
 
)    ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1)

Definition at line 935 of file gv_lua.cpp.

◆ lua_pushglobaltable

#define lua_pushglobaltable (   L)    lua_pushvalue(L, LUA_GLOBALSINDEX)

Definition at line 930 of file gv_lua.cpp.

◆ lua_rawgetp

#define lua_rawgetp (   L,
  index,
  ptr 
)
Value:
lua_pushlightuserdata(L,(void*)(ptr));\
lua_rawget(L,index);
static Dt_t * L
Definition gmlparse.c:92

Definition at line 945 of file gv_lua.cpp.

◆ lua_rawlen

#define lua_rawlen   lua_strlen

Definition at line 906 of file gv_lua.cpp.

◆ lua_rawsetp

#define lua_rawsetp (   L,
  index,
  ptr 
)
Value:
lua_pushlightuserdata(L,(void*)(ptr));\
lua_insert(L,-2);\
lua_rawset(L,index);

Definition at line 940 of file gv_lua.cpp.

◆ MIN_OPT_LEVEL

#define MIN_OPT_LEVEL   2

Definition at line 886 of file gv_lua.cpp.

◆ SWIG_AddCast

#define SWIG_AddCast (   r)    (r)

Definition at line 324 of file gv_lua.cpp.

◆ SWIG_AddNewMask

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

Definition at line 300 of file gv_lua.cpp.

◆ SWIG_AddTmpMask

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

Definition at line 303 of file gv_lua.cpp.

◆ SWIG_ArgError

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

Definition at line 286 of file gv_lua.cpp.

◆ SWIG_AttributeError

#define SWIG_AttributeError   -11

Definition at line 755 of file gv_lua.cpp.

◆ SWIG_BADOBJ

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 295 of file gv_lua.cpp.

◆ SWIG_BUFFER_SIZE

#define SWIG_BUFFER_SIZE   1024

Definition at line 184 of file gv_lua.cpp.

◆ SWIG_CAST_NEW_MEMORY

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 189 of file gv_lua.cpp.

◆ SWIG_CASTRANKLIMIT

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 289 of file gv_lua.cpp.

◆ SWIG_check_num_args

#define SWIG_check_num_args (   func_name,
  a,
 
)
Value:
if (lua_gettop(L)<a || lua_gettop(L)>b) \
{SWIG_Lua_pushferrstring(L,"Error in %s expected %d..%d args, got %d",func_name,a,b,lua_gettop(L));\
goto fail;}
SWIGRUNTIME void SWIG_Lua_pushferrstring(lua_State *L, const char *fmt,...)
Definition gv_lua.cpp:970

Definition at line 1094 of file gv_lua.cpp.

◆ SWIG_CheckState

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

Definition at line 325 of file gv_lua.cpp.

◆ SWIG_contract_assert

#define SWIG_contract_assert (   expr,
  msg 
)     do { if (!(expr)) { SWIG_Lua_pusherrstring(L, (char *) msg); goto fail; } } while (0)

Definition at line 1082 of file gv_lua.cpp.

◆ SWIG_ConvertMember

#define SWIG_ConvertMember (   L,
  idx,
  ptr,
  sz,
  ty 
)    SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty)

Definition at line 1073 of file gv_lua.cpp.

◆ SWIG_ConvertPtr

#define SWIG_ConvertPtr (   L,
  idx,
  ptr,
  type,
  flags 
)    SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags)

Definition at line 1070 of file gv_lua.cpp.

◆ SWIG_DelNewMask

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

Definition at line 301 of file gv_lua.cpp.

◆ SWIG_DelTmpMask

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

Definition at line 304 of file gv_lua.cpp.

◆ SWIG_DivisionByZero

#define SWIG_DivisionByZero   -6

Definition at line 750 of file gv_lua.cpp.

◆ SWIG_DOSTRING_FAIL

#define SWIG_DOSTRING_FAIL (   S)    fprintf(stderr,"%s\n",S)

Definition at line 2695 of file gv_lua.cpp.

◆ SWIG_ERROR

#define SWIG_ERROR   (-1)

Definition at line 279 of file gv_lua.cpp.

◆ SWIG_ERROR_RELEASE_NOT_OWNED

#define SWIG_ERROR_RELEASE_NOT_OWNED   (-200)

Definition at line 283 of file gv_lua.cpp.

◆ SWIG_fail

#define SWIG_fail   {goto fail;}

Definition at line 1087 of file gv_lua.cpp.

◆ SWIG_fail_arg

#define SWIG_fail_arg (   func_name,
  argnum,
  type 
)
Value:
{SWIG_Lua_pushferrstring(L,"Error in %s (arg %d), expected '%s' got '%s'",\
func_name,argnum,type,SWIG_Lua_typename(L,argnum));\
goto fail;}
expr procedure type
Definition exparse.y:211
SWIGRUNTIME const char * SWIG_Lua_typename(lua_State *L, int tp)
Definition gv_lua.cpp:2619

Definition at line 1088 of file gv_lua.cpp.

◆ SWIG_fail_ptr

#define SWIG_fail_ptr (   func_name,
  argnum,
  type 
)     SWIG_fail_arg(func_name,argnum,(type && type->str)?type->str:"void*")

Definition at line 1092 of file gv_lua.cpp.

◆ SWIG_GetModule

#define SWIG_GetModule (   clientdata)    SWIG_Lua_GetModule((lua_State*)(clientdata))

Definition at line 1077 of file gv_lua.cpp.

◆ SWIG_IndexError

#define SWIG_IndexError   -4

Definition at line 748 of file gv_lua.cpp.

◆ SWIG_init

SWIGEXPORT void SWIG_init (   void)    luaopen_gv

Definition at line 2741 of file gv_lua.cpp.

◆ SWIG_INIT_CLIENT_DATA_TYPE

#define SWIG_INIT_CLIENT_DATA_TYPE   void *

Definition at line 7159 of file gv_lua.cpp.

◆ SWIG_init_user

#define SWIG_init_user   luaopen_gv_user

Definition at line 2742 of file gv_lua.cpp.

◆ SWIG_IOError

#define SWIG_IOError   -2

Definition at line 746 of file gv_lua.cpp.

◆ SWIG_IsNewObj

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

Definition at line 302 of file gv_lua.cpp.

◆ SWIG_IsOK

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

Definition at line 285 of file gv_lua.cpp.

◆ SWIG_isptrtype

#define SWIG_isptrtype (   L,
  I 
)    (lua_isuserdata(L,I) || lua_isnil(L,I))

Definition at line 1114 of file gv_lua.cpp.

◆ SWIG_IsTmpObj

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

Definition at line 305 of file gv_lua.cpp.

◆ SWIG_Lua_add_boolean

#define SWIG_Lua_add_boolean (   L,
  n,
 
)
Value:
(lua_pushstring(L, n), \
lua_pushboolean(L, b), \
lua_rawset(L,-3))

Definition at line 1108 of file gv_lua.cpp.

◆ SWIG_Lua_add_function

#define SWIG_Lua_add_function (   L,
  n,
 
)
Value:
(lua_pushstring(L, n), \
lua_pushcfunction(L, f), \
lua_rawset(L,-3))

Definition at line 1103 of file gv_lua.cpp.

◆ SWIG_LUA_BINARY

#define SWIG_LUA_BINARY   5

Definition at line 989 of file gv_lua.cpp.

◆ SWIG_LUA_CHAR

#define SWIG_LUA_CHAR   6

Definition at line 990 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_BINARY

#define SWIG_LUA_CONSTTAB_BINARY (   B,
  S,
  C,
  D 
)    LSTRKEY(B), LNILVAL

Definition at line 862 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_CHAR

#define SWIG_LUA_CONSTTAB_CHAR (   B,
  C 
)    LSTRKEY(B), LNUMVAL(C)

Definition at line 852 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_FLOAT

#define SWIG_LUA_CONSTTAB_FLOAT (   B,
  C 
)    LSTRKEY(B), LNUMVAL(C)

Definition at line 850 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_INT

#define SWIG_LUA_CONSTTAB_INT (   B,
  C 
)    LSTRKEY(B), LNUMVAL(C)

Definition at line 849 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_POINTER

#define SWIG_LUA_CONSTTAB_POINTER (   B,
  C,
  D 
)    LSTRKEY(B), LNILVAL

Definition at line 857 of file gv_lua.cpp.

◆ SWIG_LUA_CONSTTAB_STRING

#define SWIG_LUA_CONSTTAB_STRING (   B,
  C 
)    LSTRKEY(B), LSTRVAL(C)

Definition at line 851 of file gv_lua.cpp.

◆ SWIG_LUA_FLAVOR_ELUA

#define SWIG_LUA_FLAVOR_ELUA   2

Definition at line 782 of file gv_lua.cpp.

◆ SWIG_LUA_FLAVOR_ELUAC

#define SWIG_LUA_FLAVOR_ELUAC   3

Definition at line 783 of file gv_lua.cpp.

◆ SWIG_LUA_FLAVOR_LUA

#define SWIG_LUA_FLAVOR_LUA   1

Definition at line 781 of file gv_lua.cpp.

◆ SWIG_LUA_FLOAT

#define SWIG_LUA_FLOAT   2

Definition at line 986 of file gv_lua.cpp.

◆ SWIG_Lua_get_table

#define SWIG_Lua_get_table (   L,
 
)     (lua_pushstring(L, n), lua_rawget(L,-2))

Definition at line 1100 of file gv_lua.cpp.

◆ SWIG_LUA_INT

#define SWIG_LUA_INT   1

Definition at line 985 of file gv_lua.cpp.

◆ SWIG_LUA_MODULE_GLOBAL

#define SWIG_LUA_MODULE_GLOBAL

Definition at line 13 of file gv_lua.cpp.

◆ SWIG_LUA_POINTER

#define SWIG_LUA_POINTER   4

Definition at line 988 of file gv_lua.cpp.

◆ SWIG_LUA_STRING

#define SWIG_LUA_STRING   3

Definition at line 987 of file gv_lua.cpp.

◆ SWIG_LUA_TARGET

#define SWIG_LUA_TARGET   SWIG_LUA_FLAVOR_LUA

Definition at line 12 of file gv_lua.cpp.

◆ SWIG_LUACODE

#define SWIG_LUACODE   luaopen_gv_luacode

Definition at line 2744 of file gv_lua.cpp.

◆ SWIG_MangledTypeQuery

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

Definition at line 2736 of file gv_lua.cpp.

◆ SWIG_MemoryError

#define SWIG_MemoryError   -12

Definition at line 756 of file gv_lua.cpp.

◆ SWIG_MODULE_CLIENTDATA_TYPE

#define SWIG_MODULE_CLIENTDATA_TYPE   lua_State*

Definition at line 1079 of file gv_lua.cpp.

◆ SWIG_MustGetPtr

#define SWIG_MustGetPtr (   L,
  idx,
  type,
  flags,
  argnum,
  fnname 
)    SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)

Definition at line 1071 of file gv_lua.cpp.

◆ SWIG_name

#define SWIG_name   "gv"

Definition at line 2740 of file gv_lua.cpp.

◆ SWIG_NewMemberObj

#define SWIG_NewMemberObj (   L,
  ptr,
  sz,
  type 
)    SWIG_Lua_NewPackedObj(L, ptr, sz, type)

Definition at line 1074 of file gv_lua.cpp.

◆ SWIG_NEWOBJ

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 297 of file gv_lua.cpp.

◆ SWIG_NEWOBJMASK

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 291 of file gv_lua.cpp.

◆ SWIG_NewPointerObj

#define SWIG_NewPointerObj (   L,
  ptr,
  type,
  owner 
)    SWIG_Lua_NewPointerObj(L, (void *)ptr, type, owner)

Definition at line 1069 of file gv_lua.cpp.

◆ SWIG_NULLPTR

#define SWIG_NULLPTR   NULL

Definition at line 142 of file gv_lua.cpp.

◆ SWIG_NullReferenceError

#define SWIG_NullReferenceError   -13

Definition at line 757 of file gv_lua.cpp.

◆ SWIG_OK

#define SWIG_OK   (0)

Definition at line 277 of file gv_lua.cpp.

◆ SWIG_OLDOBJ

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 296 of file gv_lua.cpp.

◆ SWIG_OverflowError

#define SWIG_OverflowError   -7

Definition at line 751 of file gv_lua.cpp.

◆ SWIG_POINTER_CLEAR

#define SWIG_POINTER_CLEAR   0x8

Definition at line 191 of file gv_lua.cpp.

◆ SWIG_POINTER_DISOWN

#define SWIG_POINTER_DISOWN   0x1

Definition at line 188 of file gv_lua.cpp.

◆ SWIG_POINTER_NO_NULL

#define SWIG_POINTER_NO_NULL   0x4

Definition at line 190 of file gv_lua.cpp.

◆ SWIG_POINTER_OWN

#define SWIG_POINTER_OWN   0x1

Definition at line 195 of file gv_lua.cpp.

◆ SWIG_POINTER_RELEASE

#define SWIG_POINTER_RELEASE   (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)

Definition at line 192 of file gv_lua.cpp.

◆ SWIG_RUNTIME_VERSION

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 154 of file gv_lua.cpp.

◆ SWIG_RuntimeError

#define SWIG_RuntimeError   -3

Definition at line 747 of file gv_lua.cpp.

◆ SWIG_SetModule

#define SWIG_SetModule (   clientdata,
  pointer 
)    SWIG_Lua_SetModule((lua_State*) (clientdata), pointer)

Definition at line 1078 of file gv_lua.cpp.

◆ SWIG_snprintf

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

Definition at line 342 of file gv_lua.cpp.

◆ SWIG_snprintf2

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

Definition at line 343 of file gv_lua.cpp.

◆ SWIG_SyntaxError

#define SWIG_SyntaxError   -8

Definition at line 752 of file gv_lua.cpp.

◆ SWIG_SystemError

#define SWIG_SystemError   -10

Definition at line 754 of file gv_lua.cpp.

◆ SWIG_TMPOBJ

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 298 of file gv_lua.cpp.

◆ SWIG_TMPOBJMASK

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 293 of file gv_lua.cpp.

◆ SWIG_TYPE_TABLE_NAME

#define SWIG_TYPE_TABLE_NAME

Definition at line 162 of file gv_lua.cpp.

◆ SWIG_TypeError

#define SWIG_TypeError   -5

Definition at line 749 of file gv_lua.cpp.

◆ SWIG_TypeQuery

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

Definition at line 2735 of file gv_lua.cpp.

◆ SWIG_UnknownError

#define SWIG_UnknownError   -1

Definition at line 745 of file gv_lua.cpp.

◆ SWIG_ValueError

#define SWIG_ValueError   -9

Definition at line 753 of file gv_lua.cpp.

◆ SWIG_VERSION

#define SWIG_VERSION   0x040200

Definition at line 10 of file gv_lua.cpp.

◆ SWIGEXPORT

#define SWIGEXPORT

Definition at line 101 of file gv_lua.cpp.

◆ SWIGINLINE

#define SWIGINLINE

Definition at line 38 of file gv_lua.cpp.

◆ SWIGINTERN

#define SWIGINTERN   static SWIGUNUSED

Definition at line 73 of file gv_lua.cpp.

◆ SWIGINTERNINLINE

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 78 of file gv_lua.cpp.

◆ SWIGLUA

#define SWIGLUA

Definition at line 11 of file gv_lua.cpp.

◆ SWIGRUNTIME

#define SWIGRUNTIME   SWIGINTERN

Definition at line 175 of file gv_lua.cpp.

◆ SWIGRUNTIMEINLINE

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 179 of file gv_lua.cpp.

◆ SWIGSTDCALL

#define SWIGSTDCALL

Definition at line 111 of file gv_lua.cpp.

◆ SWIGTEMPLATEDISAMBIGUATOR

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 29 of file gv_lua.cpp.

◆ SWIGTYPE_p_Agedge_t

#define SWIGTYPE_p_Agedge_t   swig_types[0]

Definition at line 2728 of file gv_lua.cpp.

◆ SWIGTYPE_p_Agnode_t

#define SWIGTYPE_p_Agnode_t   swig_types[1]

Definition at line 2729 of file gv_lua.cpp.

◆ SWIGTYPE_p_Agraph_t

#define SWIGTYPE_p_Agraph_t   swig_types[2]

Definition at line 2730 of file gv_lua.cpp.

◆ SWIGTYPE_p_Agsym_t

#define SWIGTYPE_p_Agsym_t   swig_types[3]

Definition at line 2731 of file gv_lua.cpp.

◆ SWIGTYPE_p_FILE

#define SWIGTYPE_p_FILE   swig_types[4]

Definition at line 2732 of file gv_lua.cpp.

◆ SWIGUNUSED

#define SWIGUNUSED

Definition at line 53 of file gv_lua.cpp.

◆ SWIGUNUSEDPARM

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 67 of file gv_lua.cpp.

Typedef Documentation

◆ swig_cast_info

◆ swig_converter_func

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

Definition at line 352 of file gv_lua.cpp.

◆ swig_dycast_func

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

Definition at line 352 of file gv_lua.cpp.

◆ swig_lua_base_iterator_func

typedef int(* swig_lua_base_iterator_func) (lua_State *, swig_type_info *, int, int *ret)

Definition at line 1484 of file gv_lua.cpp.

◆ swig_lua_class

◆ swig_lua_const_info

typedef const LUA_REG_TYPE swig_lua_const_info

Definition at line 1001 of file gv_lua.cpp.

◆ swig_lua_method

typedef const LUA_REG_TYPE swig_lua_method

Definition at line 1000 of file gv_lua.cpp.

◆ swig_lua_namespace

◆ swig_module_info

◆ swig_type_info

Function Documentation

◆ _wrap_digraph()

static int _wrap_digraph ( lua_State *  L)
static

Definition at line 3022 of file gv_lua.cpp.

References digraph(), L, SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_edge()

static int _wrap_edge ( lua_State *  L)
static

Definition at line 3398 of file gv_lua.cpp.

References _wrap_edge__SWIG_0(), _wrap_edge__SWIG_1(), _wrap_edge__SWIG_2(), _wrap_edge__SWIG_3(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_edge__SWIG_0()

static int _wrap_edge__SWIG_0 ( lua_State *  L)
static

Definition at line 3283 of file gv_lua.cpp.

References edge, L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge().

Here is the caller graph for this function:

◆ _wrap_edge__SWIG_1()

static int _wrap_edge__SWIG_1 ( lua_State *  L)
static

Definition at line 3314 of file gv_lua.cpp.

References edge, L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge().

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

◆ _wrap_edge__SWIG_2()

static int _wrap_edge__SWIG_2 ( lua_State *  L)
static

Definition at line 3341 of file gv_lua.cpp.

References edge, L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_edge().

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

◆ _wrap_edge__SWIG_3()

static int _wrap_edge__SWIG_3 ( lua_State *  L)
static

Definition at line 3368 of file gv_lua.cpp.

References edge, L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_edge().

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

◆ _wrap_findattr()

static int _wrap_findattr ( lua_State *  L)
static

Definition at line 4493 of file gv_lua.cpp.

References _wrap_findattr__SWIG_0(), _wrap_findattr__SWIG_1(), _wrap_findattr__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), 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()

static int _wrap_findattr__SWIG_0 ( lua_State *  L)
static

Definition at line 4412 of file gv_lua.cpp.

References findattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr().

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

◆ _wrap_findattr__SWIG_1()

static int _wrap_findattr__SWIG_1 ( lua_State *  L)
static

Definition at line 4439 of file gv_lua.cpp.

References findattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr().

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

◆ _wrap_findattr__SWIG_2()

static int _wrap_findattr__SWIG_2 ( lua_State *  L)
static

Definition at line 4466 of file gv_lua.cpp.

References findattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_findattr().

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

◆ _wrap_findedge()

static int _wrap_findedge ( lua_State *  L)
static

Definition at line 4381 of file gv_lua.cpp.

References findedge(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_findnode()

static int _wrap_findnode ( lua_State *  L)
static

Definition at line 4354 of file gv_lua.cpp.

References findnode(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_findsubg()

static int _wrap_findsubg ( lua_State *  L)
static

Definition at line 4327 of file gv_lua.cpp.

References findsubg(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_firstattr()

static int _wrap_firstattr ( lua_State *  L)
static

Definition at line 6214 of file gv_lua.cpp.

References _wrap_firstattr__SWIG_0(), _wrap_firstattr__SWIG_1(), _wrap_firstattr__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_firstattr__SWIG_0 ( lua_State *  L)
static

Definition at line 6080 of file gv_lua.cpp.

References firstattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstattr__SWIG_1()

static int _wrap_firstattr__SWIG_1 ( lua_State *  L)
static

Definition at line 6135 of file gv_lua.cpp.

References firstattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstattr__SWIG_2()

static int _wrap_firstattr__SWIG_2 ( lua_State *  L)
static

Definition at line 6190 of file gv_lua.cpp.

References firstattr(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_firstattr().

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

◆ _wrap_firstedge()

static int _wrap_firstedge ( lua_State *  L)
static

Definition at line 5232 of file gv_lua.cpp.

References _wrap_firstedge__SWIG_0(), _wrap_firstedge__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstedge__SWIG_0()

static int _wrap_firstedge__SWIG_0 ( lua_State *  L)
static

Definition at line 5098 of file gv_lua.cpp.

References firstedge(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstedge().

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

◆ _wrap_firstedge__SWIG_1()

static int _wrap_firstedge__SWIG_1 ( lua_State *  L)
static

Definition at line 5208 of file gv_lua.cpp.

References firstedge(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstedge().

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

◆ _wrap_firsthead()

static int _wrap_firsthead ( lua_State *  L)
static

Definition at line 5534 of file gv_lua.cpp.

References firsthead(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_firstin()

static int _wrap_firstin ( lua_State *  L)
static

Definition at line 5668 of file gv_lua.cpp.

References _wrap_firstin__SWIG_0(), _wrap_firstin__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstin__SWIG_0()

static int _wrap_firstin__SWIG_0 ( lua_State *  L)
static

Definition at line 5589 of file gv_lua.cpp.

References firstin(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstin().

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

◆ _wrap_firstin__SWIG_1()

static int _wrap_firstin__SWIG_1 ( lua_State *  L)
static

Definition at line 5644 of file gv_lua.cpp.

References firstin(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstin().

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

◆ _wrap_firstnode()

static int _wrap_firstnode ( lua_State *  L)
static

Definition at line 5941 of file gv_lua.cpp.

References _wrap_firstnode__SWIG_0(), _wrap_firstnode__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agedge_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstnode__SWIG_0()

static int _wrap_firstnode__SWIG_0 ( lua_State *  L)
static

Definition at line 5862 of file gv_lua.cpp.

References firstnode(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstnode().

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

◆ _wrap_firstnode__SWIG_1()

static int _wrap_firstnode__SWIG_1 ( lua_State *  L)
static

Definition at line 5917 of file gv_lua.cpp.

References firstnode(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstnode().

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

◆ _wrap_firstout()

static int _wrap_firstout ( lua_State *  L)
static

Definition at line 5395 of file gv_lua.cpp.

References _wrap_firstout__SWIG_0(), _wrap_firstout__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agnode_t, and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_firstout__SWIG_0()

static int _wrap_firstout__SWIG_0 ( lua_State *  L)
static

Definition at line 5153 of file gv_lua.cpp.

References firstout(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_firstout().

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

◆ _wrap_firstout__SWIG_1()

static int _wrap_firstout__SWIG_1 ( lua_State *  L)
static

Definition at line 5371 of file gv_lua.cpp.

References firstout(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_firstout().

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

◆ _wrap_firstsubg()

static int _wrap_firstsubg ( lua_State *  L)
static

Definition at line 4988 of file gv_lua.cpp.

References firstsubg(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_firstsupg()

static int _wrap_firstsupg ( lua_State *  L)
static

Definition at line 5043 of file gv_lua.cpp.

References firstsupg(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_firsttail()

static int _wrap_firsttail ( lua_State *  L)
static

Definition at line 5807 of file gv_lua.cpp.

References firsttail(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_getv()

static int _wrap_getv ( lua_State *  L)
static

Definition at line 4047 of file gv_lua.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(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), 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()

static int _wrap_getv__SWIG_0 ( lua_State *  L)
static

Definition at line 3873 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_1()

static int _wrap_getv__SWIG_1 ( lua_State *  L)
static

Definition at line 3900 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_2()

static int _wrap_getv__SWIG_2 ( lua_State *  L)
static

Definition at line 3927 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_3()

static int _wrap_getv__SWIG_3 ( lua_State *  L)
static

Definition at line 3954 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_4()

static int _wrap_getv__SWIG_4 ( lua_State *  L)
static

Definition at line 3985 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_getv__SWIG_5()

static int _wrap_getv__SWIG_5 ( lua_State *  L)
static

Definition at line 4016 of file gv_lua.cpp.

References getv(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_getv().

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

◆ _wrap_graph()

static int _wrap_graph ( lua_State *  L)
static

Definition at line 3212 of file gv_lua.cpp.

References _wrap_graph__SWIG_0(), _wrap_graph__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), and SWIGTYPE_p_Agraph_t.

Here is the call graph for this function:

◆ _wrap_graph__SWIG_0()

static int _wrap_graph__SWIG_0 ( lua_State *  L)
static

Definition at line 3002 of file gv_lua.cpp.

References graph(), L, SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graph().

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

◆ _wrap_graph__SWIG_1()

static int _wrap_graph__SWIG_1 ( lua_State *  L)
static

Definition at line 3185 of file gv_lua.cpp.

References graph(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graph().

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

◆ _wrap_graphof()

static int _wrap_graphof ( lua_State *  L)
static

Definition at line 4687 of file gv_lua.cpp.

References _wrap_graphof__SWIG_0(), _wrap_graphof__SWIG_1(), _wrap_graphof__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_graphof__SWIG_0 ( lua_State *  L)
static

Definition at line 4615 of file gv_lua.cpp.

References graphof(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof().

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

◆ _wrap_graphof__SWIG_1()

static int _wrap_graphof__SWIG_1 ( lua_State *  L)
static

Definition at line 4639 of file gv_lua.cpp.

References graphof(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof().

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

◆ _wrap_graphof__SWIG_2()

static int _wrap_graphof__SWIG_2 ( lua_State *  L)
static

Definition at line 4663 of file gv_lua.cpp.

References graphof(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_graphof().

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

◆ _wrap_headof()

static int _wrap_headof ( lua_State *  L)
static

Definition at line 4567 of file gv_lua.cpp.

References headof(), L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_layout()

static int _wrap_layout ( lua_State *  L)
static

Definition at line 6524 of file gv_lua.cpp.

References L, layout(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_nameof()

static int _wrap_nameof ( lua_State *  L)
static

Definition at line 4268 of file gv_lua.cpp.

References _wrap_nameof__SWIG_0(), _wrap_nameof__SWIG_1(), _wrap_nameof__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nameof__SWIG_0 ( lua_State *  L)
static

Definition at line 4196 of file gv_lua.cpp.

References L, nameof(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nameof().

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

◆ _wrap_nameof__SWIG_1()

static int _wrap_nameof__SWIG_1 ( lua_State *  L)
static

Definition at line 4220 of file gv_lua.cpp.

References L, nameof(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nameof().

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

◆ _wrap_nameof__SWIG_2()

static int _wrap_nameof__SWIG_2 ( lua_State *  L)
static

Definition at line 4244 of file gv_lua.cpp.

References L, nameof(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nameof().

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

◆ _wrap_nextattr()

static int _wrap_nextattr ( lua_State *  L)
static

Definition at line 6304 of file gv_lua.cpp.

References _wrap_nextattr__SWIG_0(), _wrap_nextattr__SWIG_1(), _wrap_nextattr__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nextattr__SWIG_0 ( lua_State *  L)
static

Definition at line 6104 of file gv_lua.cpp.

References L, nextattr(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextattr__SWIG_1()

static int _wrap_nextattr__SWIG_1 ( lua_State *  L)
static

Definition at line 6159 of file gv_lua.cpp.

References L, nextattr(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextattr__SWIG_2()

static int _wrap_nextattr__SWIG_2 ( lua_State *  L)
static

Definition at line 6273 of file gv_lua.cpp.

References L, nextattr(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_nextattr().

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

◆ _wrap_nextedge()

static int _wrap_nextedge ( lua_State *  L)
static

Definition at line 5307 of file gv_lua.cpp.

References _wrap_nextedge__SWIG_0(), _wrap_nextedge__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nextedge__SWIG_0 ( lua_State *  L)
static

Definition at line 5122 of file gv_lua.cpp.

References L, nextedge(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextedge().

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

◆ _wrap_nextedge__SWIG_1()

static int _wrap_nextedge__SWIG_1 ( lua_State *  L)
static

Definition at line 5276 of file gv_lua.cpp.

References L, nextedge(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextedge().

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

◆ _wrap_nexthead()

static int _wrap_nexthead ( lua_State *  L)
static

Definition at line 5558 of file gv_lua.cpp.

References L, nexthead(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_nextin()

static int _wrap_nextin ( lua_State *  L)
static

Definition at line 5743 of file gv_lua.cpp.

References _wrap_nextin__SWIG_0(), _wrap_nextin__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nextin__SWIG_0 ( lua_State *  L)
static

Definition at line 5613 of file gv_lua.cpp.

References L, nextin(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextin().

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

◆ _wrap_nextin__SWIG_1()

static int _wrap_nextin__SWIG_1 ( lua_State *  L)
static

Definition at line 5712 of file gv_lua.cpp.

References L, nextin(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextin().

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

◆ _wrap_nextnode()

static int _wrap_nextnode ( lua_State *  L)
static

Definition at line 6016 of file gv_lua.cpp.

References _wrap_nextnode__SWIG_0(), _wrap_nextnode__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nextnode__SWIG_0 ( lua_State *  L)
static

Definition at line 5886 of file gv_lua.cpp.

References L, nextnode(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextnode().

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

◆ _wrap_nextnode__SWIG_1()

static int _wrap_nextnode__SWIG_1 ( lua_State *  L)
static

Definition at line 5985 of file gv_lua.cpp.

References L, nextnode(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextnode().

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

◆ _wrap_nextout()

static int _wrap_nextout ( lua_State *  L)
static

Definition at line 5470 of file gv_lua.cpp.

References _wrap_nextout__SWIG_0(), _wrap_nextout__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_nextout__SWIG_0 ( lua_State *  L)
static

Definition at line 5177 of file gv_lua.cpp.

References L, nextout(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_nextout().

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

◆ _wrap_nextout__SWIG_1()

static int _wrap_nextout__SWIG_1 ( lua_State *  L)
static

Definition at line 5439 of file gv_lua.cpp.

References L, nextout(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_nextout().

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

◆ _wrap_nextsubg()

static int _wrap_nextsubg ( lua_State *  L)
static

Definition at line 5012 of file gv_lua.cpp.

References L, nextsubg(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_nextsupg()

static int _wrap_nextsupg ( lua_State *  L)
static

Definition at line 5067 of file gv_lua.cpp.

References L, nextsupg(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_nexttail()

static int _wrap_nexttail ( lua_State *  L)
static

Definition at line 5831 of file gv_lua.cpp.

References L, nexttail(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_node()

static int _wrap_node ( lua_State *  L)
static

Definition at line 3256 of file gv_lua.cpp.

References L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_ok()

static int _wrap_ok ( lua_State *  L)
static

Definition at line 4914 of file gv_lua.cpp.

References _wrap_ok__SWIG_0(), _wrap_ok__SWIG_1(), _wrap_ok__SWIG_2(), _wrap_ok__SWIG_3(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_ok__SWIG_0 ( lua_State *  L)
static

Definition at line 4818 of file gv_lua.cpp.

References L, ok(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_1()

static int _wrap_ok__SWIG_1 ( lua_State *  L)
static

Definition at line 4842 of file gv_lua.cpp.

References L, ok(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_2()

static int _wrap_ok__SWIG_2 ( lua_State *  L)
static

Definition at line 4866 of file gv_lua.cpp.

References L, ok(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_ok().

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

◆ _wrap_ok__SWIG_3()

static int _wrap_ok__SWIG_3 ( lua_State *  L)
static

Definition at line 4890 of file gv_lua.cpp.

References L, ok(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_ok().

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

◆ _wrap_protoedge()

static int _wrap_protoedge ( lua_State *  L)
static

Definition at line 4794 of file gv_lua.cpp.

References L, protoedge(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_protonode()

static int _wrap_protonode ( lua_State *  L)
static

Definition at line 4770 of file gv_lua.cpp.

References L, protonode(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_read()

static int _wrap_read ( lua_State *  L)
static

Definition at line 3146 of file gv_lua.cpp.

References _wrap_read__SWIG_0(), _wrap_read__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), and SWIGTYPE_p_FILE.

Here is the call graph for this function:

◆ _wrap_read__SWIG_0()

static int _wrap_read__SWIG_0 ( lua_State *  L)
static

Definition at line 3102 of file gv_lua.cpp.

References L, read(), SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_read().

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

◆ _wrap_read__SWIG_1()

static int _wrap_read__SWIG_1 ( lua_State *  L)
static

Definition at line 3122 of file gv_lua.cpp.

References L, read(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, and SWIGUNUSED.

Referenced by _wrap_read().

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

◆ _wrap_readstring()

static int _wrap_readstring ( lua_State *  L)
static

Definition at line 3082 of file gv_lua.cpp.

References L, readstring(), SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_render()

static int _wrap_render ( lua_State *  L)
static

Definition at line 6666 of file gv_lua.cpp.

References _wrap_render__SWIG_0(), _wrap_render__SWIG_1(), _wrap_render__SWIG_2(), _wrap_render__SWIG_3(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Here is the call graph for this function:

◆ _wrap_render__SWIG_0()

static int _wrap_render__SWIG_0 ( lua_State *  L)
static

Definition at line 6551 of file gv_lua.cpp.

References L, render(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_1()

static int _wrap_render__SWIG_1 ( lua_State *  L)
static

Definition at line 6575 of file gv_lua.cpp.

References L, render(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_2()

static int _wrap_render__SWIG_2 ( lua_State *  L)
static

Definition at line 6602 of file gv_lua.cpp.

References L, render(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, and SWIGUNUSED.

Referenced by _wrap_render().

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

◆ _wrap_render__SWIG_3()

static int _wrap_render__SWIG_3 ( lua_State *  L)
static

Definition at line 6636 of file gv_lua.cpp.

References L, render(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_render().

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

◆ _wrap_renderchannel()

static int _wrap_renderchannel ( lua_State *  L)
static

Definition at line 6799 of file gv_lua.cpp.

References L, renderchannel(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_renderdata()

static int _wrap_renderdata ( lua_State *  L)
static

Definition at line 6829 of file gv_lua.cpp.

References L, renderdata(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_renderresult()

static int _wrap_renderresult ( lua_State *  L)
static

Definition at line 6770 of file gv_lua.cpp.

References L, renderresult(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_rm()

static int _wrap_rm ( lua_State *  L)
static

Definition at line 6465 of file gv_lua.cpp.

References _wrap_rm__SWIG_0(), _wrap_rm__SWIG_1(), _wrap_rm__SWIG_2(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_Lua_pusherrstring(), 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()

static int _wrap_rm__SWIG_0 ( lua_State *  L)
static

Definition at line 6393 of file gv_lua.cpp.

References L, rm(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_rm().

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

◆ _wrap_rm__SWIG_1()

static int _wrap_rm__SWIG_1 ( lua_State *  L)
static

Definition at line 6417 of file gv_lua.cpp.

References L, rm(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_rm().

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

◆ _wrap_rm__SWIG_2()

static int _wrap_rm__SWIG_2 ( lua_State *  L)
static

Definition at line 6441 of file gv_lua.cpp.

References L, rm(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_rm().

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

◆ _wrap_rootof()

static int _wrap_rootof ( lua_State *  L)
static

Definition at line 4746 of file gv_lua.cpp.

References L, rootof(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_setv()

static int _wrap_setv ( lua_State *  L)
static

Definition at line 3694 of file gv_lua.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(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), 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()

static int _wrap_setv__SWIG_0 ( lua_State *  L)
static

Definition at line 3502 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_1()

static int _wrap_setv__SWIG_1 ( lua_State *  L)
static

Definition at line 3532 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agnode_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_2()

static int _wrap_setv__SWIG_2 ( lua_State *  L)
static

Definition at line 3562 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agedge_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_3()

static int _wrap_setv__SWIG_3 ( lua_State *  L)
static

Definition at line 3592 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_4()

static int _wrap_setv__SWIG_4 ( lua_State *  L)
static

Definition at line 3626 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agnode_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_setv__SWIG_5()

static int _wrap_setv__SWIG_5 ( lua_State *  L)
static

Definition at line 3660 of file gv_lua.cpp.

References L, setv(), SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agsym_t, and SWIGUNUSED.

Referenced by _wrap_setv().

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

◆ _wrap_strictdigraph()

static int _wrap_strictdigraph ( lua_State *  L)
static

Definition at line 3062 of file gv_lua.cpp.

References L, strictdigraph(), SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_strictgraph()

static int _wrap_strictgraph ( lua_State *  L)
static

Definition at line 3042 of file gv_lua.cpp.

References L, strictgraph(), SWIG_check_num_args, SWIG_fail_arg, SWIG_lua_isnilstring(), SWIG_NewPointerObj, SWIGTYPE_p_Agraph_t, and SWIGUNUSED.

Here is the call graph for this function:

◆ _wrap_tailof()

static int _wrap_tailof ( lua_State *  L)
static

Definition at line 4591 of file gv_lua.cpp.

References L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_NewPointerObj, SWIGTYPE_p_Agedge_t, SWIGTYPE_p_Agnode_t, SWIGUNUSED, and tailof().

Here is the call graph for this function:

◆ _wrap_tred()

static int _wrap_tred ( lua_State *  L)
static

Definition at line 6973 of file gv_lua.cpp.

References L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, SWIGUNUSED, and tred().

Here is the call graph for this function:

◆ _wrap_write()

static int _wrap_write ( lua_State *  L)
static

Definition at line 6914 of file gv_lua.cpp.

References _wrap_write__SWIG_0(), _wrap_write__SWIG_1(), L, SWIG_ConvertPtr, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIG_Lua_pusherrstring(), SWIGTYPE_p_Agraph_t, and SWIGTYPE_p_FILE.

Here is the call graph for this function:

◆ _wrap_write__SWIG_0()

static int _wrap_write__SWIG_0 ( lua_State *  L)
static

Definition at line 6856 of file gv_lua.cpp.

References L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIG_lua_isnilstring(), SWIGTYPE_p_Agraph_t, SWIGUNUSED, 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()

static int _wrap_write__SWIG_1 ( lua_State *  L)
static

Definition at line 6883 of file gv_lua.cpp.

References L, SWIG_check_num_args, SWIG_ConvertPtr, SWIG_fail_arg, SWIG_fail_ptr, SWIG_IsOK, SWIG_isptrtype, SWIGTYPE_p_Agraph_t, SWIGTYPE_p_FILE, SWIGUNUSED, 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.

Referenced by _wrap_digraph().

Here is the caller graph for this function:

◆ edge() [1/4]

Agedge_t * edge ( Agnode_t t,
Agnode_t h 
)
extern

New edges

Definition at line 100 of file gv.cpp.

◆ edge() [2/4]

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

Definition at line 108 of file gv.cpp.

◆ edge() [3/4]

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

Definition at line 113 of file gv.cpp.

◆ edge() [4/4]

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

Definition at line 103 of file gv.cpp.

◆ findattr() [1/3]

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

Definition at line 285 of file gv.cpp.

◆ findattr() [2/3]

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

Definition at line 279 of file gv.cpp.

◆ findattr() [3/3]

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

Definition at line 273 of file gv.cpp.

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

Here is the caller graph for this function:

◆ findedge()

Agedge_t * findedge ( Agnode_t t,
Agnode_t h 
)
extern

Definition at line 265 of file gv.cpp.

Referenced by _wrap_findedge().

Here is the caller graph for this function:

◆ findnode()

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

Definition at line 259 of file gv.cpp.

Referenced by _wrap_findnode().

Here is the caller graph for this function:

◆ findsubg()

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

Find handles from names

Definition at line 253 of file gv.cpp.

Referenced by _wrap_findsubg().

Here is the caller graph for this function:

◆ firstattr() [1/3]

Agsym_t * firstattr ( Agedge_t e)
extern

Definition at line 576 of file gv.cpp.

◆ firstattr() [2/3]

Agsym_t * firstattr ( Agnode_t n)
extern

Definition at line 562 of file gv.cpp.

◆ firstattr() [3/3]

Agsym_t * firstattr ( Agraph_t g)
extern

Definition at line 548 of file gv.cpp.

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

Here is the caller graph for this function:

◆ firstedge() [1/2]

Agedge_t * firstedge ( Agnode_t n)
extern

Definition at line 455 of file gv.cpp.

◆ firstedge() [2/2]

Agedge_t * firstedge ( Agraph_t g)
extern

Definition at line 415 of file gv.cpp.

Referenced by _wrap_firstedge__SWIG_0(), and _wrap_firstedge__SWIG_1().

Here is the caller graph for this function:

◆ firsthead()

Agnode_t * firsthead ( Agnode_t n)
extern

Definition at line 431 of file gv.cpp.

Referenced by _wrap_firsthead().

Here is the caller graph for this function:

◆ firstin() [1/2]

Agedge_t * firstin ( Agnode_t n)
extern

Definition at line 488 of file gv.cpp.

◆ firstin() [2/2]

Agedge_t * firstin ( Agraph_t g)
extern

Definition at line 467 of file gv.cpp.

Referenced by _wrap_firstin__SWIG_0(), and _wrap_firstin__SWIG_1().

Here is the caller graph for this function:

◆ firstnode() [1/2]

Agnode_t * firstnode ( Agedge_t e)
extern

Definition at line 536 of file gv.cpp.

◆ firstnode() [2/2]

Agnode_t * firstnode ( Agraph_t g)
extern

Definition at line 524 of file gv.cpp.

Referenced by _wrap_firstnode__SWIG_0(), and _wrap_firstnode__SWIG_1().

Here is the caller graph for this function:

◆ firstout() [1/2]

Agedge_t * firstout ( Agnode_t n)
extern

Definition at line 419 of file gv.cpp.

◆ firstout() [2/2]

Agedge_t * firstout ( Agraph_t g)
extern

Definition at line 390 of file gv.cpp.

Referenced by _wrap_firstout__SWIG_0(), and _wrap_firstout__SWIG_1().

Here is the caller graph for this function:

◆ firstsubg()

Agraph_t * firstsubg ( Agraph_t g)
extern

Definition at line 373 of file gv.cpp.

Referenced by _wrap_firstsubg().

Here is the caller graph for this function:

◆ firstsupg()

Agraph_t * firstsupg ( Agraph_t g)
extern

Definition at line 386 of file gv.cpp.

Referenced by _wrap_firstsupg().

Here is the caller graph for this function:

◆ firsttail()

Agnode_t * firsttail ( Agnode_t n)
extern

Definition at line 500 of file gv.cpp.

Referenced by _wrap_firsttail().

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.

◆ getv() [2/6]

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

Definition at line 218 of file gv.cpp.

◆ getv() [3/6]

char * getv ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 168 of file gv.cpp.

◆ getv() [4/6]

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

Definition at line 175 of file gv.cpp.

◆ getv() [5/6]

char * getv ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 135 of file gv.cpp.

◆ getv() [6/6]

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

Getting attribute values

Definition at line 136 of file gv.cpp.

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

Here is the caller graph for this function:

◆ graph() [1/2]

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

Definition at line 79 of file gv.cpp.

◆ graph() [2/2]

Agraph_t * graph ( char *  name)
extern

New graphs

Definition at line 31 of file gv.cpp.

Referenced by _wrap_graph__SWIG_0(), and _wrap_graph__SWIG_1().

Here is the caller graph for this function:

◆ graphof() [1/3]

Agraph_t * graphof ( Agedge_t e)
extern

Definition at line 315 of file gv.cpp.

◆ graphof() [2/3]

Agraph_t * graphof ( Agnode_t n)
extern

Definition at line 324 of file gv.cpp.

◆ graphof() [3/3]

Agraph_t * graphof ( Agraph_t g)
extern

Definition at line 309 of file gv.cpp.

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

Here is the caller graph for this function:

◆ headof()

Agnode_t * headof ( Agedge_t e)
extern

Misc graph navigators returning handles

Definition at line 293 of file gv.cpp.

Referenced by _wrap_headof().

Here is the caller graph for this function:

◆ layout()

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

Layout

Definition at line 621 of file gv.cpp.

Referenced by _wrap_layout().

Here is the caller graph for this function:

◆ lua_tolstring()

static const char *() lua_tolstring ( lua_State *  L,
int  idx,
size_t *  len 
)
static

Definition at line 916 of file gv_lua.cpp.

References L, and len().

Here is the call graph for this function:

◆ nameof() [1/3]

char * nameof ( Agnode_t n)
extern

Definition at line 354 of file gv.cpp.

◆ nameof() [2/3]

char * nameof ( Agraph_t g)
extern

Obtain names from handles

Definition at line 349 of file gv.cpp.

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

Here is the caller graph for this function:

◆ nameof() [3/3]

char * nameof ( Agsym_t a)
extern

Definition at line 361 of file gv.cpp.

◆ nextattr() [1/3]

Agsym_t * nextattr ( Agedge_t e,
Agsym_t a 
)
extern

Definition at line 583 of file gv.cpp.

◆ nextattr() [2/3]

Agsym_t * nextattr ( Agnode_t n,
Agsym_t a 
)
extern

Definition at line 569 of file gv.cpp.

◆ nextattr() [3/3]

Agsym_t * nextattr ( Agraph_t g,
Agsym_t a 
)
extern

Definition at line 555 of file gv.cpp.

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

Here is the caller graph for this function:

◆ nextedge() [1/2]

Agedge_t * nextedge ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 461 of file gv.cpp.

◆ nextedge() [2/2]

Agedge_t * nextedge ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 417 of file gv.cpp.

Referenced by _wrap_nextedge__SWIG_0(), and _wrap_nextedge__SWIG_1().

Here is the caller graph for this function:

◆ nexthead()

Agnode_t * nexthead ( Agnode_t n,
Agnode_t h 
)
extern

Definition at line 440 of file gv.cpp.

Referenced by _wrap_nexthead().

Here is the caller graph for this function:

◆ nextin() [1/2]

Agedge_t * nextin ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 494 of file gv.cpp.

Referenced by _wrap_nextin__SWIG_0(), and _wrap_nextin__SWIG_1().

Here is the caller graph for this function:

◆ nextin() [2/2]

Agedge_t * nextin ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 476 of file gv.cpp.

◆ nextnode() [1/2]

Agnode_t * nextnode ( Agedge_t e,
Agnode_t n 
)
extern

Definition at line 542 of file gv.cpp.

◆ nextnode() [2/2]

Agnode_t * nextnode ( Agraph_t g,
Agnode_t n 
)
extern

Definition at line 530 of file gv.cpp.

Referenced by _wrap_nextnode__SWIG_0(), and _wrap_nextnode__SWIG_1().

Here is the caller graph for this function:

◆ nextout() [1/2]

Agedge_t * nextout ( Agnode_t n,
Agedge_t e 
)
extern

Definition at line 425 of file gv.cpp.

◆ nextout() [2/2]

Agedge_t * nextout ( Agraph_t g,
Agedge_t e 
)
extern

Definition at line 401 of file gv.cpp.

Referenced by _wrap_nextout__SWIG_0(), and _wrap_nextout__SWIG_1().

Here is the caller graph for this function:

◆ nextsubg()

Agraph_t * nextsubg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 379 of file gv.cpp.

Referenced by _wrap_nextsubg().

Here is the caller graph for this function:

◆ nextsupg()

Agraph_t * nextsupg ( Agraph_t g,
Agraph_t sg 
)
extern

Definition at line 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.

Referenced by _wrap_nexttail().

Here is the caller graph for this function:

◆ node()

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

New nodes

Definition at line 85 of file gv.cpp.

◆ 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(), and SWIG_Lua_dostring().

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.

Referenced by _wrap_read__SWIG_0(), and _wrap_read__SWIG_1().

Here is the caller graph for this function:

◆ read() [2/2]

Agraph_t * read ( FILE *  f)
extern

Definition at line 61 of file gv.cpp.

◆ readstring()

Agraph_t * readstring ( char *  string)
extern

Definition at line 55 of file gv.cpp.

Referenced by _wrap_readstring().

Here is the caller graph for this function:

◆ render() [1/4]

bool render ( Agraph_t g)
extern

Render

Definition at line 630 of file gv.cpp.

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

Here is the caller graph for this function:

◆ render() [2/4]

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

Definition at line 638 of file gv.cpp.

◆ render() [3/4]

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

Definition at line 664 of file gv.cpp.

◆ render() [4/4]

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

Definition at line 646 of file gv.cpp.

◆ renderchannel()

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

Definition at line 654 of file gv.cpp.

Referenced by _wrap_renderchannel().

Here is the caller graph for this function:

◆ renderdata()

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

Definition at line 705 of file gv.cpp.

Referenced by _wrap_renderdata().

Here is the caller graph for this function:

◆ renderresult()

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

Definition at line 696 of file gv.cpp.

Referenced by _wrap_renderresult().

Here is the caller graph for this function:

◆ rm() [1/3]

bool rm ( Agedge_t e)
extern

Definition at line 610 of file gv.cpp.

◆ rm() [2/3]

bool rm ( Agnode_t n)
extern

Definition at line 600 of file gv.cpp.

◆ rm() [3/3]

bool rm ( Agraph_t g)
extern

Remove graph objects

Definition at line 590 of file gv.cpp.

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

Here is the caller graph for this function:

◆ rootof()

Agraph_t * rootof ( Agraph_t g)
extern

Definition at line 333 of file gv.cpp.

Referenced by _wrap_rootof().

Here is the caller graph for this function:

◆ setv() [1/6]

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

Definition at line 227 of file gv.cpp.

◆ setv() [2/6]

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

Definition at line 235 of file gv.cpp.

◆ setv() [3/6]

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

Definition at line 184 of file gv.cpp.

◆ setv() [4/6]

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

Definition at line 192 of file gv.cpp.

◆ setv() [5/6]

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

Definition at line 152 of file gv.cpp.

◆ setv() [6/6]

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

Setting attribute values

Definition at line 158 of file gv.cpp.

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

Here is the caller graph for this function:

◆ strictdigraph()

Agraph_t * strictdigraph ( char *  name)
extern

Definition at line 49 of file gv.cpp.

Referenced by _wrap_strictdigraph().

Here is the caller graph for this function:

◆ strictgraph()

Agraph_t * strictgraph ( char *  name)
extern

Definition at line 43 of file gv.cpp.

Referenced by _wrap_strictgraph().

Here is the caller graph for this function:

◆ SWIG_init()

LUALIB_API int SWIG_init ( lua_State *  L)

◆ SWIG_init_user()

void SWIG_init_user ( lua_State *  L)

Definition at line 7432 of file gv_lua.cpp.

References L, SWIG_Lua_dostring(), and SWIG_LUACODE.

Here is the call graph for this function:

◆ SWIG_InitializeModule()

SWIGRUNTIME void SWIG_InitializeModule ( SWIG_INIT_CLIENT_DATA_TYPE  clientdata)

Definition at line 7163 of file gv_lua.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_Lua_add_class_instance_details()

SWIGINTERN void SWIG_Lua_add_class_instance_details ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2059 of file gv_lua.cpp.

References swig_lua_class::attributes, swig_lua_class::bases, swig_lua_class::fqname, swig_lua_attribute::getmethod, L, lua_rawlen, swig_lua_class::metatable, swig_lua_class::methods, swig_lua_attribute::name, swig_lua_attribute::setmethod, SWIG_Lua_add_class_user_metamethods(), SWIG_Lua_add_function, SWIG_Lua_add_variable(), SWIG_Lua_get_class_metatable(), and SWIG_Lua_get_table.

Referenced by SWIG_Lua_class_register_instance().

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

◆ SWIG_Lua_add_class_static_details()

SWIGINTERN void SWIG_Lua_add_class_static_details ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2042 of file gv_lua.cpp.

References swig_lua_class::bases, swig_lua_class::cls_static, L, SWIG_Lua_add_class_static_details(), and SWIG_Lua_add_namespace_details().

Referenced by SWIG_Lua_add_class_static_details(), and SWIG_Lua_class_register_static().

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

◆ SWIG_Lua_add_class_user_metamethod()

SWIGINTERN int SWIG_Lua_add_class_user_metamethod ( lua_State *  L,
swig_lua_class clss,
const int  metatable_index 
)

Definition at line 2202 of file gv_lua.cpp.

References swig_lua_class::bases, swig_lua_class::fqname, L, SWIG_Lua_get_class_metatable(), and SWIG_Lua_resolve_metamethod().

Referenced by SWIG_Lua_add_class_user_metamethods().

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

◆ SWIG_Lua_add_class_user_metamethods()

SWIGINTERN void SWIG_Lua_add_class_user_metamethods ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2250 of file gv_lua.cpp.

References swig_lua_class::fqname, L, SWIG_Lua_add_class_user_metamethod(), SWIG_Lua_class_equal(), SWIG_Lua_class_tostring(), SWIG_Lua_get_class_metatable(), and SWIG_Lua_get_inheritable_metamethods().

Referenced by SWIG_Lua_add_class_instance_details().

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

◆ SWIG_Lua_add_namespace_classes()

SWIGINTERN void SWIG_Lua_add_namespace_classes ( lua_State *  L,
swig_lua_namespace ns 
)

Definition at line 1404 of file gv_lua.cpp.

References L, swig_lua_namespace::ns_classes, and SWIG_Lua_class_register().

Referenced by SWIG_Lua_namespace_register().

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

◆ SWIG_Lua_add_namespace_details()

SWIGINTERN int SWIG_Lua_add_namespace_details ( lua_State *  L,
swig_lua_namespace ns 
)

Definition at line 1380 of file gv_lua.cpp.

References swig_lua_attribute::getmethod, L, swig_lua_attribute::name, swig_lua_namespace::ns_attributes, swig_lua_namespace::ns_constants, swig_lua_namespace::ns_methods, swig_lua_attribute::setmethod, SWIG_Lua_add_function, SWIG_Lua_add_variable(), and SWIG_Lua_InstallConstants().

Referenced by SWIG_Lua_add_class_static_details(), and SWIG_Lua_namespace_register().

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

◆ SWIG_Lua_add_variable()

SWIGINTERN void SWIG_Lua_add_variable ( lua_State *  L,
const char *  name,
lua_CFunction  getFn,
lua_CFunction  setFn 
)

Definition at line 2025 of file gv_lua.cpp.

References L, SWIG_Lua_add_function, and SWIG_Lua_get_table.

Referenced by SWIG_Lua_add_class_instance_details(), and SWIG_Lua_add_namespace_details().

Here is the caller graph for this function:

◆ SWIG_Lua_AddMetatable()

SWIGINTERN void SWIG_Lua_AddMetatable ( lua_State *  L,
swig_type_info type 
)

Definition at line 2496 of file gv_lua.cpp.

References L, SWIG_Lua_get_class_metatable(), and type.

Referenced by SWIG_Lua_NewPackedObj(), and SWIG_Lua_NewPointerObj().

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

◆ SWIG_Lua_class_destruct()

SWIGINTERN int SWIG_Lua_class_destruct ( lua_State *  L)

Definition at line 1790 of file gv_lua.cpp.

References swig_type_info::clientdata, swig_lua_class::destructor, L, swig_lua_userdata::own, swig_lua_userdata::ptr, and swig_lua_userdata::type.

Referenced by SWIG_Lua_class_register_instance().

Here is the caller graph for this function:

◆ SWIG_Lua_class_disown()

SWIGINTERN int SWIG_Lua_class_disown ( lua_State *  L)

Definition at line 1824 of file gv_lua.cpp.

References L, and swig_lua_userdata::own.

Referenced by SWIG_Lua_class_register_instance().

Here is the caller graph for this function:

◆ SWIG_Lua_class_do_get()

SWIGINTERN int SWIG_Lua_class_do_get ( lua_State *  L,
swig_type_info type,
int SWIGUNUSED  first_arg,
int *  ret 
)

Definition at line 1624 of file gv_lua.cpp.

References L, SWIG_Lua_class_do_get(), SWIG_Lua_get_table, SWIG_Lua_iterate_bases(), SWIG_OK, and type.

Referenced by SWIG_Lua_class_do_get(), and SWIG_Lua_class_get().

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

◆ SWIG_Lua_class_do_get_item()

SWIGINTERN int SWIG_Lua_class_do_get_item ( lua_State *  L,
swig_type_info type,
int SWIGUNUSED  first_arg,
int *  ret 
)

Definition at line 1586 of file gv_lua.cpp.

References L, SWIG_Lua_class_do_get_item(), SWIG_Lua_get_table, SWIG_Lua_iterate_bases(), SWIG_OK, and type.

Referenced by SWIG_Lua_class_do_get_item(), and SWIG_Lua_class_get().

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

◆ SWIG_Lua_class_do_set()

SWIGINTERN int SWIG_Lua_class_do_set ( lua_State *  L,
swig_type_info type,
int  first_arg,
int *  ret 
)

Definition at line 1703 of file gv_lua.cpp.

References L, SWIG_Lua_class_do_set(), SWIG_Lua_get_table, SWIG_Lua_iterate_bases(), SWIG_OK, and type.

Referenced by SWIG_Lua_class_do_set(), and SWIG_Lua_class_set().

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

◆ SWIG_Lua_class_equal()

SWIGRUNTIME int SWIG_Lua_class_equal ( lua_State *  L)

Definition at line 1839 of file gv_lua.cpp.

References L, and swig_lua_userdata::ptr.

Referenced by SWIG_init(), and SWIG_Lua_add_class_user_metamethods().

Here is the caller graph for this function:

◆ SWIG_Lua_class_get()

SWIGINTERN int SWIG_Lua_class_get ( lua_State *  L)

Definition at line 1676 of file gv_lua.cpp.

References L, SWIG_Lua_class_do_get(), SWIG_Lua_class_do_get_item(), SWIG_OK, type, and swig_lua_userdata::type.

Referenced by SWIG_Lua_class_register_instance().

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

◆ SWIG_Lua_class_register()

SWIGINTERN void SWIG_Lua_class_register ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2423 of file gv_lua.cpp.

References swig_lua_class::cls_static, swig_lua_class::fqname, L, swig_lua_namespace::name, SWIG_Lua_class_register_instance(), SWIG_Lua_class_register_static(), SWIG_Lua_get_class_metatable(), and SWIGUNUSED.

Referenced by SWIG_Lua_add_namespace_classes().

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

◆ SWIG_Lua_class_register_instance()

SWIGINTERN void SWIG_Lua_class_register_instance ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2341 of file gv_lua.cpp.

References swig_lua_class::bases, swig_lua_class::fqname, L, lua_absindex, SWIG_Lua_add_class_instance_details(), SWIG_Lua_add_function, SWIG_Lua_class_destruct(), SWIG_Lua_class_disown(), SWIG_Lua_class_get(), SWIG_Lua_class_register_instance(), SWIG_Lua_class_set(), SWIG_Lua_get_class_metatable(), SWIG_Lua_get_class_registry(), and SWIGUNUSED.

Referenced by SWIG_Lua_class_register(), and SWIG_Lua_class_register_instance().

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

◆ SWIG_Lua_class_register_static()

SWIGINTERN void SWIG_Lua_class_register_static ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2307 of file gv_lua.cpp.

References swig_lua_class::cls_static, swig_lua_class::constructor, L, swig_lua_namespace::name, swig_lua_class::name, SWIG_Lua_add_class_static_details(), SWIG_Lua_add_function, SWIG_Lua_namespace_register(), and SWIGUNUSED.

Referenced by SWIG_Lua_class_register().

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

◆ SWIG_Lua_class_set()

SWIGINTERN int SWIG_Lua_class_set ( lua_State *  L)

Definition at line 1765 of file gv_lua.cpp.

References L, SWIG_Lua_class_do_set(), SWIG_Lua_pushferrstring(), SWIG_OK, type, and swig_lua_userdata::type.

Referenced by SWIG_Lua_class_register_instance().

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

◆ SWIG_Lua_class_tostring()

SWIGINTERN int SWIG_Lua_class_tostring ( lua_State *  L)

Definition at line 1811 of file gv_lua.cpp.

References L, swig_lua_userdata::ptr, swig_type_info::str, and swig_lua_userdata::type.

Referenced by SWIG_Lua_add_class_user_metamethods().

Here is the caller graph for this function:

◆ SWIG_Lua_ConvertPacked()

SWIGRUNTIME int SWIG_Lua_ConvertPacked ( lua_State *  L,
int  index,
void *  ptr,
size_t  size,
swig_type_info type 
)

Definition at line 2605 of file gv_lua.cpp.

References swig_lua_rawdata::data, L, SWIG_ERROR, SWIG_OK, type, and swig_lua_rawdata::type.

◆ SWIG_Lua_ConvertPtr()

SWIGRUNTIME int SWIG_Lua_ConvertPtr ( lua_State *  L,
int  index,
void **  ptr,
swig_type_info type,
int  flags 
)

Definition at line 2531 of file gv_lua.cpp.

References flags, L, swig_type_info::name, swig_lua_userdata::own, swig_lua_userdata::ptr, 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_TypeCast(), SWIG_TypeCheck(), type, and swig_lua_userdata::type.

Here is the call graph for this function:

◆ SWIG_Lua_create_class_registry()

SWIGINTERN void SWIG_Lua_create_class_registry ( lua_State *  L)

Definition at line 1874 of file gv_lua.cpp.

References L, and SWIG_Lua_populate_inheritable_metamethods().

Referenced by SWIG_Lua_get_class_registry().

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

◆ SWIG_Lua_do_resolve_metamethod()

SWIGINTERN int SWIG_Lua_do_resolve_metamethod ( lua_State *  L,
const swig_lua_class clss,
int  metamethod_name_idx,
int  skip_check 
)

Definition at line 2130 of file gv_lua.cpp.

References swig_lua_class::bases, swig_lua_class::fqname, L, SWIG_Lua_do_resolve_metamethod(), SWIG_Lua_get_class_metatable(), and SWIG_Lua_resolve_metamethod().

Referenced by SWIG_Lua_do_resolve_metamethod(), and SWIG_Lua_resolve_metamethod().

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

◆ SWIG_Lua_dostring()

SWIGINTERN int SWIG_Lua_dostring ( lua_State *  L,
const char *  str 
)

Definition at line 2703 of file gv_lua.cpp.

References L, ok(), str, SWIG_DOSTRING_FAIL, and top().

Referenced by SWIG_init_user().

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

◆ SWIG_Lua_elua_class_register_instance()

SWIGINTERN void SWIG_Lua_elua_class_register_instance ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 2461 of file gv_lua.cpp.

References swig_lua_class::bases, swig_lua_class::fqname, L, swig_lua_class::metatable, SWIG_Lua_elua_class_register_instance(), SWIG_Lua_get_class_registry(), and SWIGUNUSED.

Referenced by SWIG_init(), and SWIG_Lua_elua_class_register_instance().

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

◆ SWIG_Lua_get_class_metatable()

SWIGINTERN void SWIG_Lua_get_class_metatable ( lua_State *  L,
const char *  cname 
)

Definition at line 1928 of file gv_lua.cpp.

References L, and SWIG_Lua_get_class_registry().

Referenced by SWIG_Lua_add_class_instance_details(), SWIG_Lua_add_class_user_metamethod(), SWIG_Lua_add_class_user_metamethods(), SWIG_Lua_AddMetatable(), SWIG_Lua_class_register(), SWIG_Lua_class_register_instance(), SWIG_Lua_do_resolve_metamethod(), and SWIG_Lua_iterate_bases().

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

◆ SWIG_Lua_get_class_registry()

SWIGINTERN void SWIG_Lua_get_class_registry ( lua_State *  L)

Definition at line 1898 of file gv_lua.cpp.

References L, and SWIG_Lua_create_class_registry().

Referenced by SWIG_Lua_class_register_instance(), SWIG_Lua_elua_class_register_instance(), SWIG_Lua_get_class_metatable(), and SWIG_Lua_get_inheritable_metamethods().

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

◆ SWIG_Lua_get_inheritable_metamethods()

SWIGINTERN void SWIG_Lua_get_inheritable_metamethods ( lua_State *  L)

Definition at line 1913 of file gv_lua.cpp.

References L, and SWIG_Lua_get_class_registry().

Referenced by SWIG_Lua_add_class_user_metamethods().

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

◆ SWIG_Lua_GetModule()

SWIGRUNTIME swig_module_info * SWIG_Lua_GetModule ( lua_State *  L)

Definition at line 1124 of file gv_lua.cpp.

References L, SWIG_RUNTIME_VERSION, and SWIG_TYPE_TABLE_NAME.

◆ SWIG_Lua_init_base_class()

SWIGINTERN void SWIG_Lua_init_base_class ( lua_State *  L,
swig_lua_class clss 
)

Definition at line 1943 of file gv_lua.cpp.

References swig_lua_class::base_names, swig_lua_class::bases, and SWIG_TypeQueryModule().

Referenced by SWIG_init().

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

◆ SWIG_Lua_InstallConstants()

SWIGINTERN void SWIG_Lua_InstallConstants ( lua_State *  L,
swig_lua_const_info  constants[] 
)

Referenced by SWIG_Lua_add_namespace_details().

Here is the caller graph for this function:

◆ SWIG_lua_isnilstring()

◆ SWIG_Lua_iterate_bases()

SWIGINTERN int SWIG_Lua_iterate_bases ( lua_State *  L,
swig_type_info *SWIGUNUSED  swig_type,
int  first_arg,
swig_lua_base_iterator_func  func,
int *const  ret 
)

Definition at line 1486 of file gv_lua.cpp.

References swig_lua_class::fqname, L, lua_rawlen, SWIG_ERROR, SWIG_Lua_get_class_metatable(), SWIG_Lua_get_table, and SWIG_TypeQueryModule().

Referenced by SWIG_Lua_class_do_get(), SWIG_Lua_class_do_get_item(), and SWIG_Lua_class_do_set().

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

◆ SWIG_Lua_MustGetPtr()

SWIGRUNTIME void * SWIG_Lua_MustGetPtr ( lua_State *  L,
int  index,
swig_type_info type,
int  flags,
int  argnum,
const char *  func_name 
)

Definition at line 2582 of file gv_lua.cpp.

References flags, L, SWIG_ConvertPtr, SWIG_IsOK, and type.

◆ SWIG_Lua_namespace_get()

SWIGINTERN int SWIG_Lua_namespace_get ( lua_State *  L)

Definition at line 1305 of file gv_lua.cpp.

References L, and SWIG_Lua_get_table.

Referenced by SWIG_Lua_namespace_register().

Here is the caller graph for this function:

◆ SWIG_Lua_namespace_register()

SWIGINTERN void SWIG_Lua_namespace_register ( lua_State *  L,
swig_lua_namespace ns,
int  reg 
)

Definition at line 1426 of file gv_lua.cpp.

References L, swig_lua_namespace::name, swig_lua_namespace::ns_namespaces, SWIG_Lua_add_function, SWIG_Lua_add_namespace_classes(), SWIG_Lua_add_namespace_details(), SWIG_Lua_namespace_get(), SWIG_Lua_namespace_register(), SWIG_Lua_namespace_set(), and SWIGUNUSED.

Referenced by SWIG_init(), SWIG_Lua_class_register_static(), and SWIG_Lua_namespace_register().

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

◆ SWIG_Lua_namespace_set()

SWIGINTERN int SWIG_Lua_namespace_set ( lua_State *  L)

Definition at line 1342 of file gv_lua.cpp.

References L, and SWIG_Lua_get_table.

Referenced by SWIG_Lua_namespace_register().

Here is the caller graph for this function:

◆ SWIG_Lua_NewPackedObj()

SWIGRUNTIME void SWIG_Lua_NewPackedObj ( lua_State *  L,
void *  ptr,
size_t  size,
swig_type_info type 
)

Definition at line 2593 of file gv_lua.cpp.

References swig_lua_rawdata::data, L, swig_lua_rawdata::own, SWIG_Lua_AddMetatable(), type, and swig_lua_rawdata::type.

Here is the call graph for this function:

◆ SWIG_Lua_NewPointerObj()

SWIGRUNTIME void SWIG_Lua_NewPointerObj ( lua_State *  L,
void *  ptr,
swig_type_info type,
int  own 
)

Definition at line 2513 of file gv_lua.cpp.

References L, swig_lua_userdata::own, swig_lua_userdata::ptr, SWIG_Lua_AddMetatable(), type, and swig_lua_userdata::type.

Here is the call graph for this function:

◆ SWIG_Lua_populate_inheritable_metamethods()

SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods ( lua_State *  L)

Definition at line 1854 of file gv_lua.cpp.

References L, and SWIG_Lua_add_boolean.

Referenced by SWIG_Lua_create_class_registry().

Here is the caller graph for this function:

◆ SWIG_Lua_pusherrstring()

SWIGRUNTIME void SWIG_Lua_pusherrstring ( lua_State *  L,
const char *  str 
)

Definition at line 959 of file gv_lua.cpp.

References L, and str.

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

Here is the caller graph for this function:

◆ SWIG_Lua_pushferrstring()

SWIGRUNTIME void SWIG_Lua_pushferrstring ( lua_State *  L,
const char *  fmt,
  ... 
)

Definition at line 970 of file gv_lua.cpp.

References L.

Referenced by SWIG_Lua_class_set(), and SWIG_Lua_resolve_metamethod().

Here is the caller graph for this function:

◆ SWIG_Lua_resolve_metamethod()

SWIGRUNTIME int SWIG_Lua_resolve_metamethod ( lua_State *  L)

Definition at line 2165 of file gv_lua.cpp.

References L, SWIG_Lua_do_resolve_metamethod(), and SWIG_Lua_pushferrstring().

Referenced by SWIG_Lua_add_class_user_metamethod(), and SWIG_Lua_do_resolve_metamethod().

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

◆ SWIG_Lua_set_immutable()

SWIGINTERN int SWIG_Lua_set_immutable ( lua_State *  L)

Definition at line 1149 of file gv_lua.cpp.

References L.

◆ SWIG_Lua_SetModule()

SWIGRUNTIME void SWIG_Lua_SetModule ( lua_State *  L,
swig_module_info module 
)

Definition at line 1135 of file gv_lua.cpp.

References L, SWIG_RUNTIME_VERSION, and SWIG_TYPE_TABLE_NAME.

◆ SWIG_Lua_type()

SWIGRUNTIME int SWIG_Lua_type ( lua_State *  L)

Definition at line 2633 of file gv_lua.cpp.

References L, and SWIG_Lua_typename().

Referenced by SWIG_init().

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

◆ SWIG_Lua_typename()

SWIGRUNTIME const char * SWIG_Lua_typename ( lua_State *  L,
int  tp 
)

Definition at line 2619 of file gv_lua.cpp.

References L, swig_type_info::str, and swig_lua_userdata::type.

Referenced by SWIG_Lua_type().

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 571 of file gv_lua.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 645 of file gv_lua.cpp.

Referenced by SWIG_PackDataName(), and SWIG_PackVoidPtr().

Here is the caller graph for this function:

◆ SWIG_PackDataName()

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

Definition at line 713 of file gv_lua.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 689 of file gv_lua.cpp.

References SWIG_PackData().

Here is the call graph for this function:

◆ SWIG_PropagateClientData()

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 7311 of file gv_lua.cpp.

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

Referenced by SWIG_init().

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

◆ SWIG_TypeCast()

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

Definition at line 489 of file gv_lua.cpp.

References swig_cast_info::converter.

Referenced by SWIG_Lua_ConvertPtr().

Here is the caller graph for this function:

◆ SWIG_TypeCheck()

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

Definition at line 435 of file gv_lua.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(), and SWIG_Lua_ConvertPtr().

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 541 of file gv_lua.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 408 of file gv_lua.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 497 of file gv_lua.cpp.

References swig_type_info::dcast.

◆ SWIG_TypeEquiv()

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

Definition at line 427 of file gv_lua.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 511 of file gv_lua.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 393 of file gv_lua.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 557 of file gv_lua.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 520 of file gv_lua.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 616 of file gv_lua.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_Lua_init_base_class(), and SWIG_Lua_iterate_bases().

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 661 of file gv_lua.cpp.

Referenced by SWIG_UnpackDataName(), and SWIG_UnpackVoidPtr().

Here is the caller graph for this function:

◆ SWIG_UnpackDataName()

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

Definition at line 728 of file gv_lua.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 700 of file gv_lua.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.

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.

Referenced by _wrap_tred().

Here is the caller graph for this function:

◆ write() [1/2]

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

Definition at line 723 of file gv.cpp.

Referenced by _wrap_write__SWIG_0(), and _wrap_write__SWIG_1().

Here is the caller graph for this function:

◆ write() [2/2]

bool write ( Agraph_t g,
FILE *  f 
)
extern

Definition at line 716 of file gv.cpp.

Variable Documentation

◆ _swigc__p_Agedge_t

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

Definition at line 7089 of file gv_lua.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 7090 of file gv_lua.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 7091 of file gv_lua.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 7092 of file gv_lua.cpp.

◆ _swigc__p_FILE

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

Definition at line 7093 of file gv_lua.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 7075 of file gv_lua.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 7076 of file gv_lua.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 7077 of file gv_lua.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 7078 of file gv_lua.cpp.

◆ _swigt__p_FILE

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

Definition at line 7079 of file gv_lua.cpp.

◆ swig_cast_initial

swig_cast_info* swig_cast_initial[]
static
Initial value:
= {
}
static swig_cast_info _swigc__p_Agraph_t[]
Definition gv_lua.cpp:7091
static swig_cast_info _swigc__p_FILE[]
Definition gv_lua.cpp:7093
static swig_cast_info _swigc__p_Agnode_t[]
Definition gv_lua.cpp:7090
static swig_cast_info _swigc__p_Agedge_t[]
Definition gv_lua.cpp:7089
static swig_cast_info _swigc__p_Agsym_t[]
Definition gv_lua.cpp:7092

Definition at line 7095 of file gv_lua.cpp.

Referenced by SWIG_InitializeModule().

◆ SWIG_LUACODE

const char* SWIG_LUACODE
Initial value:
=
""

Definition at line 7429 of file gv_lua.cpp.

◆ swig_module

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

Definition at line 2734 of file gv_lua.cpp.

Referenced by SWIG_InitializeModule(), and SWIG_PropagateClientData().

◆ swig_SwigModule

swig_lua_namespace swig_SwigModule
static
Initial value:
= {
"gv",
}
static swig_lua_class * swig_SwigModule_classes[]
Definition gv_lua.cpp:7054
static swig_lua_namespace * swig_SwigModule_namespaces[]
Definition gv_lua.cpp:7057
static swig_lua_const_info swig_SwigModule_constants[]
Definition gv_lua.cpp:7000
static swig_lua_method swig_SwigModule_methods[]
Definition gv_lua.cpp:7003
static swig_lua_attribute swig_SwigModule_attributes[]
Definition gv_lua.cpp:6997

Definition at line 7061 of file gv_lua.cpp.

Referenced by SWIG_init().

◆ swig_SwigModule_attributes

swig_lua_attribute swig_SwigModule_attributes[]
static
Initial value:
= {
{0,0,0}
}

Definition at line 6997 of file gv_lua.cpp.

◆ swig_SwigModule_classes

swig_lua_class* swig_SwigModule_classes[]
static
Initial value:
= {
0
}

Definition at line 7054 of file gv_lua.cpp.

◆ swig_SwigModule_constants

swig_lua_const_info swig_SwigModule_constants[]
static
Initial value:
= {
{0,0,0,0,0,0}
}

Definition at line 7000 of file gv_lua.cpp.

◆ swig_SwigModule_methods

swig_lua_method swig_SwigModule_methods[]
static

Definition at line 7003 of file gv_lua.cpp.

◆ swig_SwigModule_namespaces

swig_lua_namespace* swig_SwigModule_namespaces[]
static
Initial value:
= {
0
}

Definition at line 7057 of file gv_lua.cpp.

◆ swig_type_initial

swig_type_info* swig_type_initial[]
static
Initial value:
= {
}
static swig_type_info _swigt__p_Agsym_t
Definition gv_lua.cpp:7078
static swig_type_info _swigt__p_Agraph_t
Definition gv_lua.cpp:7077
static swig_type_info _swigt__p_FILE
Definition gv_lua.cpp:7079
static swig_type_info _swigt__p_Agnode_t
Definition gv_lua.cpp:7076
static swig_type_info _swigt__p_Agedge_t
Definition gv_lua.cpp:7075

Definition at line 7081 of file gv_lua.cpp.

Referenced by SWIG_InitializeModule().

◆ swig_types

swig_type_info* swig_types[6]
static

Definition at line 2733 of file gv_lua.cpp.

Referenced by SWIG_init().