/external/jsilver/src/org/clearsilver/ |
D | DelegatedHdf.java | 34 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 …]
|
D | DelegatedCs.java | 51 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()
|
D | CSUtil.java | 39 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()
|
D | ClearsilverFactory.java | 31 public CS newCs(HDF hdf); in newCs() argument 40 public CS newCs(HDF hdf, HDF globalHdf); in newCs() argument
|
D | CSFileLoader.java | 34 public String load(HDF hdf, String filename) throws IOException; in load() argument
|
D | HDF.java | 136 boolean belongsToSameRoot(HDF hdf); in belongsToSameRoot() argument
|
/external/doclava/src/com/google/doclava/ |
D | SampleCode.java | 107 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 …]
|
D | DocFile.java | 55 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 …]
|
D | Hierarchy.java | 26 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/ |
D | JniClearsilverFactory.java | 62 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()
|
D | JniHdf.java | 43 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/ |
D | JSilverFactory.java | 80 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()
|
D | ResourceLoaderAdaptor.java | 39 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()
|
D | JHdf.java | 56 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()
|
D | JCs.java | 46 JCs(JHdf hdf, JSilver jSilver, LoadPathToFileCache loadPathCache) { in JCs() argument 47 this.localHdf = hdf; in JCs()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/ |
D | ClearsilverRenderer.java | 63 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/ |
D | device_table.txt | 44 #/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/ |
D | webkit | 34 application/x-hdf
|
/external/webkit/Source/WebCore/platform/network/mac/ |
D | WebCoreURLResponse.mm | 237 CFSTR("hdf"), 356 CFSTR("application/x-hdf"),
|
/external/webkit/LayoutTests/http/conf/ |
D | mime.types | 358 application/x-hdf hdf
|
/external/webkit/PerformanceTests/Parser/resources/ |
D | final-url-en | 7283 http://hdf.ncsa.uiuc.edu/HDF5/doc/Groups.html
|