Searched defs:am (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DFastCharsetProvider.java57 Map<String,String> am,
62 aliasMap = am;
56 FastCharsetProvider(String pp, Map<String,String> am, Map<String,String> cm, Map<String,Charset> c) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DBridge.java93 public final void marshal(T object,XMLStreamWriter output, AttachmentMarshaller am) throws JAXBException { argument
95 m.setAttachmentMarshaller(am);
127 public void marshal(T object,OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) throws JAXBException { argument
129 m.setAttachmentMarshaller(am);
164 public final void marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) throws JAXBException { argument
166 m.setAttachmentMarshaller(am);
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java47 for (AnnotationMirror am: c.getAnnotationMirrors()) {
48 Element ate = am.getAnnotationType().asElement();
50 checkInterfaces((TypeElement) c, getValue(am));
52 checkSupertype((TypeElement) c, getValue(am));
65 private String getValue(AnnotationMirror am) { argument
66 Map<? extends ExecutableElement, ? extends AnnotationValue> map = am.getElementValues();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DMarshaller.java716 void setAttachmentMarshaller(AttachmentMarshaller am); argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java480 public void setAttachmentMarshaller(AttachmentMarshaller am) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DMarshallerImpl.java573 public void setAttachmentMarshaller(AttachmentMarshaller am) { argument
574 serializer.attachmentMarshaller = am;
/openjdk7/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp80 void set_union(const ArgumentMap &am) { _bits |= am._bits; } argument
81 void set_intersect(const ArgumentMap &am) { _bits |= am._bits; } argument
82 void set_difference(const ArgumentMap &am) { _bits &= ~am._bits; } argument
83 void operator=(const ArgumentMap &am) { _bits = am._bits; } argument
84 bool operator==(const ArgumentMap &am) { return _bits == am argument
85 operator !=(const ArgumentMap &amp;am) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java2230 ActionMap am = getActionMap(false);
2236 if (am != null && actionID != null) {
2237 am.remove(actionID);
2303 ActionMap am = getActionMap(false);
2305 if (am == null) {
2314 Action action = am.get(actionBinding);
2343 ActionMap am = getActionMap(false);
2345 if (am != null) {
2346 am.clear();
2427 * Sets the <code>ActionMap</code> to <code>am</cod
2434 setActionMap(ActionMap am) argument
[all...]

Completed in 48 milliseconds