Home
last modified time | relevance | path

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

/external/guice/extensions/servlet/src/com/google/inject/servlet/
DServletDefinition.java207 private String pathInfo; in doService()
215 pathInfo = requestUri.substring(getContextPath().length()).replaceAll("[/]{2,}", "/"); in doService()
217 if (pathInfo.startsWith(servletPath)) { in doService()
218 pathInfo = pathInfo.substring(servletPathLength); in doService()
221 if (pathInfo.isEmpty() && servletPathLength > 0) { in doService()
222 pathInfo = null; in doService()
225 pathInfo = new URI(pathInfo).getPath(); in doService()
231 pathInfo = null; // we know nothing additional about the URI. in doService()
236 return pathInfo; in doService()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateXMB.java274 final PathInfo pathInfo = englishInfo.getPathInfo(trunkPath); in compareFiles() local
276 if (pathInfo == null) { in compareFiles()
283 description = pathInfo.getDescription(); in compareFiles()
458 for (PathInfo pathInfo : englishInfo) { in writeFile()
459 if (false && pathInfo.id == 46139888945574604L) { // for debugging in writeFile()
462 String path = pathInfo.getPath(); in writeFile()
465 value = pathInfo.englishValue; in writeFile()
493 String starred = pathInfo.getStarredPath(); in writeFile()
536 countItems.put(countLessPath, Row.of(pathInfo, value)); in writeFile()
539 if (!isEnglish && pathInfo.changedEnglish) { in writeFile()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DVettingViewer.java1300 for (WritingInfo pathInfo : rows) { in writeTables()
1301 String header = pathInfo.codeOutput.getHeader(); in writeTables()
1302 Set<Choice> choicesForPath = pathInfo.problems; in writeTables()
1330 for (WritingInfo pathInfo : rows) { in writeTables()
1331 String header = pathInfo.codeOutput.getHeader(); in writeTables()
1332 String code = pathInfo.codeOutput.getCode(); in writeTables()
1333 String path = pathInfo.codeOutput.getOriginalPath(); in writeTables()
1334 Set<Choice> choicesForPath = pathInfo.problems; in writeTables()
1386 .append(pathInfo.getUrl(locale)) // .append(c)baseUrl + "?_=") in writeTables()
1399 if (!pathInfo.htmlMessage.isEmpty()) { in writeTables()
[all …]
/external/skqp/src/gpu/ccpr/
DGrCCStroker.cpp386 void updateCurrentInfo(const PathInfo& pathInfo) { in updateCurrentInfo() argument
388 fCurrDX = static_cast<float>(pathInfo.fDevToAtlasOffset.x()); in updateCurrentInfo()
389 fCurrDY = static_cast<float>(pathInfo.fDevToAtlasOffset.y()); in updateCurrentInfo()
390 fCurrStrokeRadius = pathInfo.fStrokeRadius; in updateCurrentInfo()
391 fCurrNextInstances = &fNextInstances[(int)pathInfo.fScissorTest]; in updateCurrentInfo()
392 SkDEBUGCODE(fCurrEndInstances = &fEndInstances[(int)pathInfo.fScissorTest]); in updateCurrentInfo()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DVirtualMachineImpl.java91 private JDWP.VirtualMachine.ClassPaths pathInfo; field in VirtualMachineImpl
1371 if (pathInfo == null) { in getClasspath()
1373 pathInfo = JDWP.VirtualMachine.ClassPaths.process(vm); in getClasspath()
1378 return pathInfo; in getClasspath()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBasic.java520 for (Entry<String, Counter<Level>> pathInfo : abstactPaths.entrySet()) { in TestAbstractPaths()
521 String path = pathInfo.getKey(); in TestAbstractPaths()
522 Counter<Level> counter = pathInfo.getValue(); in TestAbstractPaths()