/external/doclava/src/com/google/doclava/ |
D | DocFile.java | 72 public static Data getPageMetadata (String docfile, Data hdf) { in getPageMetadata() argument 74 if (hdf == null) { in getPageMetadata() 75 hdf = Doclava.makeHDF(); in getPageMetadata() 96 hdf.setValue(key, value); in getPageMetadata() 110 return hdf; in getPageMetadata() 113 public static void writePage(String docfile, String relative, String outfile, Data hdf) { in writePage() argument 119 if (hdf == null) { in writePage() 120 hdf = Doclava.makeHDF(); in writePage() 141 hdf.setValue(key, value); in writePage() 157 String fromTemplate = hdf.getValue("template.which", ""); in writePage() [all …]
|
D | SampleCode.java | 88 Data hdf = Doclava.makeHDF(); in setSamplesTOC() local 91 Node rootNode = writeSampleIndexCs(hdf, f, in setSamplesTOC() 114 Data hdf = Doclava.makeHDF(); in writeSamplesFiles() local 116 hdf.setValue("samples_toc_tree", Doclava.samplesNavTree.getValue("samples_toc_tree", "")); in writeSamplesFiles() 118 hdf.setValue("samples", "true"); in writeSamplesFiles() 119 hdf.setValue("projectDir", mProjectDir); in writeSamplesFiles() 120 writeProjectDirectory(f, mDest, false, hdf, "Files."); in writeSamplesFiles() 121 writeProjectStructure(name, hdf); in writeSamplesFiles() 122 hdf.removeTree("parentdirs"); in writeSamplesFiles() 123 hdf.setValue("parentdirs.0.Name", name); in writeSamplesFiles() [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 …]
|
D | PageMetadata.java | 194 Data hdf, List<Node> tagList) { in setPageMetadata() argument 196 boolean excludeNode = "true".equals(hdf.getValue("excludeFromSuggestions","")); in setPageMetadata() 199 Boolean needsSummary = "".equals(hdf.getValue("page.metaDescription", "")); in setPageMetadata() 200 Boolean needsImage = "".equals(hdf.getValue("page.image", "")); in setPageMetadata() 203 inferMetadata(docfile, hdf, needsSummary, needsImage); in setPageMetadata() 209 pageMeta.setLabel(getTitleNormalized(hdf, "page.title")); in setPageMetadata() 210 pageMeta.setCategory(hdf.getValue("page.category","")); in setPageMetadata() 211 pageMeta.setSummary(hdf.getValue("page.metaDescription","")); in setPageMetadata() 213 pageMeta.setGroup(getStringValueNormalized(hdf,"sample.group")); in setPageMetadata() 214 pageMeta.setKeywords(getPageTagsNormalized(hdf, "page.tags")); in setPageMetadata() [all …]
|
D | CompatInfo.java | 237 public void makeHDF(Data hdf) { in makeHDF() argument 261 hdf.setValue(path + ".id", Long.toString(change.id)); in makeHDF() 262 hdf.setValue(path + ".name", change.name); in makeHDF() 264 hdf.setValue(path + ".enableSinceTargetSdk", in makeHDF() 268 hdf.setValue(path + ".loggingOnly", Boolean.toString(true)); in makeHDF() 271 hdf.setValue(path + ".disabled", Boolean.toString(true)); in makeHDF() 273 TagInfo.makeHDF(hdf, path + ".descr", comment.tags()); in makeHDF()
|
D | Doclava.java | 1272 Data hdf = Doclava.makeHDF(); in writeJdDirList() local 1288 hdf.setValue(key, value); in writeJdDirList() 1296 String title = hdf.getValue("page.title", ""); in writeJdDirList() 1308 String tagsList = hdf.getValue("page.tags", ""); in writeJdDirList() 1327 !hdf.getBooleanValue("excludeFromSuggestions")) { in writeJdDirList()
|
/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/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/llvm-project/clang/test/CodeGenCUDA/ |
D | static-device-var-no-rdc.cu | 98 __host__ __device__ void hdf(int *a) { in hdf() function
|
/external/ImageMagick/MagickCore/ |
D | config.h_vms | 94 /* Define if you have the <hdf.h> header file. */ 97 /* Define if you have the <hdf/hdf.h> header file. */
|
/external/ImageMagick/PerlMagick/ |
D | MANIFEST | 51 t/hdf/input_256.hdf 52 t/hdf/input_truecolor.hdf 53 t/hdf/read.t 54 t/hdf/write.t
|
/external/mime-support/ |
D | mime.types | 441 application/x-hdf hdf
|
/external/python/cpython3/Lib/test/ |
D | mime.types | 1375 application/x-hdf hdf
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 88003 hdf %14530
|