/external/jsilver/src/org/clearsilver/ |
DelegatedCs.java | 26 * This class, and its subclasses must take care to wrap or unwrap HDF and CS 34 // Give it an empty HDF. We aren't going to be using the super object anyways. 44 * new DelegatedHdf object that wraps the specified HDF object. 46 * @param hdf an HDF object that should be wrapped in a new DelegatedHdf 49 * given HDF object. 51 protected abstract DelegatedHdf newDelegatedHdf(HDF hdf); 53 public void setGlobalHDF(HDF global) { 60 public HDF getGlobalHDF() 61 HDF hdf = getCs().getGlobalHDF(); local [all...] |
DelegatedHdf.java | 25 * Utility class that delegates all methods of an HDF object. Made to 26 * facilitate the transition to HDF being an interface and thus not 29 * This class, and its subclasses must take care to wrap or unwrap HDF and CS 32 public abstract class DelegatedHdf implements HDF { 34 private final HDF hdf; field in class:DelegatedHdf 36 public DelegatedHdf(HDF hdf) { 37 if (hdf == null) { 38 throw new NullPointerException("Null HDF is not allowed in constructor of DelegatedHdf.") 133 HDF hdf = getHdf().getObj(hdfpath); local 138 HDF hdf = getHdf().getChild(hdfpath); local 143 HDF hdf = getHdf().getRootObj(); local 152 HDF hdf = getHdf().getOrCreateObj(hdfpath); local 165 HDF hdf = getHdf().objChild(); local 170 HDF hdf = getHdf().objNext(); local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/ |
ClearsilverRenderer.java | 28 import org.clearsilver.HDF; 63 public String load(HDF hdf, String filename) throws IOException { 68 HDF hdf = factory.newHdf(); local 70 // Copy the Data into the HDF. 71 hdf.readString(data.toString()); 73 CS cs = factory.newCs(hdf); 82 hdf.close();
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
ResourceLoaderAdaptor.java | 39 private final JHdf hdf; field in class:ResourceLoaderAdaptor 44 ResourceLoaderAdaptor(JHdf hdf, LoadPathToFileCache loadPathCache, CSFileLoader csFileLoader) { 45 this.hdf = hdf; 53 if (hdf.getData() == null) { 54 throw new IllegalStateException("HDF is already closed"); 56 return new StringReader(csFileLoader.load(hdf, name)); 211 if (hdf.getData() == null) { 212 throw new IllegalStateException("HDF is already closed"); 214 loadPaths = CSUtil.getLoadPaths(hdf, true) [all...] |
/external/doclava/src/com/google/doclava/ |
SampleCode.java | 88 Data hdf = Doclava.makeHDF(); local 91 Node rootNode = writeSampleIndexCs(hdf, f, 114 Data hdf = Doclava.makeHDF(); local 116 hdf.setValue("samples_toc_tree", Doclava.samplesNavTree.getValue("samples_toc_tree", "")); 118 hdf.setValue("samples", "true"); 119 hdf.setValue("projectDir", mProjectDir); 120 writeProjectDirectory(f, mDest, false, hdf, "Files."); 121 writeProjectStructure(name, hdf); 122 hdf.removeTree("parentdirs"); 123 hdf.setValue("parentdirs.0.Name", name) 386 Data hdf = Doclava.makeHDF(); local [all...] |
DocFile.java | 71 public static Data getPageMetadata (String docfile, Data hdf) { 73 if (hdf == null) { 74 hdf = Doclava.makeHDF(); 95 hdf.setValue(key, value); 109 return hdf; 112 public static void writePage(String docfile, String relative, String outfile, Data hdf) { 118 if (hdf == null) { 119 hdf = Doclava.makeHDF(); 140 hdf.setValue(key, value); 156 String fromTemplate = hdf.getValue("template.which", "") [all...] |
PageMetadata.java | 51 * metadata based on the page's declared hdf vars (meta.tags and others) 120 * @param hdf Data object in which to store the metadata values. 124 Data hdf, List<Node> tagList) { 126 boolean excludeNode = "true".equals(hdf.getValue("excludeFromSuggestions","")); 129 Boolean needsSummary = "".equals(hdf.getValue("page.metaDescription", "")); 130 Boolean needsImage = "".equals(hdf.getValue("page.image", "")); 133 inferMetadata(docfile, hdf, needsSummary, needsImage); 139 pageMeta.setLabel(getTitleNormalized(hdf, "page.title")); 140 pageMeta.setTitleFriendly(hdf.getValue("page.titleFriendly","")); 141 pageMeta.setSummary(hdf.getValue("page.metaDescription","")) [all...] |
Doclava.java | 166 } else if (a[0].equals("-hdf")) { 536 if (option.equals("-hdf")) { 934 Data hdf = Doclava.makeHDF(); local 938 // Get each line to add the key-value to hdf 950 hdf.setValue(key, value); 957 // Insert the goods into HDF data (title, link, tags, type) 958 String title = hdf.getValue("page.title", ""); 970 String tagsList = hdf.getValue("page.tags", ""); 989 !hdf.getBooleanValue("excludeFromSuggestions")) { [all...] |
/prebuilts/devtools/tools/lib/ |
jsilver-1.0.0.jar | |
monkeyrunner.jar | |
/prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/ |
jsilver-1.0.0.jar | |