Searched defs:loadPathCache (Results 1 - 4 of 4) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DJSilverFactory.java41 private final LoadPathToFileCache loadPathCache; field in class:JSilverFactory
71 this.loadPathCache = null;
73 this.loadPathCache = new LoadPathToFileCache(this.options.getLoadPathCacheSize());
84 return new JCs(JHdf.cast(hdf), jSilver, loadPathCache);
93 JCs cs = new JCs(JHdf.cast(hdf), jSilver, loadPathCache);
100 return new JHdf(new DefaultData(), dataFactory, loadPathCache, options);
H A DJCs.java41 private final LoadPathToFileCache loadPathCache; field in class:JCs
46 JCs(JHdf hdf, JSilver jSilver, LoadPathToFileCache loadPathCache) { argument
49 this.loadPathCache = loadPathCache;
168 resourceLoaderAdaptor = new ResourceLoaderAdaptor(localHdf, loadPathCache, csFileLoader);
H A DResourceLoaderAdaptor.java40 private final LoadPathToFileCache loadPathCache; field in class:ResourceLoaderAdaptor
44 ResourceLoaderAdaptor(JHdf hdf, LoadPathToFileCache loadPathCache, CSFileLoader csFileLoader) { argument
46 this.loadPathCache = loadPathCache;
107 // loadPathCache is null when load path caching is disabled at the
110 if (loadPathCache != null) {
111 String filePath = loadPathCache.lookup(getLoadPaths(), name);
119 if (file != null && loadPathCache != null) {
120 loadPathCache.add(getLoadPaths(), name, file.getAbsolutePath());
H A DJHdf.java44 private final LoadPathToFileCache loadPathCache; field in class:JHdf
48 JHdf(Data data, DataFactory dataFactory, LoadPathToFileCache loadPathCache, JSilverOptions options) { argument
50 this.loadPathCache = loadPathCache;
53 this.resourceLoader = new ResourceLoaderAdaptor(this, loadPathCache, null);
94 this.resourceLoader = new ResourceLoaderAdaptor(this, loadPathCache, fileLoader);
162 return d == null ? null : new JHdf(d, dataFactory, loadPathCache, options);
173 return new JHdf(child, dataFactory, loadPathCache, options);
189 return new JHdf(root, dataFactory, loadPathCache, options);
201 return new JHdf(data.createChild(hdfpath), dataFactory, loadPathCache, option
[all...]

Completed in 88 milliseconds