Home
last modified time | relevance | path

Searched refs:pathInfo (Results 1 – 3 of 3) sorted by relevance

/external/guice/extensions/servlet/src/com/google/inject/servlet/
DServletDefinition.java205 private String pathInfo; in doService()
213 pathInfo = requestUri.substring(getContextPath().length()).replaceAll("[/]{2,}", "/"); in doService()
215 if (pathInfo.startsWith(servletPath)) { in doService()
216 pathInfo = pathInfo.substring(servletPathLength); in doService()
219 if (pathInfo.isEmpty() && servletPathLength > 0) { in doService()
220 pathInfo = null; in doService()
223 pathInfo = new URI(pathInfo).getPath(); in doService()
229 pathInfo = null; // we know nothing additional about the URI. in doService()
234 return pathInfo; in doService()
/external/skia/src/gpu/ops/
DGrMSAAPathRenderer.cpp390 const PathInfo& pathInfo = fPaths[i]; in onPrepareDraws() local
393 pathInfo.fPath, in onPrepareDraws()
395 pathInfo.fColor, in onPrepareDraws()
/external/skia/debugger/QT/
DSkDebuggerGUI.cpp314 QFileInfo pathInfo(filename); in openFile() local
316 setupDirectoryWidget(pathInfo.path()); in openFile()