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

/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DJHdf.java160 public HDF getObj(String hdfpath) { argument
161 Data d = data.getChild(hdfpath);
166 public HDF getChild(String hdfpath) { argument
167 Data d = data.getChild(hdfpath);
200 public HDF getOrCreateObj(String hdfpath) { argument
201 return new JHdf(data.createChild(hdfpath), dataFactory, loadPathCache, options);
231 public void copy(String hdfpath, HDF src) { argument
233 if (hdfpath.equals("")) {
236 data.copy(hdfpath, srcJHdf.data);
/external/jsilver/src/org/clearsilver/
H A DDelegatedHdf.java132 public DelegatedHdf getObj(String hdfpath) { argument
133 HDF hdf = getHdf().getObj(hdfpath);
137 public DelegatedHdf getChild(String hdfpath) { argument
138 HDF hdf = getHdf().getChild(hdfpath);
151 public DelegatedHdf getOrCreateObj(String hdfpath) { argument
152 HDF hdf = getHdf().getOrCreateObj(hdfpath);
174 public void copy(String hdfpath, HDF src) { argument
178 getHdf().copy(hdfpath, src);
H A DHDF.java107 * Retrieves the HDF object that is the root of the subtree at hdfpath, or
110 HDF getObj(String hdfpath); argument
114 * at hdfpath, or null if no child exists of that path or if the
117 HDF getChild(String hdfpath); argument
140 * hdfpath, create the subtree if it doesn't exist
142 HDF getOrCreateObj(String hdfpath); argument
178 * @param hdfpath the node within this HDF where the source structure should
182 void copy(String hdfpath, HDF src); argument
/external/jsilver/src/org/clearsilver/jni/
H A DJniHdf.java279 /** Retrieves the HDF object that is the root of the subtree at hdfpath, or
281 public JniHdf getObj(String hdfpath) { argument
285 long obj_ptr = _getObj(hdfptr, hdfpath);
293 * at hdfpath, or null if no child exists of that path or if the
295 public JniHdf getChild(String hdfpath) { argument
299 long obj_ptr = _getChild(hdfptr, hdfpath);
318 * hdfpath, create the subtree if it doesn't exist */
319 public JniHdf getOrCreateObj(String hdfpath) { argument
323 long obj_ptr = _getObj(hdfptr, hdfpath);
326 _setValue(hdfptr, hdfpath, "");
383 copy(String hdfpath, HDF src) argument
418 _getObj(long ptr, String hdfpath) argument
419 _getChild(long ptr, String hdfpath) argument
424 _copy(long destptr, String hdfpath, long srcptr) argument
[all...]

Completed in 177 milliseconds