/external/doclava/src/com/google/doclava/ |
DocFile.java | 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", "") [all...] |
Hierarchy.java | 26 public static void makeHierarchy(Data hdf, ClassInfo[] classes) { 59 hdf.setValue("classes.0", ""); 60 hdf.setValue("colspan", "" + depth); 62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth); 94 private static void recurse(HashMap<String, TreeSet<String>> nodes, String name, Data hdf, 98 hdf.setValue("indent", "" + (totalDepth - remainingDepth - 1)); 99 hdf.setValue("colspan", "" + remainingDepth); 103 hdf.setValue("class.label", cl.name()); 104 hdf.setValue("class.qualified", cl.qualifiedName()); 106 hdf.setValue("class.link", cl.htmlPage()) [all...] |
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) 393 Data hdf = Doclava.makeHDF(); local [all...] |
PageMetadata.java | 51 * metadata based on the page's declared hdf vars (meta.tags and others) 190 * @param hdf Data object in which to store the metadata values. 194 Data hdf, List<Node> tagList) { 196 boolean excludeNode = "true".equals(hdf.getValue("excludeFromSuggestions","")); 199 Boolean needsSummary = "".equals(hdf.getValue("page.metaDescription", "")); 200 Boolean needsImage = "".equals(hdf.getValue("page.image", "")); 203 inferMetadata(docfile, hdf, needsSummary, needsImage); 209 pageMeta.setLabel(getTitleNormalized(hdf, "page.title")); 210 pageMeta.setCategory(hdf.getValue("page.category","")); 211 pageMeta.setSummary(hdf.getValue("page.metaDescription","")) [all...] |
/external/jsilver/src/org/clearsilver/ |
ClearsilverFactory.java | 20 * A factory for constructing new CS and HDF objects. Allows applications to 21 * provide subclasses of HDF or CS to be used by the Java Clearsilver 28 * @param hdf the HDF object to use in constructing the CS object. 31 public CS newCs(HDF hdf); 35 * @param hdf the HDF object to use in constructing the CS object. 36 * @param globalHdf the global HDF object to use in constructing the 40 public CS newCs(HDF hdf, HDF globalHdf) [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...] |
CSFileLoader.java | 29 * @param hdf the HDF structure associated with HDF or CS object making the 34 public String load(HDF hdf, String filename) throws IOException;
|
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...] |
CSUtil.java | 30 public static final String HDF_LOADPATHS = "hdf.loadpaths"; 34 * provided HDF. 35 * @param hdf an HDF structure containing load paths. 39 public static List<String> getLoadPaths(HDF hdf) { 40 return getLoadPaths(hdf, false); 45 * provided HDF. 46 * @param hdf an HDF structure containing load paths [all...] |
HDF.java | 25 * This interface establishes the API for an HDF data structure used by 28 public interface HDF extends Closeable { 36 * Loads the contents of the specified HDF file from disk into the current 37 * HDF object. The loaded contents are merged with the existing contents. 54 * Serializes HDF contents to a file (readable by readFile) 59 * Parses/loads the contents of the given string as HDF into the current 60 * HDF object. The loaded contents are merged with the existing contents. 65 * Serializes HDF contents to a string (readable by readString) 70 * Retrieves the integer value at the specified path in this HDF node's 77 * Retrieves the value at the specified path in this HDF node's subtree [all...] |
/external/jsilver/src/org/clearsilver/jni/ |
JniClearsilverFactory.java | 22 import org.clearsilver.HDF; 43 * {@link org.clearsilver.HDF} object to the {@link org.clearsilver.CS} 46 * Developers that want strict checking that the HDF passed to newCs matches 47 * HDF objects constructed by newHDF may want to pass in {@code false}. 49 * @param unwrapDelegatedHdfs true if {@link org.clearsilver.HDF}s passed to 59 * @param hdf the HDF object to use in constructing the CS object. 62 public CS newCs(HDF hdf) { 64 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf) [all...] |
JniHdf.java | 20 import org.clearsilver.HDF; 28 * This class is a wrapper around the HDF C API. Many features of the C API 31 public class JniHdf implements HDF { 33 long hdfptr; // stores the C HDF* pointer 34 JniHdf root; // If this is a child HDF node, points at the root node of 43 static JniHdf cast(HDF hdf) { 44 if (!(hdf instanceof JniHdf)) { 45 throw new IllegalArgumentException("HDF object not of type JniHdf. " 47 + "related HDF and CS objects.") [all...] |
/development/tools/bugreport/src/com/android/bugreport/html/ |
Renderer.java | 69 final Data hdf = jsilver.createData(); local 72 makeHdf(hdf, bugreport); 75 System.out.println(hdf); 81 jsilver.render("anr-template.html", hdf, writer); 96 * Build the hdf for a Bugreport. 98 private void makeHdf(Data hdf, Bugreport bugreport) { 100 makeTriageHdf(hdf, bugreport); 103 makeLogcatHdf(hdf.createChild("logcat"), bugreport); 107 makeAnrHdf(hdf, bugreport.monkeyAnr); 111 makeVmTracesHdf(hdf.createChild("vmTracesLastAnr"), bugreport.anr [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
JSilverFactory.java | 27 import org.clearsilver.HDF; 30 * ClearsilverFactory that adapts JSilver for use as any HDF/CS rendering engine. 80 public JCs newCs(HDF hdf) { 82 hdf = DelegatedHdf.getFullyUnwrappedHdf(hdf); 84 return new JCs(JHdf.cast(hdf), jSilver, loadPathCache); 88 public JCs newCs(HDF hdf, HDF globalHdf) [all...] |
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...] |
JHdf.java | 26 import org.clearsilver.HDF; 35 * Adaptor that wraps a JSilver Data object so it can be used as an HDF object. 37 public class JHdf implements HDF { 56 static JHdf cast(HDF hdf) { 57 if (!(hdf instanceof JHdf)) { 58 throw new IllegalArgumentException("HDF object not of type JHdf. " 60 + "related HDF and CS objects."); 62 return (JHdf) hdf; 114 throw new JSilverBadSyntaxException("HDF parsing error : '" + errorMessage + "'" [all...] |
JCs.java | 29 import org.clearsilver.HDF; 46 JCs(JHdf hdf, JSilver jSilver, LoadPathToFileCache loadPathCache) { 47 this.localHdf = hdf; 63 public void setGlobalHDF(HDF global) { 68 public HDF getGlobalHDF() { 128 // the new modification protection for global HDF. 138 // For Clearsilver compatibility we check this HDF variable to see if we
|
/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();
|
/tools/tradefederation/core/ |
Android.mk | 77 -hdf android.whichdoc online \ 78 -hdf sac true \ 79 -hdf devices true \ 94 -hdf sac true \ 95 -hdf devices true \ 96 -hdf android.whichdoc online \ 97 -hdf css.path /reference/assets/css/doclava-devsite.css \ 98 -hdf book.root toc \
|
/tools/tradefederation/contrib/ |
Android.mk | 57 -hdf android.whichdoc online \ 58 -hdf sac true \ 59 -hdf devices true \
|
/build/make/tools/droiddoc/test/stubs/ |
func.sh | 49 -hdf page.build MAIN-eng.joeo.20080710.121320 -hdf page.now "10 Jul 2008 12:13" \
|
/docs/source.android.com/ |
Android.mk | 16 -hdf android.whichdoc online \ 17 -hdf sac true
|
/build/make/core/ |
droiddoc.mk | 140 $(full_target): PRIVATE_CURRENT_BUILD := -hdf page.build $(BUILD_ID)-$(BUILD_NUMBER_FROM_FILE) 141 $(full_target): PRIVATE_CURRENT_TIME := -hdf page.now "$$($(DATE_FROM_FILE) "+%d %b %Y %k:%M")"
|
/frameworks/base/ |
Android.mk | [all...] |
/prebuilts/devtools/tools/lib/ |
monkeyrunner.jar | |