Searched defs:primary (Results 1 - 13 of 13) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DIIOPPrimaryToContactInfo.java37 * It uses the IIOP primary host/port (with a SocketInfo.IIOP_CLEAR_TEXT type)
53 * @param primary - clear any state relating to primary.
55 public void reset(ContactInfo primary); argument
58 * @param primary - the key.
63 * primary.
65 public boolean hasNext(ContactInfo primary, argument
70 * @param primary - the key.
71 * @param previous - if null then map primary to failover. If failover is
72 * empty then map primary t
78 next(ContactInfo primary, ContactInfo previous, List contactInfos) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFilterExpr.java64 public FilterExpr(Expression primary, Vector predicates) { argument
65 _primary = primary;
67 primary.setParent(this);
158 // If not predicates left, translate primary expression
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPProfileTemplateImpl.java66 private IIOPAddress primary ; field in class:IIOPProfileTemplateImpl
76 primary.equals( other.primary ) ;
81 return super.hashCode() ^ giopVersion.hashCode() ^ primary.hashCode() ;
96 return primary ;
99 public IIOPProfileTemplateImpl( ORB orb, GIOPVersion version, IIOPAddress primary )
103 this.primary = primary ;
115 primary = new IIOPAddressImpl( istr ) ;
128 primary
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeType.java70 * Builds a <code>MimeType</code> with the given primary and sub
73 * @param primary the primary type of this <code>MimeType</code>
75 * @throws NullPointerException if either <code>primary</code> or
78 public MimeType(String primary, String sub) throws MimeTypeParseException { argument
79 this(primary, sub, new MimeTypeParameterList());
86 * @param primary the primary type of this <code>MimeType</code>
89 * @throws NullPointerException if either <code>primary</code>,
92 public MimeType(String primary, Strin argument
[all...]
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimeType.java67 * Constructor that builds a MimeType with the given primary and sub type
70 * @param primary the primary MIME type
72 * @exception MimeTypeParseException if the primary type or subtype
75 public MimeType(String primary, String sub) throws MimeTypeParseException { argument
76 // check to see if primary is valid
77 if (isValidToken(primary)) {
78 primaryType = primary.toLowerCase(Locale.ENGLISH);
108 // we have a primary and sub type but no parameter list
123 // have a primary typ
154 setPrimaryType(String primary) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DPrincipalName.java616 * @param primary the primary component of the name
621 protected PrincipalName(String primary, String instance, String realm, argument
630 nParts[0] = primary;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.java158 String primary = contentType.getPrimaryType();
161 if (primary.equalsIgnoreCase("multipart") && sub.equalsIgnoreCase("related")) {
171 } else if (isXMLType(primary, sub)) {
173 } else if (isFastInfosetType(primary, sub)) {
179 protected static boolean isXMLType(@NotNull String primary, @NotNull String sub) { argument
180 return (primary.equalsIgnoreCase("text") && sub.equalsIgnoreCase("xml"))
181 || (primary.equalsIgnoreCase("application") && sub.equalsIgnoreCase("xml"))
182 || (primary.equalsIgnoreCase("application") && sub.toLowerCase().endsWith("+xml"));
192 protected static boolean isFastInfosetType(String primary, String sub) { argument
193 return primary
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java305 private Expression primary() throws ParserException, IOException { method in class:Parser
333 log(pdebug, "Parsed: primary -> " + e);
355 e = primary();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DParserTable.java585 public void reset(ContactInfo primary) argument
589 public boolean hasNext(ContactInfo primary, argument
596 public ContactInfo next(ContactInfo primary, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java147 * @param primary
152 private static boolean isSoap1_1Type(String primary, String sub) { argument
153 return primary.equalsIgnoreCase("text") && sub.equalsIgnoreCase("xml")
154 || primary.equalsIgnoreCase("text") && sub.equalsIgnoreCase("xml-soap")
155 || primary.equals("application")
169 * @param primary
174 private static boolean isSoap1_2Type(String primary, String sub) { argument
175 return primary.equals("application")
281 String primary = contentType.getPrimaryType();
284 if (primary
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp2962 // New: allow "primary", "secondary", "tertiary" as parameters.
3200 char *primary = NULL; local
3216 // Parse primary, secondary, and tertiary opcodes, if provided.
3217 if ( ((primary = get_ident_or_literal_constant("primary opcode")) == NULL) ) {
3218 parse_err(SYNERR, "primary hex opcode expected at %c\n", _curchar);
3260 if (primary != NULL) fprintf(stderr,"primary opcode: %s\n", primary);
3266 opcode = new Opcode(primary, secondar
[all...]
H A Dformssel.cpp1623 // "primary, secondary, tertiary"
1665 Opcode::Opcode(char *primary, char *secondary, char *tertiary) argument
1666 : _primary(primary), _secondary(secondary), _tertiary(tertiary) {
1673 if( strcmp(param,"primary") == 0 ) {
1686 // Default values previously provided by MachNode::primary()...
1694 description = "primary()";
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c358 /* Like XKeysymToKeycode, but ensures that keysym is the primary
365 KeySym primary; local
372 primary = XKeycodeToKeysym(dpy, code, 0);
373 if (sym == primary) {
393 * Only consider primary symbols on keycodes attached to modifiers.

Completed in 163 milliseconds