Home | History | Annotate | Download | only in doclava

Lines Matching refs:hdf

72   public static Data getPageMetadata (String docfile, Data hdf) {
74 if (hdf == null) {
75 hdf = Doclava.makeHDF();
96 hdf.setValue(key, value);
110 return hdf;
113 public static void writePage(String docfile, String relative, String outfile, Data hdf) {
119 if (hdf == null) {
120 hdf = Doclava.makeHDF();
141 hdf.setValue(key, value);
157 String fromTemplate = hdf.getValue("template.which", "");
158 String fromPage = hdf.getValue("page.onlyfortemplate", "");
169 TagInfo.makeHDF(hdf, "root.descr", tags);
171 hdf.setValue("commentText", commentText);
175 String fromWhichmodule = hdf.getValue("android.whichmodule", "");
178 hdf.setValue("online-pdk", "true");
181 ClearPage.write(hdf, "docpage.cs", outfile);
195 hdf.setValue("design", "true");
196 hdf.setValue("page.type", "design");
197 hdf.setValue("page.category", "design");
199 hdf.setValue("develop", "true");
200 hdf.setValue("page.type", "develop");
201 hdf.setValue("page.category", "develop");
203 hdf.setValue("guide", "true");
204 hdf.setValue("page.type", "develop");
206 hdf.setValue("page.category", "app manifest");
208 hdf.setValue("page.category", "guide");
211 hdf.setValue("training", "true");
212 hdf.setValue("page.type", "develop");
213 hdf.setValue("page.category", "training");
215 hdf.setValue("more", "true");
217 hdf.setValue("google", "true");
218 hdf.setValue("page.type", "develop");
219 hdf.setValue("page.category", "google");
221 hdf.setValue("samples", "true");
222 hdf.setValue("samplesDocPage", "true");
223 hdf.setValue("page.type", "develop");
224 hdf.setValue("page.category", "samples");
226 hdf.setValue("samples_toc_tree", Doclava.samplesNavTree.getValue("samples_toc_tree", ""));
229 hdf.setValue("topic", "true");
230 hdf.setValue("page.type", "develop");
232 hdf.setValue("page.category", "libraries");
233 hdf.setValue("page.type", "develop");
234 hdf.setValue("libraries", "true");
236 hdf.setValue("instantapps", "true");
237 hdf.setValue("page.type", "develop");
238 hdf.setValue("page.category", "instant apps");
240 hdf.setValue("perf", "true");
241 hdf.setValue("page.type", "develop");
242 hdf.setValue("page.category", "performance");
244 hdf.setValue("arc", "true");
245 hdf.setValue("page.type", "develop");
246 hdf.setValue("page.category", "arc");
249 hdf.setValue("distribute", "true");
250 hdf.setValue("page.type", "distribute");
251 hdf.setValue("page.category", "distribute");
253 hdf.setValue("page.category", "googleplay");
254 hdf.setValue("page.type", "distribute");
255 hdf.setValue("googleplay", "true");
257 hdf.setValue("page.category", "essentials");
258 hdf.setValue("essentials", "true");
260 hdf.setValue("page.category", "users");
261 hdf.setValue("users", "true");
263 hdf.setValue("page.category", "engage");
264 hdf.setValue("engage", "true");
266 hdf.setValue("page.category", "monetize");
267 hdf.setValue("monetize", "true");
269 hdf.setValue("page.category", "analyze");
270 hdf.setValue("analyze", "true");
272 hdf.setValue("page.category", "essentials");
273 hdf.setValue("essentials", "true");
275 hdf.setValue("page.category", "stories");
276 hdf.setValue("stories", "true");
279 hdf.setValue("about", "true");
280 hdf.setValue("page.type", "about");
281 hdf.setValue("page.category", "about");
283 hdf.setValue("versions", "true");
284 hdf.setValue("page.category", "versions");
287 hdf.setValue("wear", "true");
288 hdf.setValue("page.category", "wear");
290 hdf.setValue("tv", "true");
291 hdf.setValue("page.category", "tv");
293 hdf.setValue("auto", "true");
294 hdf.setValue("page.category", "auto");
297 hdf.setValue("wearpreview", "true");
298 hdf.setValue("page.type", "about");
299 hdf.setValue("page.category", "wear preview");
301 hdf.setValue("devices", "true");
302 hdf.setValue("page.type", "devices");
304 hdf.setValue("source", "true");
306 hdf.setValue("security", "true");
308 hdf.setValue("compatibility", "true");
310 hdf.setValue("wear", "true");
311 hdf.setValue("about", "true");
312 hdf.setValue("page.type", "about");
313 hdf.setValue("page.category", "wear");
315 hdf.setValue("work", "true");
316 hdf.setValue("page.type", "about");
317 hdf.setValue("page.category", "work");
319 hdf.setValue("page.type", "develop");
320 hdf.setValue("page.category", "preview");
321 hdf.setValue("preview", "true");
323 hdf.setValue("auto", "true");
324 hdf.setValue("about", "true");
325 hdf.setValue("page.type", "about");
326 hdf.setValue("page.category", "auto");
328 hdf.setValue("tv", "true");
329 hdf.setValue("about", "true");
330 hdf.setValue("page.type", "about");
331 hdf.setValue("page.category", "tv");
333 hdf.setValue("about", "true");
334 hdf.setValue("page.type", "about");
335 hdf.setValue("page.category", "about");
339 PageMetadata.setPageMetadata(docfile, relative, outfile, hdf, Doclava.sTaglist);
346 ClearPage.write(hdf, "docpage.cs", outfile);