HomeSort by relevance Sort by last modified time
    Searched full:loadpaths (Results 1 - 6 of 6) sorted by null

  /external/jsilver/src/org/clearsilver/
CSUtil.java 30 public static final String HDF_LOADPATHS = "hdf.loadpaths";
33 * Helper function that returns a concatenation of the loadpaths in the
36 * @return A list of loadpaths in order in which to search.
37 * @throws NullPointerException if no loadpaths are found.
44 * Helper function that returns a concatenation of the loadpaths in the
48 * no loadpaths are found in the HDF object, otherwise a
49 * {@link NullPointerException} is thrown. Loadpaths are not needed if
51 * @return A list of loadpaths in order in which to search.
52 * @throws NullPointerException if no loadpaths are found and allowEmpty is
62 throw new NullPointerException("No HDF loadpaths located in the
    [all...]
CS.java 41 * be located using the HDF's loadpaths.
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
LoadPathToFileCache.java 26 * This class implements a cache of a list of loadpaths and a file name to the absolute file name
42 * Lookup in the cache to see if we have a mapping from the given loadpaths and filename to an
45 * @param loadPaths the ordered list of directories to search for the file.
49 public String lookup(List<String> loadPaths, String filename) {
50 String filePathMapKey = makeCacheKey(loadPaths, filename);
62 * @param loadPaths the ordered list of directories to search for the file.
66 public void add(List<String> loadPaths, String filename, String filePath) {
67 String filePathMapKey = makeCacheKey(loadPaths, filename);
76 public static String makeCacheKey(List<String> loadPaths, String filename) {
77 if (loadPaths == null)
    [all...]
ResourceLoaderAdaptor.java 42 private List<String> loadPaths;
74 if (loadPaths == null || loadPaths.isEmpty()) {
76 } else if (loadPaths.size() == 1) {
78 text.append(loadPaths.get(0));
132 * @param loadPaths the ordered list of paths to search.
136 File locateFile(List<String> loadPaths, String filename) {
140 if (loadPaths == null) {
141 throw new NullPointerException("No loadpaths provided.");
143 for (String path : loadPaths) {
    [all...]
  /external/doclava/src/com/google/doclava/
ClearPage.java 120 data.setValue("hdf.loadpaths." + i, dir);
126 data.setValue("hdf.loadpaths." + i, dir);
130 data.setValue("hdf.loadpaths." + i, "templates");
  /external/jsilver/src/org/clearsilver/jni/
JniCs.java 80 * be located using the HDF's loadpaths.

Completed in 1331 milliseconds