Searched refs:natives (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DFlavorMap.java32 * A two-way Map between "natives" (Strings), which correspond to platform-
53 * <code>String</code> natives will be returned.
55 * <code>String</code> natives
60 * Returns a <code>Map</code> of the specified <code>String</code> natives
66 * @param natives an array of <code>String</code>s which will be the
68 * specified, a mapping of all <code>String</code> natives currently
71 * @return a <code>java.util.Map</code> of <code>String</code> natives to
74 Map<String,DataFlavor> getFlavorsForNatives(String[] natives); argument
H A DSystemFlavorMap.java53 * The SystemFlavorMap is a configurable map between "natives" (Strings), which
165 * SoftReferences which reference Lists of String natives.
170 * Caches the result getFlavorsForNative(). Maps String natives to
177 * to the DataFlavors and String natives for which the mappings have been
403 // DataFlavor itself for any text natives (even
579 List natives = (List)getFlavorToNative().get(flavor);
580 if (natives == null) {
581 natives = new ArrayList(1);
582 getFlavorToNative().put(flavor, natives);
584 natives
1022 getFlavorsForNatives(String[] natives) argument
1109 setNativesForFlavor(DataFlavor flav, String[] natives) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDataTransferer.java353 // For text formats we map natives to MIME strings instead of data
397 List natives = new ArrayList(1);
400 return natives;
417 natives.add(mimeType);
434 natives.add(mimeTypes[i]);
452 natives.add(baseType + ";charset=" + encoding);
457 if (!natives.contains(baseType)) {
458 natives.add(baseType);
462 return natives;
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java121 * The concept of "flavors" and "natives" is extended to include "formats",
206 * A collection of all natives listed in flavormap.properties with
542 public Map getFlavorsForNatives(String[] natives) {
543 return map.getFlavorsForNatives(natives);
546 Map natives =
548 String nat = (String)natives.get(flav);
716 List natives = map.getNativesForFlavor(flavor);
718 currentIndex += natives.size();
720 for (Iterator iter = natives.iterator(); iter.hasNext(); ) {
729 // text/plain natives fo
[all...]
/openjdk7/hotspot/agent/make/
H A DMakefile305 .PHONY: natives
306 natives:
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp271 klassOop natives = SystemDictionary::MethodHandleNatives_klass(); local
272 if (natives == NULL || instanceKlass::cast(natives)->is_not_initialized()) {

Completed in 42 milliseconds