Home | History | Annotate | Download | only in src

Lines Matching defs:hdf

17 import org.clearsilver.HDF;
104 HDF hdf = writeIndex(dir);
105 hdf.setValue("subdir", subdir);
108 hdf.setValue("subdirs." + i + ".name", d);
113 hdf.setValue("files." + i + ".name", f);
114 hdf.setValue("files." + i + ".href", convertExtension(f, ".html"));
118 ClearPage.write(hdf, "sampleindex.cs", relative + "/index" + DroidDoc.htmlExtension);
122 HDF hdf = writeIndex(dir);
124 ClearPage.write(hdf, "sampleindex.cs", relative + "index" +
128 public HDF writeIndex(File dir) {
129 HDF hdf = DroidDoc.makeHDF();
131 hdf.setValue("page.title", dir.getName() + " - " + mTitle);
132 hdf.setValue("projectTitle", mTitle);
141 hdf.setValue("summary", summary);
143 return hdf;
154 HDF hdf = DroidDoc.makeHDF();
156 hdf.setValue("page.title", name);
157 hdf.setValue("subdir", subdir);
158 hdf.setValue("realFile", name);
159 hdf.setValue("fileContents", data);
161 ClearPage.write(hdf, "sample.cs", out);
169 HDF hdf = DroidDoc.makeHDF();
171 hdf.setValue("page.title", name);
172 hdf.setValue("subdir", subdir);
173 hdf.setValue("realFile", name);
174 hdf.setValue("fileContents", data);
176 ClearPage.write(hdf, "sample.cs", out);