SYMBOL INDEX (1920 symbols across 294 files) FILE: datasrc/compile.py function create_enum_table (line 6) | def create_enum_table(names, num): function create_flags_table (line 15) | def create_flags_table(names): function EmitEnum (line 25) | def EmitEnum(names, num): function EmitFlags (line 34) | def EmitFlags(names, num): FILE: datasrc/content.py class Sound (line 4) | class Sound(Struct): method __init__ (line 5) | def __init__(self, filename=""): class SoundSet (line 10) | class SoundSet(Struct): method __init__ (line 11) | def __init__(self, name="", files=[]): class Image (line 19) | class Image(Struct): method __init__ (line 20) | def __init__(self, name="", filename=""): class SpriteSet (line 26) | class SpriteSet(Struct): method __init__ (line 27) | def __init__(self, name="", image=None, gridx=0, gridy=0): class Sprite (line 33) | class Sprite(Struct): method __init__ (line 34) | def __init__(self, name="", Set=None, x=0, y=0, w=0, h=0): class Pickup (line 43) | class Pickup(Struct): method __init__ (line 44) | def __init__(self, name="", respawntime=15, spawndelay=0): class AnimKeyframe (line 50) | class AnimKeyframe(Struct): method __init__ (line 51) | def __init__(self, time=0, x=0, y=0, angle=0): class AnimSequence (line 58) | class AnimSequence(Struct): method __init__ (line 59) | def __init__(self): class Animation (line 63) | class Animation(Struct): method __init__ (line 64) | def __init__(self, name=""): class WeaponSpec (line 72) | class WeaponSpec(Struct): method __init__ (line 73) | def __init__(self, container=None, name=""): class Weapon_Hammer (line 102) | class Weapon_Hammer(Struct): method __init__ (line 103) | def __init__(self): class Weapon_Gun (line 107) | class Weapon_Gun(Struct): method __init__ (line 108) | def __init__(self): class Weapon_Shotgun (line 115) | class Weapon_Shotgun(Struct): method __init__ (line 116) | def __init__(self): class Weapon_Grenade (line 124) | class Weapon_Grenade(Struct): method __init__ (line 125) | def __init__(self): class Weapon_Laser (line 132) | class Weapon_Laser(Struct): method __init__ (line 133) | def __init__(self): class Weapon_Ninja (line 141) | class Weapon_Ninja(Struct): method __init__ (line 142) | def __init__(self): class Weapons (line 149) | class Weapons(Struct): method __init__ (line 150) | def __init__(self): class DataContainer (line 160) | class DataContainer(Struct): method __init__ (line 161) | def __init__(self): function FileList (line 171) | def FileList(format, num): FILE: datasrc/datatypes.py function GetID (line 4) | def GetID(): function GetUID (line 8) | def GetUID(): function FixCasing (line 11) | def FixCasing(Str): function FormatName (line 25) | def FormatName(type, name): class BaseType (line 32) | class BaseType: method __init__ (line 33) | def __init__(self, type_name): method Identifyer (line 38) | def Identifyer(self): return "x"+str(self._id) method TargetName (line 39) | def TargetName(self): return self._target_name method TypeName (line 40) | def TypeName(self): return self._type_name method ID (line 41) | def ID(self): return self._id; method EmitDeclaration (line 43) | def EmitDeclaration(self, name): method EmitPreDefinition (line 45) | def EmitPreDefinition(self, target_name): method EmitDefinition (line 48) | def EmitDefinition(self, name): class MemberType (line 51) | class MemberType: method __init__ (line 52) | def __init__(self, name, var): class Struct (line 56) | class Struct(BaseType): method __init__ (line 57) | def __init__(self, type_name): method Members (line 59) | def Members(self): method EmitTypeDeclaration (line 75) | def EmitTypeDeclaration(self, name): method EmitPreDefinition (line 84) | def EmitPreDefinition(self, target_name): method EmitDefinition (line 90) | def EmitDefinition(self, name): class Array (line 97) | class Array(BaseType): method __init__ (line 98) | def __init__(self, type): method Add (line 102) | def Add(self, instance): method EmitDeclaration (line 106) | def EmitDeclaration(self, name): method EmitPreDefinition (line 109) | def EmitPreDefinition(self, target_name): method EmitDefinition (line 128) | def EmitDefinition(self, name): class Int (line 133) | class Int(BaseType): method __init__ (line 134) | def __init__(self, value): method Set (line 137) | def Set(self, value): method EmitDefinition (line 139) | def EmitDefinition(self, name): class Float (line 143) | class Float(BaseType): method __init__ (line 144) | def __init__(self, value): method Set (line 147) | def Set(self, value): method EmitDefinition (line 149) | def EmitDefinition(self, name): class String (line 153) | class String(BaseType): method __init__ (line 154) | def __init__(self, value): method Set (line 157) | def Set(self, value): method EmitDefinition (line 159) | def EmitDefinition(self, name): class Pointer (line 162) | class Pointer(BaseType): method __init__ (line 163) | def __init__(self, type, target): method Set (line 166) | def Set(self, target): method EmitDefinition (line 168) | def EmitDefinition(self, name): class TextureHandle (line 171) | class TextureHandle(BaseType): method __init__ (line 172) | def __init__(self): method EmitDefinition (line 174) | def EmitDefinition(self, name): class SampleHandle (line 177) | class SampleHandle(BaseType): method __init__ (line 178) | def __init__(self): method EmitDefinition (line 180) | def EmitDefinition(self, name): function EmitTypeDeclaration (line 185) | def EmitTypeDeclaration(root): function EmitDefinition (line 189) | def EmitDefinition(root, name): class Object (line 199) | class Object: class Enum (line 202) | class Enum: method __init__ (line 203) | def __init__(self, name, values): class Flags (line 207) | class Flags: method __init__ (line 208) | def __init__(self, name, values): class NetObject (line 212) | class NetObject: method __init__ (line 213) | def __init__(self, name, variables): method emit_declaration (line 223) | def emit_declaration(self): method emit_validate (line 232) | def emit_validate(self): class NetEvent (line 244) | class NetEvent(NetObject): method __init__ (line 245) | def __init__(self, name, variables): class NetMessage (line 251) | class NetMessage(NetObject): method __init__ (line 252) | def __init__(self, name, variables): method emit_unpack (line 257) | def emit_unpack(self): method emit_declaration (line 269) | def emit_declaration(self): class NetVariable (line 287) | class NetVariable: method __init__ (line 288) | def __init__(self, name): method emit_declaration (line 290) | def emit_declaration(self): method emit_validate (line 292) | def emit_validate(self): method emit_pack (line 294) | def emit_pack(self): method emit_unpack (line 296) | def emit_unpack(self): method emit_unpack_check (line 298) | def emit_unpack_check(self): class NetString (line 301) | class NetString(NetVariable): method emit_declaration (line 302) | def emit_declaration(self): method emit_unpack (line 304) | def emit_unpack(self): method emit_pack (line 306) | def emit_pack(self): class NetStringStrict (line 309) | class NetStringStrict(NetVariable): method emit_declaration (line 310) | def emit_declaration(self): method emit_unpack (line 312) | def emit_unpack(self): method emit_pack (line 314) | def emit_pack(self): class NetIntAny (line 317) | class NetIntAny(NetVariable): method emit_declaration (line 318) | def emit_declaration(self): method emit_unpack (line 320) | def emit_unpack(self): method emit_pack (line 322) | def emit_pack(self): class NetIntRange (line 325) | class NetIntRange(NetIntAny): method __init__ (line 326) | def __init__(self, name, min, max): method emit_validate (line 330) | def emit_validate(self): method emit_unpack_check (line 332) | def emit_unpack_check(self): class NetEnum (line 335) | class NetEnum(NetIntRange): method __init__ (line 336) | def __init__(self, name, enum): class NetFlag (line 339) | class NetFlag(NetIntAny): method __init__ (line 340) | def __init__(self, name, flag): method emit_validate (line 348) | def emit_validate(self): method emit_unpack_check (line 350) | def emit_unpack_check(self): class NetBool (line 353) | class NetBool(NetIntRange): method __init__ (line 354) | def __init__(self, name): class NetTick (line 357) | class NetTick(NetIntRange): method __init__ (line 358) | def __init__(self, name): class NetArray (line 361) | class NetArray(NetVariable): method __init__ (line 362) | def __init__(self, var, size): method emit_declaration (line 367) | def emit_declaration(self): method emit_validate (line 370) | def emit_validate(self): method emit_unpack (line 376) | def emit_unpack(self): method emit_pack (line 382) | def emit_pack(self): method emit_unpack_check (line 388) | def emit_unpack_check(self): FILE: other/freetype/include/freetype/config/ftconfig.h type FT_Int16 (line 165) | typedef signed short FT_Int16; type FT_UInt16 (line 176) | typedef unsigned short FT_UInt16; type FT_Int32 (line 193) | typedef signed XXX FT_Int32; type FT_UInt32 (line 204) | typedef unsigned XXX FT_UInt32; type FT_Int32 (line 212) | typedef signed int FT_Int32; type FT_UInt32 (line 213) | typedef unsigned int FT_UInt32; type FT_Int32 (line 217) | typedef signed long FT_Int32; type FT_UInt32 (line 218) | typedef unsigned long FT_UInt32; type FT_Fast (line 228) | typedef int FT_Fast; type FT_UFast (line 229) | typedef unsigned int FT_UFast; type FT_Fast (line 233) | typedef long FT_Fast; type FT_UFast (line 234) | typedef unsigned long FT_UFast; function FT_Int32 (line 345) | static __inline__ FT_Int32 function FT_Int32 (line 372) | static __inline__ FT_Int32 FILE: other/freetype/include/freetype/freetype.h type FT_Glyph_Metrics_ (line 240) | struct FT_Glyph_Metrics_ type FT_Bitmap_Size (line 294) | typedef struct FT_Bitmap_Size_ type FT_LibraryRec_ (line 335) | struct FT_LibraryRec_ type FT_ModuleRec_ (line 348) | struct FT_ModuleRec_ type FT_DriverRec_ (line 360) | struct FT_DriverRec_ type FT_RendererRec_ (line 374) | struct FT_RendererRec_ type FT_FaceRec_ (line 399) | struct FT_FaceRec_ type FT_SizeRec_ (line 429) | struct FT_SizeRec_ type FT_GlyphSlotRec_ (line 450) | struct FT_GlyphSlotRec_ type FT_CharMapRec_ (line 482) | struct FT_CharMapRec_ type FT_Encoding (line 655) | typedef enum FT_Encoding_ type FT_CharMapRec (line 736) | typedef struct FT_CharMapRec_ type FT_Face_InternalRec_ (line 767) | struct FT_Face_InternalRec_ type FT_FaceRec (line 912) | typedef struct FT_FaceRec_ type FT_Size_InternalRec_ (line 1302) | struct FT_Size_InternalRec_ type FT_Size_Metrics (line 1360) | typedef struct FT_Size_Metrics_ type FT_SizeRec (line 1395) | typedef struct FT_SizeRec_ type FT_SubGlyphRec_ (line 1421) | struct FT_SubGlyphRec_ type FT_Slot_InternalRec_ (line 1433) | struct FT_Slot_InternalRec_ type FT_GlyphSlotRec (line 1605) | typedef struct FT_GlyphSlotRec_ type FT_Parameter (line 1760) | typedef struct FT_Parameter_ type FT_Open_Args (line 1826) | typedef struct FT_Open_Args_ type FT_Size_Request_Type (line 2138) | typedef enum FT_Size_Request_Type_ type FT_Size_RequestRec (line 2178) | typedef struct FT_Size_RequestRec_ type FT_Size_RequestRec_ (line 2197) | struct FT_Size_RequestRec_ type FT_Render_Mode (line 2697) | typedef enum FT_Render_Mode_ type FT_Kerning_Mode (line 2773) | typedef enum FT_Kerning_Mode_ FILE: other/freetype/include/freetype/ftbdf.h type BDF_PropertyType_ (line 74) | enum BDF_PropertyType_ type BDF_PropertyRec_ (line 93) | struct BDF_PropertyRec_ type BDF_PropertyRec (line 117) | typedef struct BDF_PropertyRec_ FILE: other/freetype/include/freetype/ftcache.h type FT_Error (line 209) | typedef FT_Error type FTC_ManagerRec_ (line 261) | struct FTC_ManagerRec_ type FTC_NodeRec_ (line 281) | struct FTC_NodeRec_ type FTC_ScalerRec (line 436) | typedef struct FTC_ScalerRec_ type FTC_ScalerRec_ (line 456) | struct FTC_ScalerRec_ type FTC_CMapCacheRec_ (line 571) | struct FTC_CMapCacheRec_ type FTC_ImageTypeRec (line 678) | typedef struct FTC_ImageTypeRec_ type FTC_ImageTypeRec_ (line 697) | struct FTC_ImageTypeRec_ type FTC_ImageCacheRec_ (line 730) | struct FTC_ImageCacheRec_ type FTC_SBitRec_ (line 871) | struct FTC_SBitRec_ type FTC_SBitRec (line 909) | typedef struct FTC_SBitRec_ type FTC_SBitCacheRec_ (line 938) | struct FTC_SBitCacheRec_ type FTC_FontRec (line 1093) | typedef struct FTC_FontRec_ type FTC_FontRec (line 1116) | typedef FTC_FontRec* FTC_Font; FILE: other/freetype/include/freetype/ftglyph.h type FT_Glyph_Class_ (line 69) | struct FT_Glyph_Class_ type FT_GlyphRec_ (line 87) | struct FT_GlyphRec_ type FT_GlyphRec (line 108) | typedef struct FT_GlyphRec_ type FT_BitmapGlyphRec_ (line 127) | struct FT_BitmapGlyphRec_ type FT_BitmapGlyphRec (line 160) | typedef struct FT_BitmapGlyphRec_ type FT_OutlineGlyphRec_ (line 179) | struct FT_OutlineGlyphRec_ type FT_OutlineGlyphRec (line 208) | typedef struct FT_OutlineGlyphRec_ type FT_Glyph_BBox_Mode (line 317) | typedef enum FT_Glyph_BBox_Mode_ FILE: other/freetype/include/freetype/ftimage.h type FT_Vector (line 75) | typedef struct FT_Vector_ type FT_BBox (line 116) | typedef struct FT_BBox_ type FT_Pixel_Mode (line 172) | typedef enum FT_Pixel_Mode_ type FT_Palette_Mode (line 235) | typedef enum FT_Palette_Mode_ type FT_Bitmap (line 310) | typedef struct FT_Bitmap_ type FT_Outline (line 383) | typedef struct FT_Outline_ type FT_Outline_Funcs (line 691) | typedef struct FT_Outline_Funcs_ type FT_Glyph_Format (line 778) | typedef enum FT_Glyph_Format_ type FT_RasterRec_ (line 862) | struct FT_RasterRec_ type FT_Span (line 891) | typedef struct FT_Span_ type FT_Raster_Params (line 1104) | typedef struct FT_Raster_Params_ type FT_Raster_Funcs (line 1288) | typedef struct FT_Raster_Funcs_ FILE: other/freetype/include/freetype/ftincrem.h type FT_IncrementalRec_ (line 84) | struct FT_IncrementalRec_ type FT_Incremental_MetricsRec (line 115) | typedef struct FT_Incremental_MetricsRec_ type FT_Incremental_MetricsRec_ (line 134) | struct FT_Incremental_MetricsRec_ type FT_Error (line 178) | typedef FT_Error type FT_Error (line 240) | typedef FT_Error type FT_Incremental_FuncsRec (line 269) | typedef struct FT_Incremental_FuncsRec_ type FT_Incremental_InterfaceRec (line 314) | typedef struct FT_Incremental_InterfaceRec_ type FT_Incremental_InterfaceRec (line 331) | typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface; FILE: other/freetype/include/freetype/ftlcdfil.h type FT_LcdFilter_ (line 94) | enum FT_LcdFilter_ FILE: other/freetype/include/freetype/ftmm.h type FT_MM_Axis_ (line 73) | struct FT_MM_Axis_ type FT_Multi_Master (line 103) | typedef struct FT_Multi_Master_ type FT_Var_Axis (line 140) | typedef struct FT_Var_Axis_ type FT_Var_Named_Style (line 170) | typedef struct FT_Var_Named_Style_ type FT_MM_Var (line 210) | typedef struct FT_MM_Var_ FILE: other/freetype/include/freetype/ftmodapi.h type FT_Pointer (line 79) | typedef FT_Pointer FT_Module_Interface; type FT_Error (line 93) | typedef FT_Error type FT_Module_Interface (line 125) | typedef FT_Module_Interface type FT_Module_Class (line 159) | typedef struct FT_Module_Class_ type FT_TrueTypeEngineType (line 442) | typedef enum FT_TrueTypeEngineType_ FILE: other/freetype/include/freetype/ftoutln.h function FT_BEGIN_HEADER (line 34) | FT_BEGIN_HEADER FILE: other/freetype/include/freetype/ftrender.h type FT_Error (line 57) | typedef FT_Error type FT_Error (line 61) | typedef FT_Error type FT_Glyph_Class_ (line 74) | struct FT_Glyph_Class_ type FT_Error (line 87) | typedef FT_Error type FT_Error (line 93) | typedef FT_Error type FT_Error (line 106) | typedef FT_Error type FT_Renderer_Class (line 144) | typedef struct FT_Renderer_Class_ FILE: other/freetype/include/freetype/ftsnames.h type FT_SfntName_ (line 98) | struct FT_SfntName_ FILE: other/freetype/include/freetype/ftstroke.h type FT_StrokerRec_ (line 60) | struct FT_StrokerRec_ type FT_Stroker_LineJoin (line 109) | typedef enum FT_Stroker_LineJoin_ type FT_Stroker_LineCap (line 142) | typedef enum FT_Stroker_LineCap_ type FT_StrokerBorder (line 176) | typedef enum FT_StrokerBorder_ FILE: other/freetype/include/freetype/ftsystem.h type FT_MemoryRec_ (line 66) | struct FT_MemoryRec_ type FT_MemoryRec_ (line 171) | struct FT_MemoryRec_ type FT_StreamRec_ (line 196) | struct FT_StreamRec_ type FT_StreamDesc (line 209) | typedef union FT_StreamDesc_ type FT_StreamRec (line 321) | typedef struct FT_StreamRec_ FILE: other/freetype/include/freetype/fttypes.h type FT_FWord (line 116) | typedef signed short FT_FWord; type FT_UFWord (line 128) | typedef unsigned short FT_UFWord; type FT_Char (line 139) | typedef signed char FT_Char; type FT_Byte (line 150) | typedef unsigned char FT_Byte; type FT_Byte (line 161) | typedef const FT_Byte* FT_Bytes; type FT_UInt32 (line 172) | typedef FT_UInt32 FT_Tag; type FT_String (line 183) | typedef char FT_String; type FT_Short (line 194) | typedef signed short FT_Short; type FT_UShort (line 205) | typedef unsigned short FT_UShort; type FT_Int (line 216) | typedef signed int FT_Int; type FT_UInt (line 227) | typedef unsigned int FT_UInt; type FT_Long (line 238) | typedef signed long FT_Long; type FT_ULong (line 249) | typedef unsigned long FT_ULong; type FT_F2Dot14 (line 260) | typedef signed short FT_F2Dot14; type FT_F26Dot6 (line 272) | typedef signed long FT_F26Dot6; type FT_Fixed (line 284) | typedef signed long FT_Fixed; type FT_Error (line 296) | typedef int FT_Error; type FT_Offset (line 320) | typedef size_t FT_Offset; type ft_ptrdiff_t (line 333) | typedef ft_ptrdiff_t FT_PtrDist; type FT_UnitVector (line 350) | typedef struct FT_UnitVector_ type FT_Matrix (line 381) | typedef struct FT_Matrix_ type FT_Data (line 402) | typedef struct FT_Data_ type FT_Generic (line 455) | typedef struct FT_Generic_ type FT_ListNodeRec_ (line 511) | struct FT_ListNodeRec_ type FT_ListRec_ (line 522) | struct FT_ListRec_ type FT_ListNodeRec (line 540) | typedef struct FT_ListNodeRec_ type FT_ListRec (line 563) | typedef struct FT_ListRec_ FILE: other/freetype/include/freetype/ftwinfnt.h type FT_WinFNT_HeaderRec (line 183) | typedef struct FT_WinFNT_HeaderRec_ type FT_WinFNT_HeaderRec_ (line 233) | struct FT_WinFNT_HeaderRec_ FILE: other/freetype/include/freetype/internal/autohint.h type FT_AutoHinterRec_ (line 80) | struct FT_AutoHinterRec_ type FT_Error (line 174) | typedef FT_Error type FT_AutoHinter_ServiceRec (line 190) | typedef struct FT_AutoHinter_ServiceRec_ FILE: other/freetype/include/freetype/internal/ftdebug.h type FT_Trace (line 57) | typedef enum FT_Trace_ FILE: other/freetype/include/freetype/internal/ftdriver.h type FT_Error (line 41) | typedef FT_Error type FT_Error (line 48) | typedef FT_Error type FT_Error (line 55) | typedef FT_Error type FT_Error (line 59) | typedef FT_Error type FT_Error (line 65) | typedef FT_Error type FT_Error (line 72) | typedef FT_Error type FT_Error (line 79) | typedef FT_Error type FT_UInt (line 86) | typedef FT_UInt type FT_Long (line 90) | typedef FT_Long type FT_Error (line 95) | typedef FT_Error type FT_Error (line 102) | typedef FT_Error type FT_Error (line 107) | typedef FT_Error type FT_Driver_ClassRec (line 183) | typedef struct FT_Driver_ClassRec_ FILE: other/freetype/include/freetype/internal/ftgloadr.h type FT_GlyphLoaderRec_ (line 43) | struct FT_GlyphLoaderRec_ type FT_SubGlyphRec (line 57) | typedef struct FT_SubGlyphRec_ type FT_GlyphLoadRec (line 68) | typedef struct FT_GlyphLoadRec_ type FT_GlyphLoaderRec (line 79) | typedef struct FT_GlyphLoaderRec_ FILE: other/freetype/include/freetype/internal/ftmemory.h function T (line 69) | T* FILE: other/freetype/include/freetype/internal/ftobjs.h type FT_CMapRec_ (line 125) | struct FT_CMapRec_ type FT_CMap_ClassRec_ (line 128) | struct FT_CMap_ClassRec_ type FT_CMapRec (line 131) | typedef struct FT_CMapRec_ type FT_Error (line 149) | typedef FT_Error type FT_UInt (line 156) | typedef FT_UInt type FT_UInt (line 160) | typedef FT_UInt type FT_UInt (line 164) | typedef FT_UInt type FT_Bool (line 170) | typedef FT_Bool type FT_UInt32 (line 175) | typedef FT_UInt32 * type FT_UInt32 (line 179) | typedef FT_UInt32 * type FT_UInt32 (line 184) | typedef FT_UInt32 * type FT_CMap_ClassRec (line 190) | typedef struct FT_CMap_ClassRec_ type FT_Face_InternalRec (line 320) | typedef struct FT_Face_InternalRec_ type FT_GlyphSlot_InternalRec (line 378) | typedef struct FT_Slot_InternalRec_ type FT_Size_InternalRec (line 403) | typedef struct FT_Size_InternalRec_ type FT_ModuleRec (line 441) | typedef struct FT_ModuleRec_ type FT_RendererRec (line 661) | typedef struct FT_RendererRec_ type FT_DriverRec (line 722) | typedef struct FT_DriverRec_ type FT_LibraryRec (line 837) | typedef struct FT_LibraryRec_ type FT_Error (line 889) | typedef FT_Error type FT_UInt (line 895) | typedef FT_UInt type FT_Error (line 1243) | typedef FT_Error FILE: other/freetype/include/freetype/internal/ftpic.h type FT_PIC_Container (line 34) | typedef struct FT_PIC_Container_ FILE: other/freetype/include/freetype/internal/ftrfork.h type FT_RFork_Ref (line 44) | typedef struct FT_RFork_Ref_ FILE: other/freetype/include/freetype/internal/ftserv.h type FT_ServiceDescRec (line 157) | typedef struct FT_ServiceDescRec_ type FT_ServiceDescRec (line 164) | typedef const FT_ServiceDescRec* FT_ServiceDesc; type FT_ServiceCacheRec (line 494) | typedef struct FT_ServiceCacheRec_ FILE: other/freetype/include/freetype/internal/ftstream.h type FT_Frame_Op (line 57) | typedef enum FT_Frame_Op_ type FT_Frame_Field (line 86) | typedef struct FT_Frame_Field_ FILE: other/freetype/include/freetype/internal/ftvalid.h type FT_ValidatorRec_ (line 42) | struct FT_ValidatorRec_ type FT_ValidationLevel (line 70) | typedef enum FT_ValidationLevel_ type FT_ValidatorRec (line 80) | typedef struct FT_ValidatorRec_ FILE: other/freetype/include/freetype/internal/psaux.h type PS_TableRec_ (line 42) | struct PS_TableRec_ type PS_Table_FuncsRec_ (line 43) | struct PS_Table_FuncsRec_ type PS_Table_FuncsRec (line 63) | typedef struct PS_Table_FuncsRec_ type PS_TableRec (line 117) | typedef struct PS_TableRec_ type PS_ParserRec_ (line 143) | struct PS_ParserRec_ type T1_TokenRec_ (line 145) | struct T1_TokenRec_ type T1_FieldRec_ (line 147) | struct T1_FieldRec_ type T1_TokenType (line 151) | typedef enum T1_TokenType_ type T1_TokenRec (line 166) | typedef struct T1_TokenRec_ type T1_FieldType (line 176) | typedef enum T1_FieldType_ type T1_FieldLocation (line 196) | typedef enum T1_FieldLocation_ type T1_FieldRec (line 220) | typedef struct T1_FieldRec_ type PS_Parser_FuncsRec_ (line 336) | struct PS_Parser_FuncsRec_ type PS_Parser_FuncsRec (line 338) | typedef struct PS_Parser_FuncsRec_ type PS_ParserRec (line 424) | typedef struct PS_ParserRec_ type T1_BuilderRec_ (line 446) | struct T1_BuilderRec_ type FT_Error (line 449) | typedef FT_Error type FT_Error (line 459) | typedef FT_Error type FT_Error (line 464) | typedef FT_Error type FT_Error (line 467) | typedef FT_Error type T1_Builder_FuncsRec_ (line 476) | struct T1_Builder_FuncsRec_ type T1_Builder_FuncsRec (line 478) | typedef struct T1_Builder_FuncsRec_ type T1_ParseState (line 501) | typedef enum T1_ParseState_ type T1_BuilderRec (line 559) | typedef struct T1_BuilderRec_ type T1_Decoder_ZoneRec (line 617) | typedef struct T1_Decoder_ZoneRec_ type T1_DecoderRec_ (line 626) | struct T1_DecoderRec_ type T1_Decoder_FuncsRec_ (line 627) | struct T1_Decoder_FuncsRec_ type FT_Error (line 630) | typedef FT_Error type T1_Decoder_FuncsRec (line 635) | typedef struct T1_Decoder_FuncsRec_ type T1_DecoderRec (line 659) | typedef struct T1_DecoderRec_ type AFM_ParserRec_ (line 708) | struct AFM_ParserRec_ type AFM_Parser_FuncsRec (line 710) | typedef struct AFM_Parser_FuncsRec_ type AFM_StreamRec_ (line 727) | struct AFM_StreamRec_ type AFM_ParserRec (line 749) | typedef struct AFM_ParserRec_ type T1_CMap_ClassesRec_ (line 774) | struct T1_CMap_ClassesRec_ type T1_CMap_ClassesRec (line 776) | typedef struct T1_CMap_ClassesRec_ type PSAux_ServiceRec (line 794) | typedef struct PSAux_ServiceRec_ type PSAux_ServiceRec (line 815) | typedef PSAux_ServiceRec PSAux_Interface; FILE: other/freetype/include/freetype/internal/pshints.h type PSH_GlobalsRec_ (line 41) | struct PSH_GlobalsRec_ type FT_Error (line 43) | typedef FT_Error type FT_Error (line 48) | typedef FT_Error type PSH_Globals_FuncsRec (line 59) | typedef struct PSH_Globals_FuncsRec_ type T1_HintsRec_ (line 104) | struct T1_HintsRec_ type T1_Hints_FuncsRec_ (line 117) | struct T1_Hints_FuncsRec_ type FT_Error (line 265) | typedef FT_Error type FT_Error (line 304) | typedef FT_Error type T1_Hints_FuncsRec (line 342) | typedef struct T1_Hints_FuncsRec_ type T2_HintsRec_ (line 391) | struct T2_HintsRec_ type T2_Hints_FuncsRec_ (line 404) | struct T2_Hints_FuncsRec_ type FT_Error (line 579) | typedef FT_Error type FT_Error (line 618) | typedef FT_Error type T2_Hints_FuncsRec (line 656) | typedef struct T2_Hints_FuncsRec_ type PSHinter_Interface (line 672) | typedef struct PSHinter_Interface_ type PSHinter_Interface (line 680) | typedef PSHinter_Interface* PSHinter_Service; FILE: other/freetype/include/freetype/internal/services/svbdf.h type FT_Error (line 31) | typedef FT_Error type FT_Error (line 36) | typedef FT_Error function FT_DEFINE_SERVICE (line 42) | FT_DEFINE_SERVICE( BDF ) FILE: other/freetype/include/freetype/internal/services/svcid.h type FT_Error (line 29) | typedef FT_Error type FT_Error (line 34) | typedef FT_Error type FT_Error (line 37) | typedef FT_Error function FT_DEFINE_SERVICE (line 42) | FT_DEFINE_SERVICE( CID ) FILE: other/freetype/include/freetype/internal/services/svgldict.h type FT_Error (line 37) | typedef FT_Error type FT_UInt (line 43) | typedef FT_UInt function FT_DEFINE_SERVICE (line 48) | FT_DEFINE_SERVICE( GlyphDict ) FILE: other/freetype/include/freetype/internal/services/svgxval.h type FT_Error (line 40) | typedef FT_Error type FT_Error (line 47) | typedef FT_Error function FT_DEFINE_SERVICE (line 53) | FT_DEFINE_SERVICE( GXvalidate ) function FT_DEFINE_SERVICE (line 58) | FT_DEFINE_SERVICE( CKERNvalidate ) FILE: other/freetype/include/freetype/internal/services/svkern.h type FT_Error (line 31) | typedef FT_Error function FT_DEFINE_SERVICE (line 37) | FT_DEFINE_SERVICE( Kerning ) FILE: other/freetype/include/freetype/internal/services/svmm.h type FT_Error (line 38) | typedef FT_Error type FT_Error (line 42) | typedef FT_Error type FT_Error (line 46) | typedef FT_Error type FT_Error (line 51) | typedef FT_Error type FT_Error (line 56) | typedef FT_Error function FT_DEFINE_SERVICE (line 62) | FT_DEFINE_SERVICE( MultiMasters ) FILE: other/freetype/include/freetype/internal/services/svotval.h type FT_Error (line 31) | typedef FT_Error function FT_DEFINE_SERVICE (line 41) | FT_DEFINE_SERVICE( OTvalidate ) FILE: other/freetype/include/freetype/internal/services/svpfr.h type FT_Error (line 32) | typedef FT_Error type FT_Error (line 39) | typedef FT_Error type FT_Error (line 45) | typedef FT_Error function FT_DEFINE_SERVICE (line 51) | FT_DEFINE_SERVICE( PfrMetrics ) FILE: other/freetype/include/freetype/internal/services/svpostnm.h function FT_DEFINE_SERVICE (line 44) | FT_DEFINE_SERVICE( PsFontName ) FILE: other/freetype/include/freetype/internal/services/svpscmap.h type FT_UInt32 (line 34) | typedef FT_UInt32 type PS_UniMap (line 54) | typedef struct PS_UniMap_ type PS_UnicodesRec_ (line 62) | struct PS_UnicodesRec_ type PS_UnicodesRec (line 64) | typedef struct PS_UnicodesRec_ type FT_Error (line 89) | typedef FT_Error type FT_UInt (line 97) | typedef FT_UInt type FT_UInt32 (line 101) | typedef FT_UInt32 function FT_DEFINE_SERVICE (line 106) | FT_DEFINE_SERVICE( PsCMaps ) FILE: other/freetype/include/freetype/internal/services/svpsinfo.h type FT_Error (line 32) | typedef FT_Error type FT_Error (line 36) | typedef FT_Error type FT_Int (line 40) | typedef FT_Int type FT_Error (line 43) | typedef FT_Error type FT_Long (line 47) | typedef FT_Long function FT_DEFINE_SERVICE (line 55) | FT_DEFINE_SERVICE( PsInfo ) FILE: other/freetype/include/freetype/internal/services/svsfnt.h type FT_Error (line 39) | typedef FT_Error type FT_Error (line 57) | typedef FT_Error function FT_DEFINE_SERVICE (line 65) | FT_DEFINE_SERVICE( SFNT_Table ) FILE: other/freetype/include/freetype/internal/services/svttcmap.h type TT_CMapInfo (line 59) | typedef struct TT_CMapInfo_ type FT_Error (line 67) | typedef FT_Error function FT_DEFINE_SERVICE (line 72) | FT_DEFINE_SERVICE( TTCMaps ) FILE: other/freetype/include/freetype/internal/services/svtteng.h function FT_DEFINE_SERVICE (line 39) | FT_DEFINE_SERVICE( TrueTypeEngine ) FILE: other/freetype/include/freetype/internal/services/svttglyf.h type FT_ULong (line 30) | typedef FT_ULong function FT_DEFINE_SERVICE (line 35) | FT_DEFINE_SERVICE( TTGlyf ) FILE: other/freetype/include/freetype/internal/services/svwinfnt.h type FT_Error (line 31) | typedef FT_Error function FT_DEFINE_SERVICE (line 36) | FT_DEFINE_SERVICE( WinFnt ) FILE: other/freetype/include/freetype/internal/sfnt.h type FT_Error (line 102) | typedef FT_Error type FT_Error (line 161) | typedef FT_Error type FT_Error (line 191) | typedef FT_Error type FT_Error (line 239) | typedef FT_Error type FT_Error (line 275) | typedef FT_Error type FT_Error (line 311) | typedef FT_Error type FT_Error (line 356) | typedef FT_Error type FT_Error (line 388) | typedef FT_Error type FT_Error (line 419) | typedef FT_Error type FT_Error (line 441) | typedef FT_Error type FT_Error (line 468) | typedef FT_Error type FT_Error (line 494) | typedef FT_Error type FT_Error (line 519) | typedef FT_Error type FT_Error (line 544) | typedef FT_Error type FT_Error (line 568) | typedef FT_Error type FT_Error (line 596) | typedef FT_Error type FT_Int (line 631) | typedef FT_Int type SFNT_Interface (line 649) | typedef struct SFNT_Interface_ type SFNT_Interface (line 754) | typedef SFNT_Interface* SFNT_Service; FILE: other/freetype/include/freetype/internal/t1types.h type T1_EncodingRecRec_ (line 69) | struct T1_EncodingRecRec_ type PS_FontExtraRec (line 86) | typedef struct PS_FontExtraRec_ type T1_FontRec (line 93) | typedef struct T1_FontRec_ type CID_SubrsRec (line 128) | typedef struct CID_SubrsRec_ type AFM_TrackKernRec (line 148) | typedef struct AFM_TrackKernRec_ type AFM_KernPairRec (line 158) | typedef struct AFM_KernPairRec_ type AFM_FontInfoRec (line 167) | typedef struct AFM_FontInfoRec_ type T1_FaceRec_ (line 194) | struct T1_FaceRec_ type CID_FaceRec_ (line 195) | struct CID_FaceRec_ type T1_FaceRec (line 198) | typedef struct T1_FaceRec_ type CID_FaceRec (line 232) | typedef struct CID_FaceRec_ FILE: other/freetype/include/freetype/internal/tttypes.h type TTC_HeaderRec_ (line 70) | struct TTC_HeaderRec_ type SFNT_HeaderRec (line 99) | typedef struct SFNT_HeaderRec_ type TT_TableRec (line 130) | typedef struct TT_TableRec_ type TT_LongMetricsRec (line 154) | typedef struct TT_LongMetricsRec_ type FT_Short (line 171) | typedef FT_Short TT_ShortMetrics; type TT_NameEntryRec (line 201) | typedef struct TT_NameEntryRec_ type TT_NameTableRec (line 238) | typedef struct TT_NameTableRec_ type TT_GaspRangeRec (line 277) | typedef struct TT_GaspRangeRec_ type TT_GaspRec (line 305) | typedef struct TT_Gasp_ type TT_HdmxEntryRec (line 332) | typedef struct TT_HdmxEntryRec_ type TT_HdmxRec (line 357) | typedef struct TT_HdmxRec_ type TT_Kern0_PairRec (line 384) | typedef struct TT_Kern0_PairRec_ type TT_SBit_MetricsRec (line 435) | typedef struct TT_SBit_MetricsRec_ type TT_SBit_SmallMetricsRec (line 472) | typedef struct TT_SBit_Small_Metrics_ type TT_SBit_LineMetricsRec (line 535) | typedef struct TT_SBit_LineMetricsRec_ type TT_SBit_RangeRec (line 589) | typedef struct TT_SBit_RangeRec_ type TT_SBit_StrikeRec (line 653) | typedef struct TT_SBit_StrikeRec_ type TT_SBit_ComponentRec (line 691) | typedef struct TT_SBit_ComponentRec_ type TT_SBit_ScaleRec (line 722) | typedef struct TT_SBit_ScaleRec_ type TT_Post_20Rec (line 767) | typedef struct TT_Post_20Rec_ type TT_Post_25Rec (line 792) | typedef struct TT_Post_25_ type TT_Post_NamesRec (line 815) | typedef struct TT_Post_NamesRec_ type GX_BlendRec_ (line 843) | struct GX_BlendRec_ type TT_BDFRec (line 900) | typedef struct TT_BDFRec_ type TT_FaceRec_ (line 951) | struct TT_FaceRec_ type FT_Error (line 955) | typedef FT_Error type TT_LoaderRec_ (line 959) | struct TT_LoaderRec_ type FT_Error (line 987) | typedef FT_Error type FT_Error (line 1022) | typedef FT_Error type FT_Error (line 1044) | typedef FT_Error type TT_FaceRec (line 1258) | typedef struct TT_FaceRec_ type TT_GlyphZoneRec (line 1465) | typedef struct TT_GlyphZoneRec_ type TT_ExecContextRec_ (line 1486) | struct TT_ExecContextRec_ type TT_LoaderRec (line 1489) | typedef struct TT_LoaderRec_ FILE: other/freetype/include/freetype/t1tables.h type PS_FontInfoRec_ (line 69) | struct PS_FontInfoRec_ type PS_FontInfoRec_ (line 92) | struct PS_FontInfoRec_ type PS_FontInfoRec (line 105) | typedef PS_FontInfoRec T1_FontInfo; type PS_PrivateRec (line 118) | typedef struct PS_PrivateRec_ type PS_PrivateRec_ (line 167) | struct PS_PrivateRec_ type PS_PrivateRec (line 180) | typedef PS_PrivateRec T1_Private; type T1_Blend_Flags (line 193) | typedef enum T1_Blend_Flags_ type PS_DesignMapRec (line 250) | typedef struct PS_DesignMap_ type PS_DesignMapRec (line 259) | typedef PS_DesignMapRec T1_DesignMap; type PS_BlendRec (line 262) | typedef struct PS_BlendRec_ type PS_BlendRec (line 294) | typedef PS_BlendRec T1_Blend; type CID_FaceDictRec (line 305) | typedef struct CID_FaceDictRec_ type CID_FaceDictRec_ (line 334) | struct CID_FaceDictRec_ type CID_FaceDictRec (line 340) | typedef CID_FaceDictRec CID_FontDict; type CID_FaceInfoRec (line 351) | typedef struct CID_FaceInfoRec_ type CID_FaceInfoRec_ (line 389) | struct CID_FaceInfoRec_ type CID_FaceInfoRec (line 402) | typedef CID_FaceInfoRec CID_Info; type T1_EncodingType (line 506) | typedef enum T1_EncodingType_ type PS_Dict_Keys (line 526) | typedef enum PS_Dict_Keys_ FILE: other/freetype/include/freetype/tttables.h type TT_Header_ (line 63) | struct TT_Header_ type TT_HoriHeader (line 180) | typedef struct TT_HoriHeader_ type TT_VertHeader (line 306) | typedef struct TT_VertHeader_ type TT_OS2 (line 350) | typedef struct TT_OS2_ type TT_Postscript (line 414) | typedef struct TT_Postscript_ type TT_PCLT (line 441) | typedef struct TT_PCLT_ type TT_MaxProfile (line 528) | typedef struct TT_MaxProfile_ type FT_Sfnt_Tag (line 558) | typedef enum FT_Sfnt_Tag_ FILE: other/sdl/include/SDL_audio.h type SDL_AudioSpec (line 74) | typedef struct SDL_AudioSpec { type SDL_AudioCVT (line 126) | typedef struct SDL_AudioCVT { type SDL_audiostatus (line 180) | typedef enum { FILE: other/sdl/include/SDL_cdrom.h type CDstatus (line 59) | typedef enum { type SDL_CDtrack (line 70) | typedef struct SDL_CDtrack { type SDL_CD (line 79) | typedef struct SDL_CD { FILE: other/sdl/include/SDL_config_macos.h type SInt8 (line 32) | typedef SInt8 int8_t; type UInt8 (line 33) | typedef UInt8 uint8_t; type SInt16 (line 34) | typedef SInt16 int16_t; type UInt16 (line 35) | typedef UInt16 uint16_t; type SInt32 (line 36) | typedef SInt32 int32_t; type UInt32 (line 37) | typedef UInt32 uint32_t; type SInt64 (line 38) | typedef SInt64 int64_t; type UInt64 (line 39) | typedef UInt64 uint64_t; FILE: other/sdl/include/SDL_endian.h function Uint16 (line 70) | static __inline__ Uint16 SDL_Swap16(Uint16 x) function Uint16 (line 76) | static __inline__ Uint16 SDL_Swap16(Uint16 x) function Uint16 (line 82) | static __inline__ Uint16 SDL_Swap16(Uint16 x) function Uint16 (line 90) | static __inline__ Uint16 SDL_Swap16(Uint16 x) function Uint16 (line 96) | static __inline__ Uint16 SDL_Swap16(Uint16 x) { function Uint32 (line 103) | static __inline__ Uint32 SDL_Swap32(Uint32 x) function Uint32 (line 109) | static __inline__ Uint32 SDL_Swap32(Uint32 x) function Uint32 (line 115) | static __inline__ Uint32 SDL_Swap32(Uint32 x) function Uint32 (line 125) | static __inline__ Uint32 SDL_Swap32(Uint32 x) function Uint32 (line 131) | static __inline__ Uint32 SDL_Swap32(Uint32 x) { function Uint64 (line 139) | static __inline__ Uint64 SDL_Swap64(Uint64 x) function Uint64 (line 152) | static __inline__ Uint64 SDL_Swap64(Uint64 x) function Uint64 (line 158) | static __inline__ Uint64 SDL_Swap64(Uint64 x) FILE: other/sdl/include/SDL_error.h type SDL_errorcode (line 55) | typedef enum { FILE: other/sdl/include/SDL_events.h type SDL_EventType (line 52) | typedef enum { type SDL_EventMask (line 88) | typedef enum { type SDL_ActiveEvent (line 119) | typedef struct SDL_ActiveEvent { type SDL_KeyboardEvent (line 126) | typedef struct SDL_KeyboardEvent { type SDL_MouseMotionEvent (line 134) | typedef struct SDL_MouseMotionEvent { type SDL_MouseButtonEvent (line 144) | typedef struct SDL_MouseButtonEvent { type SDL_JoyAxisEvent (line 153) | typedef struct SDL_JoyAxisEvent { type SDL_JoyBallEvent (line 161) | typedef struct SDL_JoyBallEvent { type SDL_JoyHatEvent (line 170) | typedef struct SDL_JoyHatEvent { type SDL_JoyButtonEvent (line 183) | typedef struct SDL_JoyButtonEvent { type SDL_ResizeEvent (line 194) | typedef struct SDL_ResizeEvent { type SDL_ExposeEvent (line 201) | typedef struct SDL_ExposeEvent { type SDL_QuitEvent (line 206) | typedef struct SDL_QuitEvent { type SDL_UserEvent (line 211) | typedef struct SDL_UserEvent { type SDL_SysWMmsg (line 219) | struct SDL_SysWMmsg type SDL_SysWMmsg (line 220) | typedef struct SDL_SysWMmsg SDL_SysWMmsg; type SDL_SysWMEvent (line 221) | typedef struct SDL_SysWMEvent { type SDL_Event (line 227) | typedef union SDL_Event { type SDL_eventaction (line 253) | typedef enum { FILE: other/sdl/include/SDL_joystick.h type _SDL_Joystick (line 46) | struct _SDL_Joystick type SDL_Joystick (line 47) | typedef struct _SDL_Joystick SDL_Joystick; FILE: other/sdl/include/SDL_keyboard.h type SDL_keysym (line 59) | typedef struct SDL_keysym { FILE: other/sdl/include/SDL_keysym.h type SDLKey (line 31) | typedef enum { type SDLMod (line 305) | typedef enum { FILE: other/sdl/include/SDL_main.h type QDGlobals (line 92) | struct QDGlobals type QDGlobals (line 95) | struct QDGlobals FILE: other/sdl/include/SDL_mouse.h type WMcursor (line 40) | typedef struct WMcursor WMcursor; type SDL_Cursor (line 41) | typedef struct SDL_Cursor { FILE: other/sdl/include/SDL_mutex.h type SDL_mutex (line 55) | struct SDL_mutex type SDL_mutex (line 56) | typedef struct SDL_mutex SDL_mutex; type SDL_semaphore (line 86) | struct SDL_semaphore type SDL_sem (line 87) | typedef struct SDL_semaphore SDL_sem; type SDL_cond (line 133) | struct SDL_cond type SDL_cond (line 134) | typedef struct SDL_cond SDL_cond; FILE: other/sdl/include/SDL_opengl.h type GLchar (line 3106) | typedef char GLchar; type GLintptr (line 3111) | typedef ptrdiff_t GLintptr; type GLsizeiptr (line 3112) | typedef ptrdiff_t GLsizeiptr; type GLintptrARB (line 3117) | typedef ptrdiff_t GLintptrARB; type GLsizeiptrARB (line 3118) | typedef ptrdiff_t GLsizeiptrARB; type GLcharARB (line 3123) | typedef char GLcharARB; type GLhandleARB (line 3124) | typedef unsigned int GLhandleARB; type GLhalfARB (line 3129) | typedef unsigned short GLhalfARB; type GLhalfNV (line 3133) | typedef unsigned short GLhalfNV; type GLvoid (line 3450) | typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum ac... type GLvoid (line 4051) | typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum... type GLuint (line 4433) | typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n... type GLuint (line 5719) | typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n,... type GLvoid (line 5883) | typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, co... type GLvoid (line 6423) | typedef GLvoid* (APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); FILE: other/sdl/include/SDL_rwops.h type SDL_RWops (line 42) | typedef struct SDL_RWops { FILE: other/sdl/include/SDL_stdinc.h type SDL_bool (line 93) | typedef enum { type Sint8 (line 98) | typedef int8_t Sint8; type Uint8 (line 99) | typedef uint8_t Uint8; type Sint16 (line 100) | typedef int16_t Sint16; type Uint16 (line 101) | typedef uint16_t Uint16; type Sint32 (line 102) | typedef int32_t Sint32; type Uint32 (line 103) | typedef uint32_t Uint32; type Sint64 (line 106) | typedef int64_t Sint64; type Uint64 (line 108) | typedef uint64_t Uint64; type Uint64 (line 112) | typedef struct { type SDL_DUMMY_ENUM (line 146) | typedef enum { type _SDL_iconv_t (line 601) | struct _SDL_iconv_t FILE: other/sdl/include/SDL_syswm.h type SDL_SysWMinfo (line 47) | struct SDL_SysWMinfo type SDL_SysWMinfo (line 48) | typedef struct SDL_SysWMinfo SDL_SysWMinfo; type SDL_SYSWM_TYPE (line 67) | typedef enum { type SDL_SysWMmsg (line 72) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 84) | typedef struct SDL_SysWMinfo { type SDL_SysWMmsg (line 120) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 126) | typedef struct SDL_SysWMinfo { type SDL_SysWMmsg (line 136) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 145) | typedef struct SDL_SysWMinfo { type SDL_SysWMmsg (line 154) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 161) | typedef struct SDL_SysWMinfo { type SDL_SysWMmsg (line 173) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 179) | typedef struct SDL_SysWMinfo { type SDL_SysWMmsg (line 187) | struct SDL_SysWMmsg { type SDL_SysWMinfo (line 193) | typedef struct SDL_SysWMinfo { FILE: other/sdl/include/SDL_thread.h type SDL_Thread (line 45) | struct SDL_Thread type SDL_Thread (line 46) | typedef struct SDL_Thread SDL_Thread; FILE: other/sdl/include/SDL_timer.h type _SDL_TimerID (line 104) | struct _SDL_TimerID FILE: other/sdl/include/SDL_version.h type SDL_version (line 47) | typedef struct SDL_version { FILE: other/sdl/include/SDL_video.h type SDL_Rect (line 50) | typedef struct SDL_Rect { type SDL_Color (line 55) | typedef struct SDL_Color { type SDL_Palette (line 63) | typedef struct SDL_Palette { type SDL_PixelFormat (line 70) | typedef struct SDL_PixelFormat { type SDL_Surface (line 96) | typedef struct SDL_Surface { type SDL_Surface (line 166) | struct SDL_Surface type SDL_Surface (line 167) | struct SDL_Surface type SDL_VideoInfo (line 171) | typedef struct SDL_VideoInfo { type SDL_Overlay (line 208) | typedef struct SDL_Overlay { type SDL_GLattr (line 230) | typedef enum { type SDL_GrabMode (line 923) | typedef enum { FILE: scripts/SDL_keysym.h type SDLKey (line 32) | typedef enum { type SDLMod (line 290) | typedef enum { FILE: scripts/build.py function unzip (line 63) | def unzip(filename, where): function bail (line 94) | def bail(reason): function clean (line 99) | def clean(): function file_exists (line 104) | def file_exists(file): function search_object (line 111) | def search_object(directory, object): FILE: scripts/check_header_guards.py function check_file (line 7) | def check_file(filename): function check_dir (line 26) | def check_dir(dir): FILE: scripts/cmd5.py function cstrip (line 5) | def cstrip(lines): FILE: scripts/compiler.py class node (line 13) | class node: method __init__ (line 14) | def __init__(self): method name (line 19) | def name(self): method debug_print (line 24) | def debug_print(self, level): method debug_root (line 34) | def debug_root(self): method gather (line 39) | def gather(self, str): method find_node (line 63) | def find_node(self, str): method get_single (line 83) | def get_single(self, str): method get_path (line 101) | def get_path(self): method get_single_name (line 106) | def get_single_name(self, str): class parser (line 109) | class parser: method parse_node (line 112) | def parse_node(self, this_node): method parse_file (line 134) | def parse_file(self, filename): function parse_file (line 140) | def parse_file(filename): class pointer (line 143) | class pointer: method __init__ (line 144) | def __init__(self, index, target): class data_constructor (line 148) | class data_constructor: method __init__ (line 149) | def __init__(self): method get_type (line 156) | def get_type(self, s): method allocate (line 159) | def allocate(self, size): method add_pointer (line 164) | def add_pointer(self, index, target): method add_enum (line 167) | def add_enum(self, name, value): method get_enum_value (line 170) | def get_enum_value(self, name): method add_target (line 175) | def add_target(self, target, index): method write (line 180) | def write(self, index, size, data): method patch_pointers (line 188) | def patch_pointers(self): class type (line 198) | class type: method __init__ (line 199) | def __init__(self): method size (line 202) | def size(self): class structure (line 205) | class structure: method __init__ (line 206) | def __init__(self): method size (line 210) | def size(self): method emit_header_code (line 216) | def emit_header_code(self, out): method emit_source_code (line 225) | def emit_source_code(self, out): method emit_data (line 234) | def emit_data(self, cons, index, src_data): class variable (line 242) | class variable: method __init__ (line 243) | def __init__(self): method get_code (line 248) | def get_code(self): method get_patch_code (line 251) | def get_patch_code(self, ptrname, basename): method emit_data (line 254) | def emit_data(self, cons, index, src_data): class variable_int (line 257) | class variable_int(variable): method get_code (line 258) | def get_code(self): method size (line 260) | def size(self): method emit_data (line 262) | def emit_data(self, cons, index, src_data): class variable_float (line 271) | class variable_float(variable): method get_code (line 272) | def get_code(self): method size (line 274) | def size(self): method emit_data (line 276) | def emit_data(self, cons, index, src_data): class variable_string (line 285) | class variable_string(variable): method get_code (line 286) | def get_code(self): method get_patch_code (line 288) | def get_patch_code(self, ptrname, basename): method size (line 290) | def size(self): method emit_data (line 292) | def emit_data(self, cons, index, src_data): class variable_ptr (line 302) | class variable_ptr(variable): method get_code (line 303) | def get_code(self): method get_patch_code (line 305) | def get_patch_code(self, ptrname, basename): method size (line 307) | def size(self): method emit_data (line 309) | def emit_data(self, cons, index, src_data): class variable_enum (line 313) | class variable_enum(variable): method get_code (line 314) | def get_code(self): method size (line 316) | def size(self): method emit_data (line 318) | def emit_data(self, cons, index, src_data): class variable_instance (line 323) | class variable_instance(variable): method get_code (line 324) | def get_code(self): method get_patch_code (line 326) | def get_patch_code(self, ptrname, basename): method size (line 328) | def size(self): method emit_data (line 330) | def emit_data(self, cons, index, src_data): class variable_array (line 336) | class variable_array(variable): method get_code (line 337) | def get_code(self): method get_patch_code (line 340) | def get_patch_code(self, ptrname, baseptr): method emit_data (line 346) | def emit_data(self, cons, index, src_data): method size (line 365) | def size(self): class const_arrayint (line 368) | class const_arrayint: method __init__ (line 369) | def __init__(self): method emit_header_code (line 373) | def emit_header_code(self, out): class translator (line 383) | class translator: method __init__ (line 384) | def __init__(self): method parse_variable (line 397) | def parse_variable(self, node): method parse_struct (line 439) | def parse_struct(self, node): method parse_constant (line 449) | def parse_constant(self, node): method parse (line 471) | def parse(self, script, srcdata): method emit_header_code (line 483) | def emit_header_code(self, out): method emit_source_code (line 495) | def emit_source_code(self, out, header_filename): method emit_data (line 550) | def emit_data(self): function create_translator (line 562) | def create_translator(script, srcdata): function validate (line 567) | def validate(script, validator): FILE: scripts/copyright.py function fix_copyright_notice (line 8) | def fix_copyright_notice(filename): FILE: scripts/font_converter.py function convert (line 6) | def convert(input, output): FILE: scripts/make_release.py function unzip (line 52) | def unzip(filename, where): function copydir (line 62) | def copydir(src, dst, excl=[]): function copyfiles (line 73) | def copyfiles(src, dst): function clean (line 78) | def clean(): FILE: scripts/mass_server.py function get_nick (line 24) | def get_nick(): FILE: scripts/netobj.py class variable (line 5) | class variable: method __init__ (line 7) | def __init__(self, args, name): method emit_declaration (line 11) | def emit_declaration(self): method linedef (line 13) | def linedef(self): method emit_secure (line 15) | def emit_secure(self, parent): method emit_unpack (line 17) | def emit_unpack(self): method emit_unpack_check (line 19) | def emit_unpack_check(self): method emit_pack (line 21) | def emit_pack(self): class var_any (line 24) | class var_any(variable): method __init__ (line 25) | def __init__(self, args, name): class var_range (line 28) | class var_range(variable): method __init__ (line 29) | def __init__(self, args, name): method emit_unpack_check (line 33) | def emit_unpack_check(self): method emit_secure (line 35) | def emit_secure(self, parent): class var_string (line 38) | class var_string(variable): method __init__ (line 39) | def __init__(self, args, name): method __init__ (line 43) | def __init__(self, args, name): method emit_declaration (line 45) | def emit_declaration(self): method emit_unpack (line 47) | def emit_unpack(self): method emit_pack (line 49) | def emit_pack(self): class var_string (line 42) | class var_string(variable): method __init__ (line 39) | def __init__(self, args, name): method __init__ (line 43) | def __init__(self, args, name): method emit_declaration (line 45) | def emit_declaration(self): method emit_unpack (line 47) | def emit_unpack(self): method emit_pack (line 49) | def emit_pack(self): class object (line 52) | class object: method __init__ (line 53) | def __init__(self, line): method parse (line 63) | def parse(self, lines): method emit_declaration (line 94) | def emit_declaration(self): method emit_secure (line 105) | def emit_secure(self): class message (line 111) | class message: method __init__ (line 112) | def __init__(self, line): method parse (line 119) | def parse(self, lines): method emit_declaration (line 150) | def emit_declaration(self): method emit_unpack (line 165) | def emit_unpack(self): method emit_pack (line 173) | def emit_pack(self): class event (line 180) | class event(object): method __init__ (line 181) | def __init__(self, line): class raw_reader (line 186) | class raw_reader: method __init__ (line 187) | def __init__(self): method parse (line 189) | def parse(self, lines): class proto (line 204) | class proto: method __init__ (line 205) | def __init__(self): function load (line 211) | def load(filename): function emit_header_file (line 256) | def emit_header_file(f, p): function emit_source_file (line 298) | def emit_source_file(f, p, protofilename): FILE: scripts/png.py class image (line 3) | class image: function read_tga (line 8) | def read_tga(f): function write_tga (line 23) | def write_tga(f, w, h, bpp, data): function load_png (line 30) | def load_png(f): FILE: scripts/refactor_count.py function CheckIdentifier (line 48) | def CheckIdentifier(ident): class Checker (line 51) | class Checker: method CheckStart (line 52) | def CheckStart(self, checker, filename): method CheckLine (line 54) | def CheckLine(self, checker, line): method CheckEnd (line 56) | def CheckEnd(self, checker): class FilenameExtentionChecker (line 59) | class FilenameExtentionChecker(Checker): method __init__ (line 60) | def __init__(self): method CheckStart (line 62) | def CheckStart(self, checker, filename): class IncludeChecker (line 67) | class IncludeChecker(Checker): method __init__ (line 68) | def __init__(self): method CheckLine (line 70) | def CheckLine(self, checker, line): class HeaderGuardChecker (line 84) | class HeaderGuardChecker(Checker): method CheckStart (line 85) | def CheckStart(self, checker, filename): method CheckLine (line 88) | def CheckLine(self, checker, line): class CommentChecker (line 98) | class CommentChecker(Checker): method CheckLine (line 99) | def CheckLine(self, checker, line): class FileChecker (line 103) | class FileChecker: method __init__ (line 104) | def __init__(self): method Error (line 111) | def Error(self, errormessage): method CheckLine (line 114) | def CheckLine(self, line): method CheckFile (line 119) | def CheckFile(self, filename): method GetErrors (line 135) | def GetErrors(self): function cstrip (line 138) | def cstrip(lines): function get_identifiers (line 166) | def get_identifiers(data): FILE: scripts/tw_api.py class Server_Info (line 26) | class Server_Info(threading.Thread): method __init__ (line 28) | def __init__(self, address, type): method run (line 34) | def run(self): function get_server_info (line 45) | def get_server_info(address): function get_server_info2 (line 80) | def get_server_info2(address): function get_server_info3 (line 116) | def get_server_info3(address): class Master_Server_Info (line 160) | class Master_Server_Info(threading.Thread): method __init__ (line 162) | def __init__(self, address): method run (line 167) | def run(self): function get_list (line 172) | def get_list(address): function get_list2 (line 197) | def get_list2(address): FILE: scripts/twlib.py function fetch_file (line 9) | def fetch_file(url): FILE: scripts/update_localization.py function parse_source (line 9) | def parse_source(): function load_languagefile (line 30) | def load_languagefile(filename): function generate_languagefile (line 53) | def generate_languagefile(outputfilename, srctable, loctable): FILE: src/base/math.h function T (line 9) | T clamp(T val, T min, T max) function sign (line 18) | inline float sign(float f) function round (line 23) | inline int round(float f) function T (line 31) | T mix(const T a, const T b, TB amount) function frandom (line 36) | inline float frandom() { return rand()/(float)(RAND_MAX); } function f2fx (line 39) | inline int f2fx(float v) { return (int)(v*(float)(1<<10)); } function fx2f (line 40) | inline float fx2f(int v) { return v*(1.0f/(1<<10)); } function gcd (line 42) | inline int gcd(int a, int b) function class (line 53) | class fxp function T (line 66) | T min(T a, T b) { return ab?a:b; } function T (line 68) | T absolute(T a) { return a > string; FILE: src/base/tl/threading.h function atomic_inc (line 15) | inline unsigned atomic_inc(volatile unsigned *pValue) function atomic_dec (line 20) | inline unsigned atomic_dec(volatile unsigned *pValue) function atomic_compswap (line 25) | inline unsigned atomic_compswap(volatile unsigned *pValue, unsigned comp... function sync_barrier (line 30) | inline void sync_barrier() function atomic_inc (line 41) | inline unsigned atomic_inc(volatile unsigned *pValue) function atomic_dec (line 46) | inline unsigned atomic_dec(volatile unsigned *pValue) function atomic_compswap (line 51) | inline unsigned atomic_compswap(volatile unsigned *pValue, unsigned comp... function sync_barrier (line 56) | inline void sync_barrier() function class (line 69) | class semaphore function class (line 80) | class lock function class (line 101) | class scope_lock FILE: src/base/vmath.h type vector2_base (line 83) | typedef vector2_base bvec2; type vector2_base (line 84) | typedef vector2_base ivec2; type vector3_base (line 175) | typedef vector3_base bvec3; type vector3_base (line 176) | typedef vector3_base ivec3; type vector4_base (line 221) | typedef vector4_base bvec4; type vector4_base (line 222) | typedef vector4_base ivec4; FILE: src/engine/client.h function class (line 10) | class IClient : public IInterface function class (line 149) | class IGameClient : public IInterface FILE: src/engine/client/backend_sdl.cpp function IGraphicsBackend (line 640) | IGraphicsBackend *CreateGraphicsBackend() { return new CGraphicsBackend_... FILE: src/engine/client/backend_sdl.h type SGLContext (line 9) | struct SGLContext function SGLContext (line 15) | static SGLContext GL_GetCurrentContext() function GL_MakeCurrent (line 23) | static void GL_MakeCurrent(const SGLContext &Context) { wglMakeCurrent(C... function GL_ReleaseContext (line 24) | static void GL_ReleaseContext(const SGLContext &Context) { wglMakeCurren... function GL_SwapBuffers (line 25) | static void GL_SwapBuffers(const SGLContext &Context) { SwapBuffers(Cont... function class (line 30) | class semaphore type SGLContext (line 40) | struct SGLContext function SGLContext (line 45) | static SGLContext GL_GetCurrentContext() function GL_MakeCurrent (line 54) | static void GL_MakeCurrent(const SGLContext &Context) function GL_ReleaseContext (line 60) | static void GL_ReleaseContext(const SGLContext &Context) function GL_SwapBuffers (line 67) | static void GL_SwapBuffers(const SGLContext &Context) function class (line 73) | class CAutoreleasePool type SGLContext (line 98) | struct SGLContext function SGLContext (line 105) | static SGLContext GL_GetCurrentContext() function GL_MakeCurrent (line 114) | static void GL_MakeCurrent(const SGLContext &Context) { glXMakeCurrent(C... function GL_ReleaseContext (line 115) | static void GL_ReleaseContext(const SGLContext &Context) { glXMakeCurren... function GL_SwapBuffers (line 116) | static void GL_SwapBuffers(const SGLContext &Context) { glXSwapBuffers(C... function class (line 123) | class CGraphicsBackend_Threaded : public IGraphicsBackend FILE: src/engine/client/client.cpp function int64 (line 167) | int64 CSmoothTime::Get(int64 Now) function int64 (line 1979) | int64 CClient::TickStartTime(int Tick) function CClient (line 2218) | static CClient *CreateClient() function main (line 2242) | int main(int argc, const char **argv) // ignore_convention FILE: src/engine/client/client.h function class (line 6) | class CGraph function class (line 30) | class CSmoothTime type CVersionInfo (line 169) | struct CVersionInfo function GraphicsThreadProxy (line 183) | static void GraphicsThreadProxy(void *pThis) { ((CClient*)pThis)->Graphi... function IEngineGraphics (line 190) | IEngineGraphics *Graphics() { return m_pGraphics; } function IEngineInput (line 191) | IEngineInput *Input() { return m_pInput; } function IEngineSound (line 192) | IEngineSound *Sound() { return m_pSound; } function IGameClient (line 193) | IGameClient *GameClient() { return m_pGameClient; } function IEngineMasterServer (line 194) | IEngineMasterServer *MasterServer() { return m_pMasterServer; } function IStorage (line 195) | IStorage *Storage() { return m_pStorage; } function virtual (line 206) | virtual bool RconAuthed() { return m_RconAuthed != 0; } function virtual (line 207) | virtual bool UseTempRconCommands() { return m_UseTempRconCommands != 0; } function virtual (line 213) | virtual bool SoundInitFailed() { return m_SoundInitFailed; } function virtual (line 215) | virtual IGraphics::CTextureHandle GetDebugFont() { return m_DebugFont; } function virtual (line 267) | virtual int MapDownloadAmount() { return m_MapdownloadAmount; } function virtual (line 268) | virtual int MapDownloadTotalsize() { return m_MapdownloadTotalsize; } function RecordGameMessage (line 306) | void RecordGameMessage(bool State) { m_RecordGameMessage = State; } FILE: src/engine/client/friends.cpp function CFriendInfo (line 44) | const CFriendInfo *CFriends::GetFriend(int Index) const FILE: src/engine/client/friends.h function class (line 8) | class CFriends : public IFriends FILE: src/engine/client/graphics_threaded.cpp function ImageFormatToTexFormat (line 275) | static int ImageFormatToTexFormat(int Format) function ImageFormatToPixelSize (line 283) | static int ImageFormatToPixelSize(int Format) function IEngineGraphics (line 882) | extern IEngineGraphics *CreateEngineGraphicsThreaded() { return new CGra... FILE: src/engine/client/graphics_threaded.h function class (line 5) | class CCommandBuffer type SPoint (line 123) | struct SPoint { float x, y, z; } type STexCoord (line 124) | struct STexCoord { float u, v; } type SColor (line 125) | struct SColor { float r, g, b, a; } type SVertex (line 127) | struct SVertex type SCommand (line 134) | struct SCommand type SState (line 142) | struct SState function SCommand (line 158) | struct SCommand_Clear : public SCommand function SCommand (line 164) | struct SCommand_Signal : public SCommand function SCommand (line 170) | struct SCommand_RunBuffer : public SCommand function SCommand (line 176) | struct SCommand_Render : public SCommand function SCommand (line 185) | struct SCommand_Screenshot : public SCommand function SCommand (line 191) | struct SCommand_VideoModes : public SCommand function SCommand (line 200) | struct SCommand_Swap : public SCommand function SCommand (line 207) | struct SCommand_Texture_Create : public SCommand function SCommand (line 223) | struct SCommand_Texture_Update : public SCommand function SCommand (line 239) | struct SCommand_Texture_Destroy : public SCommand function SCommand (line 273) | SCommand *GetCommand(unsigned *pIndex) function Reset (line 283) | void Reset() function class (line 292) | class IGraphicsBackend FILE: src/engine/client/input.cpp function IEngineInput (line 212) | IEngineInput *CreateEngineInput() { return new CInput; } FILE: src/engine/client/input.h function class (line 6) | class CInput : public IEngineInput FILE: src/engine/client/serverbrowser.cpp class SortWrap (line 23) | class SortWrap method SortWrap (line 29) | SortWrap(CServerBrowser::CServerFilter *t, SortFunc f) : m_pfnSort(f),... class CNetClient (line 108) | class CNetClient function CServerInfo (line 124) | const CServerInfo *CServerBrowser::SortedGet(int FilterIndex, int Index)... function AddrHash (line 376) | inline int AddrHash(const NETADDR *pAddr) FILE: src/engine/client/serverbrowser.h function class (line 9) | class CServerBrowser : public IServerBrowser FILE: src/engine/client/sound.cpp type CSample (line 27) | struct CSample type CChannel (line 38) | struct CChannel type CVoice (line 44) | struct CVoice function Int2Short (line 71) | static short Int2Short(int i) function IntAbs (line 80) | static int IntAbs(int i) function Mix (line 87) | static void Mix(short *pFinalOut, unsigned Frames) function SdlCallback (line 195) | static void SdlCallback(void *pUnused, Uint8 *pStream, int Len) function IEngineSound (line 543) | IEngineSound *CreateEngineSound() { return new CSound; } FILE: src/engine/client/sound.h function class (line 8) | class CSound : public IEngineSound FILE: src/engine/client/text.cpp type CFontChar (line 26) | struct CFontChar type CFontSizeData (line 42) | struct CFontSizeData class CFont (line 62) | class CFont class CTextRender (line 71) | class CTextRender : public IEngineTextRender method IGraphics (line 74) | IGraphics *Graphics() { return m_pGraphics; } method WordLength (line 76) | int WordLength(const char *pText) method GetFontSizeIndex (line 106) | int GetFontSizeIndex(int Pixelsize) method Grow (line 119) | void Grow(unsigned char *pIn, unsigned char *pOut, int w, int h) method InitTexture (line 143) | void InitTexture(CFontSizeData *pSizeData, int CharWidth, int CharHeig... method AdjustOutlineThicknessToFontSize (line 175) | int AdjustOutlineThicknessToFontSize(int OutlineThickness, int FontSize) method IncreaseTextureSize (line 184) | void IncreaseTextureSize(CFontSizeData *pSizeData) method InitIndex (line 195) | void InitIndex(CFont *pFont, int Index) method CFontSizeData (line 232) | CFontSizeData *GetSize(CFont *pFont, int Pixelsize) method UploadGlyph (line 241) | void UploadGlyph(CFontSizeData *pSizeData, int Texnum, int SlotID, int... method GetSlot (line 262) | int GetSlot(CFontSizeData *pSizeData) method RenderGlyph (line 293) | int RenderGlyph(CFont *pFont, CFontSizeData *pSizeData, int Chr) method CFontChar (line 390) | CFontChar *GetChar(CFont *pFont, CFontSizeData *pSizeData, int Chr) method RenderSetup (line 423) | void RenderSetup(CFont *pFont, int size) method Kerning (line 428) | float Kerning(CFont *pFont, int Left, int Right) method CTextRender (line 437) | CTextRender() method Init (line 456) | virtual void Init() method CFont (line 463) | virtual CFont *LoadFont(const char *pFilename) method DestroyFont (line 483) | virtual void DestroyFont(CFont *pFont) method SetDefaultFont (line 488) | virtual void SetDefaultFont(CFont *pFont) method SetCursor (line 495) | virtual void SetCursor(CTextCursor *pCursor, float x, float y, float F... method Text (line 510) | virtual void Text(void *pFontSetV, float x, float y, float Size, const... method TextWidth (line 518) | virtual float TextWidth(void *pFontSetV, float Size, const char *pText... method TextLineCount (line 526) | virtual int TextLineCount(void *pFontSetV, float Size, const char *pTe... method TextColor (line 535) | virtual void TextColor(float r, float g, float b, float a) method TextOutlineColor (line 543) | virtual void TextOutlineColor(float r, float g, float b, float a) method TextEx (line 551) | virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length) function IEngineTextRender (line 737) | IEngineTextRender *CreateEngineTextRender() { return new CTextRender; } FILE: src/engine/config.h function class (line 8) | class IConfig : public IInterface FILE: src/engine/console.h function class (line 8) | class IConsole : public IInterface FILE: src/engine/demo.h type CDemoHeader (line 13) | struct CDemoHeader function class (line 28) | class IDemoPlayer : public IInterface function class (line 64) | class IDemoRecorder : public IInterface FILE: src/engine/editor.h function class (line 7) | class IEditor : public IInterface FILE: src/engine/engine.h function class (line 9) | class CHostLookup function class (line 18) | class IEngine : public IInterface FILE: src/engine/external/json-parser/json.c type _json_value (line 40) | struct _json_value type _json_value (line 42) | struct _json_value type json_uchar (line 51) | typedef unsigned short json_uchar; function hex_value (line 53) | static unsigned char hex_value (json_char c) type json_state (line 67) | typedef struct function new_value (line 98) | static int new_value function json_value (line 193) | json_value * json_parse_ex (json_settings * settings, const json_char * ... function json_value (line 784) | json_value * json_parse (const json_char * json) function json_value_free (line 792) | void json_value_free (json_value * value) FILE: src/engine/external/json-parser/json.h type json_settings (line 47) | typedef struct type json_type (line 56) | typedef enum type _json_value (line 69) | struct _json_value type return (line 71) | typedef struct _json_value function const (line 141) | inline const struct _json_value &operator [] (const char * index) const FILE: src/engine/external/pnglite/pnglite.c function file_read (line 23) | static size_t file_read(png_t* png, void* out, size_t size, size_t numel) function file_write (line 45) | static size_t file_write(png_t* png, void* p, size_t size, size_t numel) function file_read_ul (line 61) | static int file_read_ul(png_t* png, unsigned *out) function file_write_ul (line 73) | static int file_write_ul(png_t* png, unsigned in) function get_ul (line 89) | static unsigned get_ul(unsigned char* buf) function set_ul (line 101) | static unsigned set_ul(unsigned char* buf, unsigned in) function png_init (line 111) | int png_init(png_alloc_t pngalloc, png_free_t pngfree) function png_get_bpp (line 126) | static int png_get_bpp(png_t* png) function png_read_ihdr (line 151) | static int png_read_ihdr(png_t* png) function png_write_ihdr (line 207) | static int png_write_ihdr(png_t* png) function png_print_info (line 239) | void png_print_info(png_t* png) function png_open_read (line 262) | int png_open_read(png_t* png, png_read_callback_t read_fun, void* user_p... function png_open_write (line 289) | int png_open_write(png_t* png, png_write_callback_t write_fun, void* use... function png_open (line 301) | int png_open(png_t* png, png_read_callback_t read_fun, void* user_pointer) function png_open_file_read (line 306) | int png_open_file_read(png_t *png, const char* filename) function png_open_file_write (line 316) | int png_open_file_write(png_t *png, const char* filename) function png_open_file (line 326) | int png_open_file(png_t *png, const char* filename) function png_close_file (line 331) | int png_close_file(png_t* png) function png_init_deflate (line 338) | static int png_init_deflate(png_t* png, unsigned char* data, int datalen) function png_init_inflate (line 359) | static int png_init_inflate(png_t* png) function png_end_deflate (line 392) | static int png_end_deflate(png_t* png) function png_end_inflate (line 407) | static int png_end_inflate(png_t* png) function png_inflate (line 434) | static int png_inflate(png_t* png, char* data, int len) function png_deflate (line 467) | static int png_deflate(png_t* png, char* outdata, int outlen, int *outwr... function png_write_idats (line 493) | static int png_write_idats(png_t* png, unsigned char* data) function png_read_idat (line 525) | static int png_read_idat(png_t* png, unsigned firstlen) function png_process_chunk (line 611) | static int png_process_chunk(png_t* png) function png_filter_sub (line 649) | static void png_filter_sub(int stride, unsigned char* in, unsigned char*... function png_filter_up (line 663) | static void png_filter_up(int stride, unsigned char* in, unsigned char* ... function png_filter_average (line 676) | static void png_filter_average(int stride, unsigned char* in, unsigned c... function png_paeth (line 698) | static unsigned char png_paeth(unsigned char a, unsigned char b, unsigne... function png_filter_paeth (line 717) | static void png_filter_paeth(int stride, unsigned char* in, unsigned cha... function png_filter (line 751) | static int png_filter(png_t* png, unsigned char* data) function png_unfilter (line 758) | static int png_unfilter(png_t* png, unsigned char* data) function png_get_data (line 818) | int png_get_data(png_t* png, unsigned char* data) function png_set_data (line 847) | int png_set_data(png_t* png, unsigned width, unsigned height, char depth... FILE: src/engine/external/pnglite/pnglite.h type png_t (line 83) | typedef struct FILE: src/engine/external/wavpack/bits.c function bs_open_read (line 28) | void bs_open_read (Bitstream *bs, uchar *buffer_start, uchar *buffer_end... function bs_read (line 50) | static void bs_read (Bitstream *bs) function little_endian_to_native (line 80) | void little_endian_to_native (void *data, char *format) function native_to_little_endian (line 110) | void native_to_little_endian (void *data, char *format) FILE: src/engine/external/wavpack/float.c function read_float_info (line 13) | int read_float_info (WavpackStream *wps, WavpackMetadata *wpmd) function float_values (line 28) | void float_values (WavpackStream *wps, int32_t *values, int32_t num_values) FILE: src/engine/external/wavpack/metadata.c function read_metadata_buff (line 15) | int read_metadata_buff (WavpackContext *wpc, WavpackMetadata *wpmd) function process_metadata (line 59) | int process_metadata (WavpackContext *wpc, WavpackMetadata *wpmd) FILE: src/engine/external/wavpack/unpack.c function unpack_init (line 31) | int unpack_init (WavpackContext *wpc) function init_wv_bitstream (line 75) | int init_wv_bitstream (WavpackContext *wpc, WavpackMetadata *wpmd) function read_decorr_terms (line 95) | int read_decorr_terms (WavpackStream *wps, WavpackMetadata *wpmd) function read_decorr_weights (line 123) | int read_decorr_weights (WavpackStream *wps, WavpackMetadata *wpmd) function read_decorr_samples (line 156) | int read_decorr_samples (WavpackStream *wps, WavpackMetadata *wpmd) function read_int32_info (line 215) | int read_int32_info (WavpackStream *wps, WavpackMetadata *wpmd) function read_channel_info (line 234) | int read_channel_info (WavpackContext *wpc, WavpackMetadata *wpmd) function read_config_info (line 256) | int read_config_info (WavpackContext *wpc, WavpackMetadata *wpmd) type decorr_pass (line 288) | struct decorr_pass type decorr_pass (line 290) | struct decorr_pass type decorr_pass (line 291) | struct decorr_pass type decorr_pass (line 293) | struct decorr_pass type decorr_pass (line 296) | struct decorr_pass type decorr_pass (line 297) | struct decorr_pass function unpack_samples (line 300) | int32_t unpack_samples (WavpackContext *wpc, int32_t *buffer, uint32_t s... function decorr_stereo_pass (line 411) | static void decorr_stereo_pass (struct decorr_pass *dpp, int32_t *buffer... function decorr_stereo_pass_cont (line 528) | static void decorr_stereo_pass_cont (struct decorr_pass *dpp, int32_t *b... function decorr_mono_pass (line 627) | static void decorr_mono_pass (struct decorr_pass *dpp, int32_t *buffer, ... function fixup_samples (line 691) | static void fixup_samples (WavpackStream *wps, int32_t *buffer, uint32_t... function check_crc_error (line 776) | int check_crc_error (WavpackContext *wpc) FILE: src/engine/external/wavpack/wavpack.h type __int64 (line 22) | typedef __int64 int64_t; type __int32 (line 23) | typedef __int32 int32_t; type uchar (line 28) | typedef unsigned char uchar; type ushort (line 31) | typedef unsigned short ushort; type uint (line 32) | typedef unsigned int uint; type WavpackHeader (line 46) | typedef struct { type WavpackMetadata (line 98) | typedef struct { type WavpackConfig (line 136) | typedef struct { type Bitstream (line 177) | typedef struct bs { type decorr_pass (line 188) | struct decorr_pass { type entropy_data (line 193) | struct entropy_data { type words_data (line 197) | struct words_data { type WavpackStream (line 204) | typedef struct { type WavpackContext (line 235) | typedef struct { type words_data (line 350) | struct words_data FILE: src/engine/external/wavpack/words.c function init_words (line 140) | void init_words (WavpackStream *wps) function read_entropy_vars (line 151) | int read_entropy_vars (WavpackStream *wps, WavpackMetadata *wpmd) function read_hybrid_profile (line 176) | int read_hybrid_profile (WavpackStream *wps, WavpackMetadata *wpmd) function update_error_limit (line 223) | void update_error_limit (struct words_data *w, uint32_t flags) function get_words (line 290) | int32_t get_words (int32_t *buffer, int nsamples, uint32_t flags, function read_code (line 463) | static uint32_t read_code (Bitstream *bs, uint32_t maxcode) function mylog2 (line 499) | static int mylog2 (uint32_t avalue) function log2s (line 523) | int log2s (int32_t value) function exp2s (line 533) | int32_t exp2s (int log) function restore_weight (line 552) | int restore_weight (signed char weight) FILE: src/engine/external/wavpack/wputils.c function WavpackContext (line 48) | WavpackContext *WavpackOpenFileInput (read_stream infile, char *error) function WavpackGetMode (line 122) | int WavpackGetMode (WavpackContext *wpc) function WavpackUnpackSamples (line 158) | uint32_t WavpackUnpackSamples (WavpackContext *wpc, int32_t *buffer, uin... function WavpackGetNumSamples (line 231) | uint32_t WavpackGetNumSamples (WavpackContext *wpc) function WavpackGetSampleIndex (line 238) | uint32_t WavpackGetSampleIndex (WavpackContext *wpc) function WavpackGetNumErrors (line 248) | int WavpackGetNumErrors (WavpackContext *wpc) function WavpackLossyBlocks (line 255) | int WavpackLossyBlocks (WavpackContext *wpc) function WavpackGetSampleRate (line 262) | uint32_t WavpackGetSampleRate (WavpackContext *wpc) function WavpackGetNumChannels (line 271) | int WavpackGetNumChannels (WavpackContext *wpc) function WavpackGetBitsPerSample (line 284) | int WavpackGetBitsPerSample (WavpackContext *wpc) function WavpackGetBytesPerSample (line 294) | int WavpackGetBytesPerSample (WavpackContext *wpc) function WavpackGetReducedChannels (line 304) | int WavpackGetReducedChannels (WavpackContext *wpc) function read_next_header (line 318) | static uint32_t read_next_header (read_stream infile, WavpackHeader *wphdr) FILE: src/engine/external/zlib/adler32.c function uLong (line 60) | uLong ZEXPORT adler32(adler, buf, len) function local (line 131) | local uLong adler32_combine_(adler1, adler2, len2) function uLong (line 155) | uLong ZEXPORT adler32_combine(adler1, adler2, len2) function uLong (line 163) | uLong ZEXPORT adler32_combine64(adler1, adler2, len2) FILE: src/engine/external/zlib/compress.c function compress2 (line 22) | int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) function compress (line 62) | int ZEXPORT compress (dest, destLen, source, sourceLen) function uLong (line 75) | uLong ZEXPORT compressBound (sourceLen) FILE: src/engine/external/zlib/crc32.c type u4 (line 39) | typedef unsigned int u4; type u4 (line 42) | typedef unsigned long u4; type u4 (line 45) | typedef unsigned short u4; function local (line 108) | local void make_crc_table() function local (line 185) | local void write_table(out, table) function crc32 (line 221) | unsigned long ZEXPORT crc32(crc, buf, len) function crc32_little (line 264) | local unsigned long crc32_little(crc, buf, len) function crc32_big (line 304) | local unsigned long crc32_big(crc, buf, len) function gf2_matrix_times (line 344) | local unsigned long gf2_matrix_times(mat, vec) function local (line 361) | local void gf2_matrix_square(square, mat) function local (line 372) | local uLong crc32_combine_(crc1, crc2, len2) function uLong (line 428) | uLong ZEXPORT crc32_combine(crc1, crc2, len2) function uLong (line 436) | uLong ZEXPORT crc32_combine64(crc1, crc2, len2) FILE: src/engine/external/zlib/deflate.c type block_state (line 66) | typedef enum { type block_state (line 73) | typedef block_state (*compress_func) type config (line 117) | typedef struct config_s { type static_tree_desc_s (line 155) | struct static_tree_desc_s {int dummy;} function deflateInit_ (line 198) | int ZEXPORT deflateInit_(strm, level, version, stream_size) function deflateInit2_ (line 210) | int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, str... function deflateSetDictionary (line 311) | int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) function deflateReset (line 353) | int ZEXPORT deflateReset (strm) function deflateSetHeader (line 389) | int ZEXPORT deflateSetHeader (strm, head) function deflatePrime (line 400) | int ZEXPORT deflatePrime (strm, bits, value) function deflateParams (line 412) | int ZEXPORT deflateParams(strm, level, strategy) function deflateTune (line 451) | int ZEXPORT deflateTune(strm, good_length, max_lazy, nice_length, max_ch... function uLong (line 486) | uLong ZEXPORT deflateBound(strm, sourceLen) function local (line 548) | local void putShortMSB (s, b) function local (line 562) | local void flush_pending(strm) function deflate (line 582) | int ZEXPORT deflate (strm, flush) function deflateEnd (line 895) | int ZEXPORT deflateEnd (strm) function deflateCopy (line 930) | int ZEXPORT deflateCopy (dest, source) function local (line 992) | local int read_buf(strm, buf, size) function local (line 1022) | local void lm_init (s) function local (line 1063) | local uInt longest_match(s, cur_match) function local (line 1212) | local uInt longest_match(s, cur_match) function local (line 1271) | local void check_match(s, start, match, length) function local (line 1305) | local void fill_window(s) function local (line 1462) | local block_state deflate_stored(s, flush) function local (line 1520) | local block_state deflate_fast(s, flush) function local (line 1616) | local block_state deflate_slow(s, flush) function local (line 1741) | local block_state deflate_rle(s, flush) function local (line 1807) | local block_state deflate_huff(s, flush) FILE: src/engine/external/zlib/deflate.h type ct_data (line 62) | typedef struct ct_data_s { type static_tree_desc (line 78) | typedef struct static_tree_desc_s static_tree_desc; type tree_desc (line 80) | typedef struct tree_desc_s { type ush (line 86) | typedef ush Pos; type Pos (line 87) | typedef Pos FAR Posf; type IPos (line 88) | typedef unsigned IPos; type deflate_state (line 94) | typedef struct internal_state { FILE: src/engine/external/zlib/infback.c type inflate_state (line 19) | struct inflate_state function inflateBackInit_ (line 28) | int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_s... function local (line 73) | local void fixedtables(state) function inflateBack (line 241) | int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) function inflateBackEnd (line 623) | int ZEXPORT inflateBackEnd(strm) FILE: src/engine/external/zlib/inffast.c function inflate_fast (line 67) | void ZLIB_INTERNAL inflate_fast(strm, start) FILE: src/engine/external/zlib/inflate.c type inflate_state (line 95) | struct inflate_state function inflateReset (line 103) | int ZEXPORT inflateReset(strm) function inflateReset2 (line 130) | int ZEXPORT inflateReset2(strm, windowBits) function inflateInit2_ (line 168) | int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) function inflateInit_ (line 201) | int ZEXPORT inflateInit_(strm, version, stream_size) function inflatePrime (line 209) | int ZEXPORT inflatePrime(strm, bits, value) function local (line 240) | local void fixedtables(state) function makefixed (line 304) | void makefixed() function local (line 358) | local int updatewindow(strm, out) type inflate_state (line 593) | struct inflate_state type inflate_state (line 616) | struct inflate_state type inflate_state (line 1241) | struct inflate_state type inflate_state (line 1244) | struct inflate_state type inflate_state (line 1257) | struct inflate_state type inflate_state (line 1262) | struct inflate_state type inflate_state (line 1298) | struct inflate_state type inflate_state (line 1302) | struct inflate_state type inflate_state (line 1351) | struct inflate_state type inflate_state (line 1355) | struct inflate_state type inflate_state (line 1399) | struct inflate_state type inflate_state (line 1402) | struct inflate_state type inflate_state (line 1410) | struct inflate_state type inflate_state (line 1411) | struct inflate_state type inflate_state (line 1419) | struct inflate_state type inflate_state (line 1422) | struct inflate_state type inflate_state (line 1423) | struct inflate_state type inflate_state (line 1437) | struct inflate_state type internal_state (line 1449) | struct internal_state type inflate_state (line 1457) | struct inflate_state type inflate_state (line 1460) | struct inflate_state type inflate_state (line 1473) | struct inflate_state type inflate_state (line 1476) | struct inflate_state FILE: src/engine/external/zlib/inflate.h type inflate_mode (line 20) | typedef enum { type inflate_state (line 81) | struct inflate_state { FILE: src/engine/external/zlib/inftrees.c function inflate_table (line 32) | int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) FILE: src/engine/external/zlib/inftrees.h type code (line 24) | typedef struct { type codetype (line 54) | typedef enum { FILE: src/engine/external/zlib/trees.c type static_tree_desc_s (line 122) | struct static_tree_desc_s { function local (line 193) | local void send_bits(s, value, length) function local (line 239) | local void tr_static_init() function gen_trees_header (line 333) | void gen_trees_header() function _tr_init (line 386) | void ZLIB_INTERNAL _tr_init(s) function local (line 415) | local void init_block(s) function local (line 459) | local void pqdownheap(s, tree, k) function local (line 494) | local void gen_bitlen(s, desc) function local (line 581) | local void gen_codes (tree, max_code, bl_count) function local (line 623) | local void build_tree(s, desc) function local (line 711) | local void scan_tree (s, tree, max_code) function local (line 756) | local void send_tree (s, tree, max_code) function local (line 807) | local int build_bl_tree(s) function local (line 842) | local void send_all_trees(s, lcodes, dcodes, blcodes) function _tr_stored_block (line 871) | void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last) function _tr_align (line 896) | void ZLIB_INTERNAL _tr_align(s) function ZLIB_INTERNAL (line 1026) | int ZLIB_INTERNAL _tr_tally (s, dist, lc) function local (line 1076) | local void compress_block(s, ltree, dtree) function local (line 1137) | local int detect_data_type(s) function bi_reverse (line 1171) | local unsigned bi_reverse(code, len) function local (line 1186) | local void bi_flush(s) function local (line 1203) | local void bi_windup(s) function local (line 1222) | local void copy_block(s, buf, len, header) FILE: src/engine/external/zlib/uncompr.c function uncompress (line 24) | int ZEXPORT uncompress (dest, destLen, source, sourceLen) FILE: src/engine/external/zlib/zconf.h type Byte (line 333) | typedef unsigned char Byte; type uInt (line 335) | typedef unsigned int uInt; type uLong (line 336) | typedef unsigned long uLong; type Byte (line 342) | typedef Byte FAR Bytef; type charf (line 344) | typedef char FAR charf; type intf (line 345) | typedef int FAR intf; type uInt (line 346) | typedef uInt FAR uIntf; type uLong (line 347) | typedef uLong FAR uLongf; type Byte (line 354) | typedef Byte const *voidpc; type Byte (line 355) | typedef Byte FAR *voidpf; type Byte (line 356) | typedef Byte *voidp; FILE: src/engine/external/zlib/zlib.h type voidpf (line 80) | typedef voidpf (*alloc_func) type internal_state (line 83) | struct internal_state type z_stream (line 85) | typedef struct z_stream_s { type z_stream (line 106) | typedef z_stream FAR *z_streamp; type gz_header (line 112) | typedef struct gz_header_s { type gz_header (line 129) | typedef gz_header FAR *gz_headerp; type voidp (line 1165) | typedef voidp gzFile; type internal_state (line 1600) | struct internal_state {int dummy;} FILE: src/engine/external/zlib/zutil.c type internal_state (line 11) | struct internal_state {int dummy;} function uLong (line 32) | uLong ZEXPORT zlibCompileFlags() function ZLIB_INTERNAL (line 122) | void ZLIB_INTERNAL z_error (m) function zmemcpy (line 149) | void ZLIB_INTERNAL zmemcpy(dest, source, len) function zmemcmp (line 160) | int ZLIB_INTERNAL zmemcmp(s1, s2, len) function zmemzero (line 173) | void ZLIB_INTERNAL zmemzero(dest, len) type ptr_table (line 203) | typedef struct ptr_table_s { function voidpf (line 216) | voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) function ZLIB_INTERNAL (line 240) | void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) function voidpf (line 275) | voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) function ZLIB_INTERNAL (line 281) | void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) function voidpf (line 300) | voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) function ZLIB_INTERNAL (line 310) | void ZLIB_INTERNAL zcfree (opaque, ptr) FILE: src/engine/external/zlib/zutil.h type uch (line 37) | typedef unsigned char uch; type uch (line 38) | typedef uch FAR uchf; type ush (line 39) | typedef unsigned short ush; type ush (line 40) | typedef ush FAR ushf; type ulg (line 41) | typedef unsigned long ulg; FILE: src/engine/friends.h type CFriendInfo (line 10) | struct CFriendInfo function class (line 18) | class IFriends : public IInterface FILE: src/engine/graphics.h function class (line 11) | class CImageInfo function class (line 42) | class CVideoMode function class (line 70) | class CTextureHandle function virtual (line 101) | virtual int MemoryUsage() const = 0; type CFreeformItem (line 137) | struct CFreeformItem FILE: src/engine/input.h function class (line 10) | class IInput : public IInterface function class (line 86) | class IEngineInput : public IInput FILE: src/engine/kernel.h function class (line 11) | class IInterface function class (line 37) | class IKernel FILE: src/engine/map.h function class (line 8) | class IMap : public IInterface function class (line 22) | class IEngineMap : public IMap FILE: src/engine/masterserver.h function class (line 8) | class IMasterServer : public IInterface function class (line 31) | class IEngineMasterServer : public IMasterServer FILE: src/engine/message.h function class (line 8) | class CMsgPacker : public CPacker FILE: src/engine/server.h function class (line 8) | class IServer : public IInterface function class (line 72) | class IGameServer : public IInterface FILE: src/engine/server/register.h function class (line 6) | class CRegister FILE: src/engine/server/server.cpp function StrRtrim (line 46) | static void StrRtrim(char *pStr) function int64 (line 409) | int64 CServer::TickStartTime(int Tick) function CServer (line 1637) | static CServer *CreateServer() { return new CServer(); } function main (line 1639) | int main(int argc, const char **argv) // ignore_convention FILE: src/engine/server/server.h function class (line 9) | class CSnapIDPool function class (line 44) | class CServerBan : public CNetBan function class (line 62) | class CServer : public IServer FILE: src/engine/serverbrowser.h function class (line 13) | class CServerInfo function class (line 56) | class IServerBrowser : public IInterface FILE: src/engine/shared/compression.h function class (line 6) | class CVariableInt FILE: src/engine/shared/config.cpp class CConfig (line 9) | class CConfig : public IConfig type CCallback (line 14) | struct CCallback method EscapeParam (line 28) | void EscapeParam(char *pDst, const char *pSrc, int size) method CConfig (line 41) | CConfig() method Init (line 47) | virtual void Init() method Reset (line 53) | virtual void Reset() method RestoreStrings (line 64) | virtual void RestoreStrings() method Save (line 75) | virtual void Save() method RegisterCallback (line 102) | virtual void RegisterCallback(SAVECALLBACKFUNC pfnFunc, void *pUserData) method WriteLine (line 110) | virtual void WriteLine(const char *pLine) function IConfig (line 119) | IConfig *CreateConfig() { return new CConfig; } FILE: src/engine/shared/config.h type CConfiguration (line 6) | struct CConfiguration FILE: src/engine/shared/console.cpp type CIntVariableData (line 500) | struct CIntVariableData type CStrVariableData (line 508) | struct CStrVariableData function IntVariableCommand (line 515) | static void IntVariableCommand(IConsole::IResult *pResult, void *pUserData) function StrVariableCommand (line 542) | static void StrVariableCommand(IConsole::IResult *pResult, void *pUserData) function IConsole (line 908) | extern IConsole *CreateConsole(int FlagMask) { return new CConsole(FlagM... FILE: src/engine/shared/console.h function class (line 9) | class CConsole : public IConsole function class (line 124) | class CExecutionQueue function SetAccessLevel (line 182) | void SetAccessLevel(int AccessLevel) { m_AccessLevel = clamp(AccessLevel... FILE: src/engine/shared/datafile.cpp type CDatafileItemType (line 11) | struct CDatafileItemType type CDatafileItem (line 18) | struct CDatafileItem type CDatafileHeader (line 24) | struct CDatafileHeader type CDatafileData (line 37) | struct CDatafileData type CDatafileInfo (line 47) | struct CDatafileInfo type CDatafile (line 58) | struct CDatafile class IStorage (line 69) | class IStorage class IStorage (line 227) | class IStorage class IStorage (line 446) | class IStorage FILE: src/engine/shared/datafile.h function class (line 7) | class CDataFileReader function class (line 38) | class CDataFileWriter FILE: src/engine/shared/demo.cpp class CSnapshotDelta (line 21) | class CSnapshotDelta class IStorage (line 29) | class IStorage class IConsole (line 29) | class IConsole class CSnapshotDelta (line 319) | class CSnapshotDelta class IStorage (line 581) | class IStorage class IConsole (line 581) | class IConsole class IStorage (line 842) | class IStorage FILE: src/engine/shared/demo.h function class (line 11) | class CDemoRecorder : public IDemoRecorder function class (line 40) | class CDemoPlayer : public IDemoPlayer FILE: src/engine/shared/econ.h function class (line 7) | class CEcon FILE: src/engine/shared/engine.cpp function HostLookupThread (line 13) | static int HostLookupThread(void *pUser) class CEngine (line 19) | class CEngine : public IEngine method Con_DbgDumpmem (line 26) | static void Con_DbgDumpmem(IConsole::IResult *pResult, void *pUserData) method Con_DbgLognetwork (line 36) | static void Con_DbgLognetwork(IConsole::IResult *pResult, void *pUserD... method CEngine (line 58) | CEngine(const char *pAppname) method Init (line 82) | void Init() method InitLogfile (line 94) | void InitLogfile() method HostLookup (line 101) | void HostLookup(CHostLookup *pLookup, const char *pHostname, int Nettype) method AddJob (line 108) | void AddJob(CJob *pJob, JOBFUNC pfnFunc, void *pData) function IEngine (line 116) | IEngine *CreateEngine(const char *pAppname) { return new CEngine(pAppnam... FILE: src/engine/shared/filecollection.cpp function int64 (line 43) | int64 CFileCollection::ExtractTimestamp(const char *pTimestring) FILE: src/engine/shared/filecollection.h function class (line 6) | class CFileCollection FILE: src/engine/shared/huffman.cpp type CHuffmanConstructNode (line 6) | struct CHuffmanConstructNode function BubbleSort (line 27) | static void BubbleSort(CHuffmanConstructNode **ppList, int Size) FILE: src/engine/shared/huffman.h function class (line 8) | class CHuffman FILE: src/engine/shared/jobs.h function class (line 9) | class CJob function class (line 40) | class CJobPool FILE: src/engine/shared/kernel.cpp class CKernel (line 6) | class CKernel : public IKernel class CInterfaceInfo (line 13) | class CInterfaceInfo method CInterfaceInfo (line 16) | CInterfaceInfo() method CInterfaceInfo (line 29) | CInterfaceInfo *FindInterfaceInfo(const char *pName) method CInterfaceInfo (line 16) | CInterfaceInfo() method CKernel (line 41) | CKernel() method RegisterInterfaceImpl (line 47) | virtual bool RegisterInterfaceImpl(const char *pName, IInterface *pInt... method ReregisterInterfaceImpl (line 76) | virtual bool ReregisterInterfaceImpl(const char *pName, IInterface *pI... method IInterface (line 89) | virtual IInterface *RequestInterfaceImpl(const char *pName) function IKernel (line 101) | IKernel *IKernel::Create() { return new CKernel; } FILE: src/engine/shared/linereader.h function class (line 8) | class CLineReader FILE: src/engine/shared/map.cpp class CMap (line 9) | class CMap : public IEngineMap method CMap (line 13) | CMap() {} method UnloadData (line 17) | virtual void UnloadData(int Index) { m_DataFile.UnloadData(Index); } method GetType (line 19) | virtual void GetType(int Type, int *pStart, int *pNum) { m_DataFile.Ge... method NumItems (line 21) | virtual int NumItems() { return m_DataFile.NumItems(); } method Unload (line 23) | virtual void Unload() method Load (line 28) | virtual bool Load(const char *pMapName, IStorage *pStorage) method IsLoaded (line 44) | virtual bool IsLoaded() method Crc (line 49) | virtual unsigned Crc() function IEngineMap (line 55) | extern IEngineMap *CreateEngineMap() { return new CMap; } FILE: src/engine/shared/mapchecker.h function class (line 8) | class CMapChecker FILE: src/engine/shared/masterserver.cpp class CMasterServer (line 13) | class CMasterServer : public IEngineMasterServer type CMasterInfo (line 17) | struct CMasterInfo method CMasterServer (line 38) | CMasterServer() method RefreshAddresses (line 46) | virtual int RefreshAddresses(int Nettype) method Update (line 64) | virtual void Update() method IsRefreshing (line 95) | virtual int IsRefreshing() method NETADDR (line 100) | virtual NETADDR GetAddr(int Index) method IsValid (line 110) | virtual bool IsValid(int Index) method Init (line 115) | virtual void Init() method SetDefault (line 121) | virtual void SetDefault() method Load (line 128) | virtual int Load() method Save (line 181) | virtual int Save() function IEngineMasterServer (line 209) | IEngineMasterServer *CreateEngineMasterServer() { return new CMasterServ... FILE: src/engine/shared/memheap.h function class (line 5) | class CHeap FILE: src/engine/shared/message.h function class (line 5) | class CMessage FILE: src/engine/shared/netban.h function NetComp (line 7) | inline int NetComp(const NETADDR *pAddr1, const NETADDR *pAddr2) function class (line 12) | class CNetRange function NetComp (line 21) | inline int NetComp(const CNetRange *pRange1, const CNetRange *pRange2) function class (line 27) | class CNetBan FILE: src/engine/shared/network.h type CNetChunk (line 85) | struct CNetChunk function class (line 96) | class CNetChunkHeader function class (line 107) | class CNetChunkResend function class (line 119) | class CNetPacketConstruct function class (line 130) | class CNetConnection function class (line 195) | class CConsoleNetConnection function class (line 225) | class CNetRecvUnpacker function class (line 244) | class CNetServer function class (line 290) | class CNetConsole function class (line 331) | class CNetClient function class (line 366) | class CNetBase FILE: src/engine/shared/packer.h function class (line 8) | class CPacker function class (line 30) | class CUnpacker FILE: src/engine/shared/ringbuffer.h type RINGBUFFER (line 6) | typedef struct RINGBUFFER RINGBUFFER; function class (line 8) | class CRingBufferBase function Init (line 57) | void Init() { CRingBufferBase::Init(m_aBuffer, TSIZE, TFLAGS); } function T (line 59) | T *Allocate(int Size) { return (T*)CRingBufferBase::Allocate(Size); } function PopFirst (line 60) | int PopFirst() { return CRingBufferBase::PopFirst(); } function T (line 62) | T *Prev(T *pCurrent) { return (T*)CRingBufferBase::Prev(pCurrent); } function T (line 63) | T *Next(T *pCurrent) { return (T*)CRingBufferBase::Next(pCurrent); } function T (line 64) | T *First() { return (T*)CRingBufferBase::First(); } function T (line 65) | T *Last() { return (T*)CRingBufferBase::Last(); } FILE: src/engine/shared/snapshot.cpp function CSnapshotItem (line 8) | CSnapshotItem *CSnapshot::GetItem(int Index) type CItemList (line 62) | struct CItemList function GenerateHash (line 74) | static void GenerateHash(CItemList *pHashlist, CSnapshot *pSnapshot) function GetItemIndexHashed (line 92) | static int GetItemIndexHashed(int Key, const CItemList *pHashlist) function DiffItem (line 104) | static int DiffItem(int *pPast, int *pCurrent, int *pOut, int Size) function RangeCheck (line 272) | static int RangeCheck(void *pEnd, void *pPtr, int Size) function CSnapshotItem (line 514) | CSnapshotItem *CSnapshotBuilder::GetItem(int Index) FILE: src/engine/shared/snapshot.h function class (line 10) | class CSnapshotItem function class (line 22) | class CSnapshot function class (line 50) | class CSnapshotDelta function class (line 85) | class CSnapshotStorage function class (line 113) | class CSnapshotBuilder FILE: src/engine/shared/storage.cpp class CStorage (line 10) | class CStorage : public IStorage method CStorage (line 25) | CStorage() method Init (line 33) | int Init(const char *pApplicationName, int StorageType, int NumArgs, c... method LoadPaths (line 82) | void LoadPaths(const char *pArgv0) method AddDefaultPaths (line 124) | void AddDefaultPaths() method AddPath (line 131) | void AddPath(const char *pPath) method FindDatadir (line 167) | void FindDatadir(const char *pArgv0) method ListDirectory (line 234) | virtual void ListDirectory(int Type, const char *pPath, FS_LISTDIR_CAL... method IOHANDLE (line 256) | virtual IOHANDLE OpenFile(const char *pFilename, int Flags, int Type, ... type CFindCBData (line 296) | struct CFindCBData method FindFileCallback (line 305) | static int FindFileCallback(const char *pName, int IsDir, int Type, vo... method FindFile (line 332) | virtual bool FindFile(const char *pFilename, const char *pPath, int Ty... method RemoveFile (line 365) | virtual bool RemoveFile(const char *pFilename, int Type) method RenameFile (line 374) | virtual bool RenameFile(const char* pOldFilename, const char* pNewFile... method CreateFolder (line 383) | virtual bool CreateFolder(const char *pFoldername, int Type) method GetCompletePath (line 392) | virtual void GetCompletePath(int Type, const char *pDir, char *pBuffer... method IStorage (line 404) | static IStorage *Create(const char *pApplicationName, int StorageType,... function IStorage (line 417) | IStorage *CreateStorage(const char *pApplicationName, int StorageType, i... FILE: src/engine/sound.h function class (line 8) | class ISound : public IInterface function class (line 54) | class IEngineSound : public ISound FILE: src/engine/storage.h function class (line 8) | class IStorage : public IInterface FILE: src/engine/textrender.h function class (line 16) | class CTextCursor function class (line 33) | class ITextRender : public IInterface function class (line 55) | class IEngineTextRender : public ITextRender FILE: src/game/client/animstate.cpp function AnimSeqEval (line 10) | static void AnimSeqEval(CAnimSequence *pSeq, float Time, CAnimKeyframe *... function AnimAddKeyframe (line 52) | static void AnimAddKeyframe(CAnimKeyframe *pSeq, CAnimKeyframe *pAdded, ... function AnimAdd (line 59) | static void AnimAdd(CAnimState *pState, CAnimState *pAdded, float Amount) function CAnimState (line 83) | CAnimState *CAnimState::GetIdle() FILE: src/game/client/animstate.h function class (line 6) | class CAnimState FILE: src/game/client/component.h function class (line 9) | class CComponent FILE: src/game/client/components/binds.h function class (line 8) | class CBinds : public CComponent FILE: src/game/client/components/broadcast.h function class (line 7) | class CBroadcast : public CComponent FILE: src/game/client/components/camera.h function class (line 8) | class CCamera : public CComponent FILE: src/game/client/components/chat.h function class (line 9) | class CChat : public CComponent FILE: src/game/client/components/console.cpp function ConsoleScaleFunc (line 250) | static float ConsoleScaleFunc(float t) type CRenderInfo (line 256) | struct CRenderInfo FILE: src/game/client/components/console.h function class (line 9) | class CGameConsole : public CComponent FILE: src/game/client/components/controls.cpp function ConKeyInputState (line 46) | static void ConKeyInputState(IConsole::IResult *pResult, void *pUserData) function ConKeyInputCounter (line 51) | static void ConKeyInputCounter(IConsole::IResult *pResult, void *pUserData) type CInputSet (line 59) | struct CInputSet function ConKeyInputSet (line 66) | static void ConKeyInputSet(IConsole::IResult *pResult, void *pUserData) function ConKeyInputNextPrevWeapon (line 73) | static void ConKeyInputNextPrevWeapon(IConsole::IResult *pResult, void *... FILE: src/game/client/components/controls.h function class (line 8) | class CControls : public CComponent FILE: src/game/client/components/countryflags.h function class (line 9) | class CCountryFlags : public CComponent FILE: src/game/client/components/damageind.h function class (line 8) | class CDamageInd : public CComponent FILE: src/game/client/components/debughud.h function class (line 7) | class CDebugHud : public CComponent FILE: src/game/client/components/effects.cpp function vec2 (line 19) | inline vec2 RandomDir() { return normalize(vec2(frandom()-0.5f, frandom(... FILE: src/game/client/components/effects.h function class (line 7) | class CEffects : public CComponent FILE: src/game/client/components/emoticon.h function class (line 8) | class CEmoticon : public CComponent FILE: src/game/client/components/flow.cpp function vec2 (line 72) | vec2 CFlow::Get(vec2 Pos) FILE: src/game/client/components/flow.h function class (line 8) | class CFlow : public CComponent FILE: src/game/client/components/hud.h function class (line 7) | class CHud : public CComponent FILE: src/game/client/components/items.cpp type CNetObj_Laser (line 201) | struct CNetObj_Laser FILE: src/game/client/components/items.h function class (line 7) | class CItems : public CComponent FILE: src/game/client/components/killmessages.h function class (line 7) | class CKillMessages : public CComponent FILE: src/game/client/components/mapimages.h function class (line 7) | class CMapImages : public CComponent FILE: src/game/client/components/maplayers.h function class (line 7) | class CMapLayers : public CComponent FILE: src/game/client/components/menus.h function class (line 22) | class CMenusKeyBinder : public CComponent type CListboxItem (line 88) | struct CListboxItem type CMenuImage (line 165) | struct CMenuImage type CDemoItem (line 230) | struct CDemoItem type CFriendItem (line 258) | struct CFriendItem function class (line 285) | class CBrowserFilter FILE: src/game/client/components/menus_browser.cpp function CServerInfo (line 86) | const CServerInfo *CMenus::CBrowserFilter::SortedGet(int Index) const FILE: src/game/client/components/menus_settings.cpp class CLanguage (line 548) | class CLanguage method CLanguage (line 551) | CLanguage() {} method CLanguage (line 552) | CLanguage(const char *n, const char *f, int Code) : m_Name(n), m_FileN... function LoadLanguageIndexfile (line 561) | void LoadLanguageIndexfile(IStorage *pStorage, IConsole *pConsole, sorte... FILE: src/game/client/components/motd.h function class (line 7) | class CMotd : public CComponent FILE: src/game/client/components/nameplates.h function class (line 7) | class CNamePlates : public CComponent FILE: src/game/client/components/particles.h type CParticle (line 9) | struct CParticle function class (line 51) | class CParticles : public CComponent FILE: src/game/client/components/players.cpp function NormalizeAngular (line 69) | inline float NormalizeAngular(float f) function AngularMixDirection (line 74) | inline float AngularMixDirection (float Src, float Dst) { return sinf(Ds... function AngularDistance (line 75) | inline float AngularDistance(float Src, float Dst) { return asinf(sinf(D... function AngularApproach (line 77) | inline float AngularApproach(float Src, float Dst, float Amount) FILE: src/game/client/components/players.h function class (line 7) | class CPlayers : public CComponent FILE: src/game/client/components/scoreboard.h function class (line 7) | class CScoreboard : public CComponent FILE: src/game/client/components/skins.cpp function vec3 (line 335) | vec3 CSkins::GetColorV3(int v) const function vec4 (line 341) | vec4 CSkins::GetColorV4(int v, bool UseAlpha) const FILE: src/game/client/components/skins.h function class (line 10) | class CSkins : public CComponent FILE: src/game/client/components/sounds.cpp type CUserData (line 13) | struct CUserData function LoadSoundsThread (line 19) | static int LoadSoundsThread(void *pUser) FILE: src/game/client/components/sounds.h function class (line 9) | class CSounds : public CComponent FILE: src/game/client/components/spectator.h function class (line 9) | class CSpectator : public CComponent FILE: src/game/client/components/voting.h function class (line 12) | class CVoting : public CComponent FILE: src/game/client/gameclient.cpp class CComponent (line 86) | class CComponent type CGameMsg (line 119) | struct CGameMsg function IGameClient (line 1473) | IGameClient *CreateGameClient() FILE: src/game/client/gameclient.h function class (line 13) | class CGameClient : public IGameClient function HueToRgb (line 284) | inline float HueToRgb(float v1, float v2, float h) function vec3 (line 294) | inline vec3 HslToRgb(vec3 HSL) FILE: src/game/client/lineinput.h function class (line 9) | class CLineInput FILE: src/game/client/localization.h function class (line 8) | class CLocalizationDatabase function class (line 41) | class CLocConstString FILE: src/game/client/render.cpp function CalcScreenParams (line 504) | static void CalcScreenParams(float Amount, float WMax, float HMax, float... class CLayers (line 539) | class CLayers FILE: src/game/client/render.h function class (line 11) | class CTeeRenderInfo function class (line 42) | class CRenderTools FILE: src/game/client/render_map.cpp function Rotate (line 73) | static void Rotate(CPoint *pCenter, CPoint *pPoint, float Rotation) FILE: src/game/client/ui.cpp function CUIRect (line 63) | CUIRect *CUI::Screen() FILE: src/game/client/ui.h function class (line 6) | class CUIRect function class (line 26) | class CUI function class (line 44) | class IGraphics *Graphics() { return m_pGraphics; } function class (line 45) | class ITextRender *TextRender() { return m_pTextRender; } function MouseButton (line 80) | int MouseButton(int Index) const { return (m_MouseButtons>>Index)&1; } function MouseButtonClicked (line 81) | int MouseButtonClicked(int Index) { return MouseButton(Index) && !((m_La... function SetHotItem (line 83) | void SetHotItem(const void *pID) { m_pBecommingHotItem = pID; } function SetActiveItem (line 84) | void SetActiveItem(const void *pID) { m_pActiveItem = pID; if (pID) m_pL... function ClearLastActiveItem (line 85) | void ClearLastActiveItem() { m_pLastActiveItem = 0; } FILE: src/game/collision.cpp class CLayers (line 23) | class CLayers FILE: src/game/collision.h function class (line 8) | class CCollision FILE: src/game/editor/auto_map.cpp function CompareRules (line 191) | int CompareRules(const void *a, const void *b) FILE: src/game/editor/auto_map.h function class (line 12) | class IAutoMapper function class (line 56) | class CTilesetMapper: public IAutoMapper function class (line 102) | class CDoodadsMapper: public IAutoMapper FILE: src/game/editor/editor.cpp function vec4 (line 435) | vec4 CEditor::ButtonColorMul(const void *pID) function vec4 (line 498) | vec4 CEditor::GetButtonColor(const void *pID, int Checked) function CLayerGroup (line 730) | CLayerGroup *CEditor::GetSelectedGroup() function CLayer (line 737) | CLayer *CEditor::GetSelectedLayer(int Index) function CLayer (line 748) | CLayer *CEditor::GetSelectedLayerType(int Index, int Type) function CQuad (line 756) | CQuad *CEditor::GetSelectedQuad() function Rotate (line 1090) | static void Rotate(const CPoint *pCenter, CPoint *pPoint, float Rotation) function ModifyIndexDeleted (line 2584) | static void ModifyIndexDeleted(int *pIndex) function CompareImageName (line 2642) | static int CompareImageName(const void *pObject1, const void *pObject2) function ModifySortedIndex (line 2651) | static void ModifySortedIndex(int *pIndex) function EditorListdirCallback (line 2819) | static int EditorListdirCallback(const char *pName, int IsDir, int Stora... function IEditor (line 4172) | IEditor *CreateEditor() { return new CEditor; } FILE: src/game/editor/editor.h type CEntity (line 41) | struct CEntity function class (line 47) | class CEnvelope function Resort (line 65) | void Resort() function FindTopBottom (line 71) | void FindTopBottom(int ChannelMask) function Eval (line 89) | int Eval(float Time, float *pResult) function EndTime (line 108) | float EndTime() function class (line 121) | class CLayer function class (line 170) | class CLayerGroup function class (line 233) | class CEditorImage : public CImageInfo function class (line 262) | class CEditorMap type CProperty (line 370) | struct CProperty type RECTi (line 391) | typedef struct function class (line 397) | class CLayerTiles : public CLayer function class (line 446) | class CLayerQuads : public CLayer function class (line 473) | class CLayerGame : public CLayerTiles function class (line 482) | class CEditor : public IEditor function class (line 494) | class IClient *Client() { return m_pClient; } function class (line 495) | class IConsole *Console() { return m_pConsole; } function class (line 496) | class IGraphics *Graphics() { return m_pGraphics; } function class (line 497) | class ITextRender *TextRender() { return m_pTextRender; } function class (line 498) | class IStorage *Storage() { return m_pStorage; } function CUI (line 499) | CUI *UI() { return &m_UI; } function CRenderTools (line 500) | CRenderTools *RenderTools() { return &m_RenderTools; } function virtual (line 574) | virtual bool HasUnsavedData() { return m_Map.m_Modified; } type CFilelistItem (line 642) | struct CFilelistItem function ExtractName (line 788) | static void ExtractName(const char *pFileName, char *pName, int BufferSize) function class (line 808) | inline class IGraphics *CLayer::Graphics() { return m_pEditor->Graphics(... FILE: src/game/editor/io.cpp function MakeVersion (line 12) | static int MakeVersion(int i, const T &v) class IStorage (line 203) | class IStorage class IStorage (line 424) | class IStorage function ModifyAdd (line 666) | static void ModifyAdd(int *pIndex) FILE: src/game/editor/layer_quads.cpp function CQuad (line 37) | CQuad *CLayerQuads::NewQuad() function Rotate (line 160) | void Rotate(vec2 *pCenter, vec2 *pPoint, float Rotation) FILE: src/game/gamecore.cpp function HermiteBasis1 (line 46) | float HermiteBasis1(float v) function VelocityRamp (line 51) | float VelocityRamp(float Value, float Start, float Range, float Curvature) FILE: src/game/gamecore.h function class (line 15) | class CTuneParam function class (line 26) | class CTuningParams function vec2 (line 51) | inline vec2 GetDirection(int Angle) function vec2 (line 57) | inline vec2 GetDir(float Angle) function GetAngle (line 62) | inline float GetAngle(vec2 Dir) function StrToInts (line 72) | inline void StrToInts(int *pInts, int Num, const char *pStr) function IntsToStr (line 89) | inline void IntsToStr(const int *pInts, int Num, char *pStr) function vec2 (line 108) | inline vec2 CalcPos(vec2 Pos, vec2 Velocity, float Curvature, float Spee... function T (line 119) | T SaturatedAdd(T Min, T Max, T Current, T Modifier) function class (line 155) | class CWorldCore function class (line 167) | class CCharacterCore FILE: src/game/layers.cpp class IKernel (line 16) | class IKernel function CMapItemGroup (line 59) | CMapItemGroup *CLayers::GetGroup(int Index) const function CMapItemLayer (line 64) | CMapItemLayer *CLayers::GetLayer(int Index) const FILE: src/game/layers.h function class (line 9) | class CLayers FILE: src/game/mapitems.h type CPoint (line 61) | struct CPoint type CColor (line 66) | struct CColor type CQuad (line 71) | struct CQuad function class (line 84) | class CTile type CMapItemInfo (line 93) | struct CMapItemInfo type CMapItemImage_v1 (line 102) | struct CMapItemImage_v1 function CMapItemImage_v1 (line 112) | struct CMapItemImage : public CMapItemImage_v1 type CMapItemGroup_v1 (line 118) | struct CMapItemGroup_v1 function CMapItemGroup_v1 (line 131) | struct CMapItemGroup : public CMapItemGroup_v1 type CMapItemLayer (line 144) | struct CMapItemLayer type CMapItemLayerTilemap (line 151) | struct CMapItemLayerTilemap type CMapItemLayerQuads (line 170) | struct CMapItemLayerQuads type CMapItemVersion (line 182) | struct CMapItemVersion type CEnvPoint (line 189) | struct CEnvPoint type CMapItemEnvelope_v1 (line 198) | struct CMapItemEnvelope_v1 function CMapItemEnvelope_v1 (line 207) | struct CMapItemEnvelope : public CMapItemEnvelope_v1 FILE: src/game/server/alloc.h function delete (line 17) | void operator delete(void *pPtr) \ FILE: src/game/server/entities/character.cpp type CInputCount (line 15) | struct CInputCount function CInputCount (line 21) | CInputCount CountInput(int Prev, int Cur) FILE: src/game/server/entities/character.h function class (line 9) | class CCharacter : public CEntity FILE: src/game/server/entities/flag.h function class (line 8) | class CFlag : public CEntity FILE: src/game/server/entities/laser.h function class (line 8) | class CLaser : public CEntity FILE: src/game/server/entities/pickup.h function class (line 10) | class CPickup : public CEntity FILE: src/game/server/entities/projectile.cpp function vec2 (line 32) | vec2 CProjectile::GetPos(float Time) FILE: src/game/server/entities/projectile.h function class (line 6) | class CProjectile : public CEntity FILE: src/game/server/entity.h function class (line 16) | class CEntity FILE: src/game/server/eventhandler.h function class (line 7) | class CEventHandler FILE: src/game/server/gamecontext.cpp class CCharacter (line 87) | class CCharacter function IGameServer (line 1450) | IGameServer *CreateGameServer() { return new CGameContext; } FILE: src/game/server/gamecontext.h function class (line 36) | class CGameContext : public IGameServer function CmaskAll (line 187) | inline int CmaskAll() { return -1; } function CmaskOne (line 188) | inline int CmaskOne(int ClientID) { return 1<Server(); } function CCharacter (line 246) | CCharacter *CPlayer::GetCharacter() FILE: src/game/server/player.h function class (line 17) | class CPlayer FILE: src/game/voting.h type CVoteOptionClient (line 18) | struct CVoteOptionClient type CVoteOptionServer (line 25) | struct CVoteOptionServer FILE: src/mastersrv/mastersrv.cpp type CCheckServer (line 25) | struct CCheckServer type ServerType (line 27) | enum ServerType type CServerEntry (line 37) | struct CServerEntry type ServerType (line 39) | enum ServerType type CPacketData (line 47) | struct CPacketData type CPacketDataLegacy (line 60) | struct CPacketDataLegacy type CCountPacketData (line 73) | struct CCountPacketData function BuildPackets (line 91) | void BuildPackets() function SendOk (line 171) | void SendOk(NETADDR *pAddr) function SendError (line 185) | void SendError(NETADDR *pAddr) function SendCheck (line 196) | void SendCheck(NETADDR *pAddr) function AddCheckserver (line 207) | void AddCheckserver(NETADDR *pInfo, NETADDR *pAlt, ServerType Type) function AddServer (line 229) | void AddServer(NETADDR *pInfo, ServerType Type) function UpdateServers (line 260) | void UpdateServers() function PurgeServers (line 295) | void PurgeServers() function ReloadBans (line 315) | void ReloadBans() function main (line 321) | int main(int argc, const char **argv) // ignore_convention FILE: src/mastersrv/mastersrv.h type ServerType (line 7) | enum ServerType type CMastersrvAddr (line 14) | struct CMastersrvAddr type CMastersrvAddrLegacy (line 39) | struct CMastersrvAddrLegacy FILE: src/tools/crapnet.cpp type CPacket (line 7) | struct CPacket type CPingConfig (line 23) | struct CPingConfig function Run (line 45) | void Run(unsigned short Port, NETADDR Dest) function main (line 209) | int main(int argc, char **argv) // ignore_convention FILE: src/tools/dilate.cpp function Dilate (line 12) | static void Dilate(int w, int h, CPixel *pSrc, CPixel *pDest) function CopyAlpha (line 43) | static void CopyAlpha(int w, int h, CPixel *pSrc, CPixel *pDest) function DilateFile (line 51) | int DilateFile(const char *pFileName) function main (line 91) | int main(int argc, const char **argv) FILE: src/tools/fake_server.cpp function SendHeartBeats (line 30) | static void SendHeartBeats() function WriteStr (line 53) | static void WriteStr(const char *pStr) function WriteInt (line 60) | static void WriteInt(int i) function BuildInfoMsg (line 67) | static void BuildInfoMsg() function SendServerInfo (line 89) | static void SendServerInfo(NETADDR *pAddr) function SendFWCheckResponse (line 100) | static void SendFWCheckResponse(NETADDR *pAddr) function Run (line 111) | static int Run() function main (line 151) | int main(int argc, char **argv) FILE: src/tools/map_resave.cpp function main (line 7) | int main(int argc, const char **argv) FILE: src/tools/map_version.cpp function MaplistCallback (line 15) | int MaplistCallback(const char *pName, int IsDir, int DirType, void *pUser) function main (line 44) | int main(int argc, const char **argv) // ignore_convention FILE: src/tools/packetgen.cpp function Run (line 7) | void Run(NETADDR Dest) function main (line 31) | int main(int argc, char **argv) FILE: src/tools/tileset_borderop.cpp function TilesetBorderAdd (line 22) | void TilesetBorderAdd(int w, int h, CPixel *pSrc, CPixel *pDest) function CPixel (line 52) | CPixel Sample(int x, int y, int w, int h, CPixel *pData, int Pitch, floa... function TilesetBorderFix (line 59) | void TilesetBorderFix(int w, int h, CPixel *pSrc, CPixel *pDest) function TilesetBorderRem (line 95) | void TilesetBorderRem(int w, int h, CPixel *pSrc, CPixel *pDest) function TilesetBorderSet (line 125) | void TilesetBorderSet(int w, int h, CPixel *pSrc, CPixel *pDest) function ProcessFile (line 147) | void ProcessFile(const char *pFileName, int WidthMod, int HeightMod, int... function main (line 183) | int main(int argc, const char **argv) FILE: src/versionsrv/versionsrv.cpp type CPacketData (line 18) | struct CPacketData function BuildPackets (line 32) | void BuildPackets() function SendVer (line 60) | void SendVer(NETADDR *pAddr) function main (line 77) | int main(int argc, char **argv) // ignore_convention FILE: src/versionsrv/versionsrv.h type CMapVersion (line 7) | struct CMapVersion