Home
last modified time | relevance | path

Searched refs:includeResourcePath (Results 1 – 9 of 9) sorted by relevance

/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/app/event/implement/
DIncludeRelativePath.java50 String includeResourcePath, in includeEvent() argument
55 if (includeResourcePath.startsWith("/") || includeResourcePath.startsWith("\\") ) { in includeEvent()
56 return includeResourcePath; in includeEvent()
66 return includeResourcePath; in includeEvent()
70 return currentResourcePath.substring(0,lastslashpos) + "/" + includeResourcePath; in includeEvent()
DIncludeNotFound.java75 String includeResourcePath, in includeEvent() argument
83 boolean exists = (rs.getLoaderNameForResource(includeResourcePath) != null); in includeEvent()
86 context.put("missingResource", includeResourcePath); in includeEvent()
101 return includeResourcePath; in includeEvent()
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/
DIncludeEventHandlingTestCase.java210 …public String includeEvent(Context context, String includeResourcePath, String currentResourcePath… in includeEvent() argument
213 return includeResourcePath; in includeEvent()
220 if (includeResourcePath.startsWith("/") || includeResourcePath.startsWith("\\") ) { in includeEvent()
221 return includeResourcePath; in includeEvent()
231 return includeResourcePath; in includeEvent()
235 return currentResourcePath.substring(0,lastslashpos) + "/" + includeResourcePath; in includeEvent()
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/app/event/
DEventHandlerUtil.java148 InternalContextAdapter context, String includeResourcePath, in includeEvent() argument
153includeResourcePath = rsvc.getApplicationEventCartridge().includeEvent(context, includeResourcePat… in includeEvent()
158includeResourcePath = contextCartridge.includeEvent(context, includeResourcePath, currentResourceP… in includeEvent()
160 return includeResourcePath; in includeEvent()
DEventCartridge.java327 …public String includeEvent(Context context, String includeResourcePath, String currentResourcePath… in includeEvent() argument
331includeResourcePath = handler.includeEvent(context, includeResourcePath, currentResourcePath, dire… in includeEvent()
333 if (includeResourcePath == null) in includeEvent()
338 return includeResourcePath; in includeEvent()
DIncludeEventHandler.java51 …String includeEvent(Context context, String includeResourcePath, String currentResourcePath, Strin… in includeEvent() argument
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/eventhandler/
DHandler2.java66 String includeResourcePath, in includeEvent() argument
71 return "subdir/" + includeResourcePath; in includeEvent()
DHandler1.java66 String includeResourcePath, in includeEvent() argument
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/misc/
DExceptionGeneratingEventHandler.java40 …public String includeEvent(Context context, String includeResourcePath, String currentResourcePath, in includeEvent() argument