Searched defs:HDF (Results 1 - 4 of 4) sorted by relevance

/external/clearsilver/util/
H A Dneo_hdf.h23 typedef struct _hdf HDF; typedef in typeref:struct:_hdf
28 * zip file, etc. The HDF is provided so you can choose to use the
32 * your top level HDF node.
37 typedef NEOERR* (*HDFFILELOAD)(void *ctx, HDF *hdf, const char *filename,
76 * Function: hdf_init - Initialize an HDF data set
77 * Description: hdf_init initializes an HDF data set and returns the
79 * Input: hdf - pointer to an HDF pointer
83 NEOERR* hdf_init (HDF **hdf);
86 * Function: hdf_destroy - deallocate an HDF data set
88 * with an hdf data set. Although you can pass an HDF nod
[all...]
/external/clearsilver/csharp/
H A DCS.cs8 public unsafe struct HDF {}; struct in namespace:Clearsilver
14 private static extern unsafe NEOERR* hdf_init(HDF **foo);
16 // NEOERR* hdf_set_value (HDF *hdf, char *name, char *value)
18 private static unsafe extern NEOERR* hdf_set_value(HDF *hdf,
24 // char* hdf_get_value (HDF *hdf, char *name, char *defval)
28 private static unsafe extern string hdf_get_value(HDF *hdf,
34 // NEOERR* hdf_dump (HDF *hdf, char *prefix);
38 HDF *hdf,
42 // HDF* hdf_get_obj (HDF *hd
[all...]
/external/clearsilver/java-jni/
H A Dclearsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/HDF.class HDF. ...
H A DHDF.java10 /** This class is a wrapper around the HDF C API. Many features of the C API
13 public class HDF { class
14 long hdfptr; // stores the C HDF* pointer
15 HDF root; // If this is a child HDF node, points at the root node of
23 /** Constructs an empty HDF dataset */
24 public HDF() { method in class:HDF
29 /** Constructs an HDF child node. Used by other methods in this class when
32 private HDF(long hdfptr, HDF paren method in class:HDF
[all...]

Completed in 171 milliseconds