Searched defs:locations (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/javax/tools/
H A DStandardLocation.java33 * Standard locations of file objects.
82 if (locations.isEmpty()) {
85 locations.putIfAbsent(location.getName(), location);
87 locations.putIfAbsent(name.toString(/* null-check */), new Location() {
91 return locations.get(name);
94 private static ConcurrentMap<String,Location> locations field in class:StandardLocation
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DSimpleTaglet.java79 * appear in all locations.
94 * The possible locations that this tag can appear in.
96 protected String locations; field in class:SimpleTaglet
102 * @param locations the possible locations that this tag
107 public SimpleTaglet(String tagName, String header, String locations) { argument
110 locations = locations.toLowerCase();
111 if (locations.indexOf(ALL) != -1 && locations
[all...]
H A DTagletManager.java311 * @param locations the possible locations that this tag
314 public void addNewSimpleCustomTag(String tagName, String header, String locations) { argument
315 if (tagName == null || locations == null) {
319 locations = locations.toLowerCase();
322 customTags.put(tagName, new SimpleTaglet(tagName, header, locations));
323 if (locations != null && locations.indexOf('x') == -1) {
450 String[] locations
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java89 if (that.filesCreated.contains(new File(that.locations.get(CLASS_TREE),
102 if (that.filesCreated.contains(new File(that.locations.get(SOURCE_TREE),
131 private final EnumMap<Location, File> locations; // where new files go field in class:FilerImpl
193 locations = new EnumMap<Location, File>(Location.class);
196 locations.put(SOURCE_TREE, new File(s != null ? s : "."));
197 locations.put(CLASS_TREE, new File(d != null ? d : "."));
206 File file = new File(locations.get(SOURCE_TREE),
217 File file = new File(locations.get(CLASS_TREE),
274 File file = new File(locations.get(loc), pathname);
299 File file = new File(locations
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependencies.java535 private Map<String,Location> locations = new HashMap<String,Location>(); field in class:Dependencies.BasicDependencyFinder
538 Location l = locations.get(className);
540 locations.put(className, l = new SimpleLocation(className));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java529 * @param source[] the locations of the entity which forms
661 // add external schema locations to the location pairs
663 Map locations,
673 if (!tokenizeSchemaLocationStr(sl, locations)) {
694 LocationArray la = ((LocationArray)locations.get(XMLSymbols.EMPTY_STRING));
697 locations.put(XMLSymbols.EMPTY_STRING, la);
711 // otherwise, true is returned. In either case, locations
714 // @param locations HashMap mapping namespaces to LocationArray objects holding lists of locaitons
716 public static boolean tokenizeSchemaLocationStr(String schemaStr, Map locations) { argument
726 LocationArray la = ((LocationArray)locations
662 processExternalHints(String sl, String nsl, Map locations, XMLErrorReporter er) argument
929 String [] locations = new String[2]; field in class:XMLSchemaLoader.LocationArray
[all...]
H A DXMLSchemaValidator.java1402 // store the external schema locations. they are set when reset is called,
2472 private void setLocationHints(XSDDescription desc, String[] locations, SchemaGrammar grammar) { argument
2473 int length = locations.length;
2476 System.arraycopy(locations, 0, fXSDDescription.fLocationHints, 0, length);
2479 setLocationHints(desc, locations, grammar.getDocumentLocations());
2483 private void setLocationHints(XSDDescription desc, String[] locations, StringList docLocations) { argument
2484 int length = locations.length;
2490 String id = XMLEntityManager.expandSystemId(locations[i], desc.getBaseSystemId(), false);
2492 hints[counter++] = locations[i];

Completed in 79 milliseconds