Home
last modified time | relevance | path

Searched refs:hdf (Results 1 – 21 of 21) sorted by relevance

/external/jsilver/src/org/clearsilver/
DDelegatedHdf.java34 private final HDF hdf; field in DelegatedHdf
36 public DelegatedHdf(HDF hdf) { in DelegatedHdf() argument
37 if (hdf == null) { in DelegatedHdf()
40 this.hdf = hdf; in DelegatedHdf()
49 public static HDF getFullyUnwrappedHdf(HDF hdf) { in getFullyUnwrappedHdf() argument
50 while (hdf instanceof DelegatedHdf) { in getFullyUnwrappedHdf()
51 hdf = ((DelegatedHdf)hdf).getHdf(); in getFullyUnwrappedHdf()
53 return hdf; in getFullyUnwrappedHdf()
57 return hdf; in getHdf()
69 protected abstract DelegatedHdf newDelegatedHdf(HDF hdf); in newDelegatedHdf() argument
[all …]
DDelegatedCs.java51 protected abstract DelegatedHdf newDelegatedHdf(HDF hdf); in newDelegatedHdf() argument
61 HDF hdf = getCs().getGlobalHDF(); in getGlobalHDF() local
62 return hdf != null ? newDelegatedHdf(hdf) : null; in getGlobalHDF()
DCSUtil.java39 public static List<String> getLoadPaths(HDF hdf) { in getLoadPaths() argument
40 return getLoadPaths(hdf, false); in getLoadPaths()
55 public static List<String> getLoadPaths(HDF hdf, boolean allowEmpty) { in getLoadPaths() argument
57 HDF loadpathsHdf = hdf.getObj(HDF_LOADPATHS); in getLoadPaths()
DClearsilverFactory.java31 public CS newCs(HDF hdf); in newCs() argument
40 public CS newCs(HDF hdf, HDF globalHdf); in newCs() argument
DCSFileLoader.java34 public String load(HDF hdf, String filename) throws IOException; in load() argument
DHDF.java136 boolean belongsToSameRoot(HDF hdf); in belongsToSameRoot() argument
/external/doclava/src/com/google/doclava/
DSampleCode.java107 Data hdf = writeIndex(dir); in writeDirectory() local
108 hdf.setValue("subdir", subdir); in writeDirectory()
111 hdf.setValue("subdirs." + i + ".name", d); in writeDirectory()
116 hdf.setValue("files." + i + ".name", f); in writeDirectory()
117 hdf.setValue("files." + i + ".href", convertExtension(f, ".html")); in writeDirectory()
122 ClearPage.write(hdf, "sampleindex.cs", relative + "index" + Doclava.htmlExtension); in writeDirectory()
126 Data hdf = Doclava.makeHDF(); in writeIndex() local
128 hdf.setValue("page.title", dir.getName() + " - " + mTitle); in writeIndex()
129 hdf.setValue("projectTitle", mTitle); in writeIndex()
139 hdf.setValue("summary", summary); in writeIndex()
[all …]
DDocFile.java55 Data hdf = Doclava.makeHDF(); in writePage() local
81 hdf.setValue(key, value); in writePage()
97 String fromTemplate = hdf.getValue("template.which", ""); in writePage()
98 String fromPage = hdf.getValue("page.onlyfortemplate", ""); in writePage()
109 TagInfo.makeHDF(hdf, "root.descr", tags); in writePage()
111 hdf.setValue("commentText", commentText); in writePage()
115 String fromWhichmodule = hdf.getValue("android.whichmodule", ""); in writePage()
118 hdf.setValue("online-pdk", "true"); in writePage()
121 ClearPage.write(hdf, "docpage.cs", outfile); in writePage()
129 hdf.setValue("design", "true"); in writePage()
[all …]
DHierarchy.java26 public static void makeHierarchy(Data hdf, ClassInfo[] classes) { in makeHierarchy() argument
59 hdf.setValue("classes.0", ""); in makeHierarchy()
60 hdf.setValue("colspan", "" + depth); in makeHierarchy()
62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth); in makeHierarchy()
94 private static void recurse(HashMap<String, TreeSet<String>> nodes, String name, Data hdf, in recurse() argument
98 hdf.setValue("indent", "" + (totalDepth - remainingDepth - 1)); in recurse()
99 hdf.setValue("colspan", "" + remainingDepth); in recurse()
103 hdf.setValue("class.label", cl.name()); in recurse()
104 hdf.setValue("class.qualified", cl.qualifiedName()); in recurse()
106 hdf.setValue("class.link", cl.htmlPage()); in recurse()
[all …]
/external/jsilver/src/org/clearsilver/jni/
DJniClearsilverFactory.java62 public CS newCs(HDF hdf) { in newCs() argument
64 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf); in newCs()
66 return new JniCs(JniHdf.cast(hdf)); in newCs()
77 public CS newCs(HDF hdf, HDF globalHdf) { in newCs() argument
79 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf); in newCs()
82 return new JniCs(JniHdf.cast(hdf), JniHdf.cast(globalHdf)); in newCs()
DJniHdf.java43 static JniHdf cast(HDF hdf) { in cast() argument
44 if (!(hdf instanceof JniHdf)) { in cast()
49 return (JniHdf)hdf; in cast()
312 public boolean belongsToSameRoot(HDF hdf) {
313 JniHdf jniHdf = cast(hdf);
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
DJSilverFactory.java80 public JCs newCs(HDF hdf) { in newCs() argument
82 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf); in newCs()
84 return new JCs(JHdf.cast(hdf), jSilver, loadPathCache); in newCs()
88 public JCs newCs(HDF hdf, HDF globalHdf) { in newCs() argument
90 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf); in newCs()
93 JCs cs = new JCs(JHdf.cast(hdf), jSilver, loadPathCache); in newCs()
DResourceLoaderAdaptor.java39 private final JHdf hdf; field in ResourceLoaderAdaptor
44 ResourceLoaderAdaptor(JHdf hdf, LoadPathToFileCache loadPathCache, CSFileLoader csFileLoader) { in ResourceLoaderAdaptor() argument
45 this.hdf = hdf; in ResourceLoaderAdaptor()
53 if (hdf.getData() == null) { in open()
56 return new StringReader(csFileLoader.load(hdf, name)); in open()
211 if (hdf.getData() == null) { in getLoadPaths()
214 loadPaths = CSUtil.getLoadPaths(hdf, true); in getLoadPaths()
DJHdf.java56 static JHdf cast(HDF hdf) { in cast() argument
57 if (!(hdf instanceof JHdf)) { in cast()
62 return (JHdf) hdf; in cast()
194 public boolean belongsToSameRoot(HDF hdf) { in belongsToSameRoot() argument
195 JHdf jHdf = cast(hdf); in belongsToSameRoot()
DJCs.java46 JCs(JHdf hdf, JSilver jSilver, LoadPathToFileCache loadPathCache) { in JCs() argument
47 this.localHdf = hdf; in JCs()
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
DClearsilverRenderer.java63 public String load(HDF hdf, String filename) throws IOException { in render()
68 HDF hdf = factory.newHdf(); in render() local
71 hdf.readString(data.toString()); in render()
73 CS cs = factory.newCs(hdf); in render()
82 hdf.close(); in render()
/external/genext2fs/
Ddevice_table.txt44 #/dev/hdf b 640 0 0 33 64 0 0 -
45 #/dev/hdf b 640 0 0 33 65 1 1 15
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/mime-types/
Dwebkit34 application/x-hdf
/external/webkit/Source/WebCore/platform/network/mac/
DWebCoreURLResponse.mm237 CFSTR("hdf"),
356 CFSTR("application/x-hdf"),
/external/webkit/LayoutTests/http/conf/
Dmime.types358 application/x-hdf hdf
/external/webkit/PerformanceTests/Parser/resources/
Dfinal-url-en7283 http://hdf.ncsa.uiuc.edu/HDF5/doc/Groups.html