Searched defs:not (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/test/javax/management/MBeanServer/
H A DNotifDeadlockTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
91 public void handleNotification(Notification not, Object handback) { argument
114 e.printStackTrace(); // should not happen
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DGUIDemo.java18 * 2 along with this work; if not, write to the Free Software Foundation,
87 public void applicationWillFinishLaunching(ID not){ argument
92 public void applicationDidFinishLaunching(ID not){ argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java18 * 2 along with this work; if not, write to the Free Software Foundation,
53 JExpression not(); method in interface:JExpression
H A DJExpressionImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
43 * Logical not <tt>'!x'</tt>.
45 public final JExpression not() { method in class:JExpressionImpl
46 return JOp.not(this);
H A DJOp.java18 * 2 along with this work; if not, write to the Free Software Foundation,
80 * Logical not <tt>'!x'</tt>.
82 public static JExpression not(JExpression e) { method in class:JOp
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarationFilter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
61 * compoundFilter = classFilter.and(enumFilter.not());
203 * Returns a filter that selects those declarations not selected
206 * @return a filter that selects those declarations not selected
209 public DeclarationFilter not() { method in class:DeclarationFilter
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DDefaultExprFactory.java18 * 2 along with this work; if not, write to the Free Software Foundation,
110 public Not not (Expression operand) method in class:DefaultExprFactory
113 } // not
H A DExprFactory.java18 * 2 along with this work; if not, write to the Free Software Foundation,
58 Not not (Expression operand); method in interface:ExprFactory
/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java18 * 2 along with this work; if not, write to the Free Software Foundation,
39 * {@code QueryExp} interface might not be present in the remote MBean Server,
359 public static QueryExp not(QueryExp queryExp) { method in class:Query
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DDefaultClassBinder.java18 * 2 along with this work; if not, write to the Free Software Foundation,
201 return false; // not a complex type
347 public CClassInfo notation(XSNotation not) { argument
376 // all we need to do here is just not to acknowledge
398 * if the class name is not specified in the customization.
402 * if a name is not given by the customization.
448 // since we are not going to bind this complex type, we need to figure out
477 // not a valid Java class name
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
89 not = Query.not(gt), field in class:QueryExpStringTest
131 not, "not ((12345678) > (2.5))",
189 if (skip(ss, "not (")) {
190 QueryExp not = parseQuery(ss);
192 throw new Exception("Expected ) after not (...");
193 return Query.not(not);
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.java18 * 2 along with this work; if not, write to the Free Software Foundation,
43 // collide with keywords, in letter but not case, and issue a warning.
535 private void ifDefine (boolean inParens, boolean not) throws IOException, ParseException argument
538 if ((not && symbols.containsKey (token.name)) || (!not && !symbols.containsKey (token.name)))
557 private void ifdef (boolean not) throws IOException, ParseException argument
559 if (not)
564 if ((not && symbols.containsKey (token.name)) || (!not && !symbols.containsKey (token.name)))
672 // throwing an exception, since it does not mak
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpChannelImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
248 throw new IllegalUnbindException("Cannot remove address from a channel that is not bound to that address");
497 /* poll()/getsockopt() does not report
588 * ## Throw an error if this channel has not been pre-closed */
674 throw new UnsupportedOperationException("'" + name + "' not supported");
691 throw new UnsupportedOperationException("'" + name + "' not supported");
870 AssociationChangeNotification not, T unused) {
871 if (not.event().equals(
874 SctpAssocChange sac = (SctpAssocChange) not;
938 * SCTP_EOR not ye
869 handleNotification( AssociationChangeNotification not, T unused) argument
[all...]
H A DSctpMultiChannelImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
211 throw new IllegalUnbindException("Cannot remove address from a channel that is not bound to that address");
318 * ## Throw an error if this channel has not been pre-closed */
390 throw new UnsupportedOperationException("'" + name + "' not supported");
413 throw new UnsupportedOperationException("'" + name + "' not supported");
594 AssociationChangeNotification not, T unused) {
595 SctpAssocChange sac = (SctpAssocChange) not;
598 switch (not.event()) {
686 /* OK, determining connected addresses may not be possible
706 /* OK, determining connected addresses may not b
593 handleNotification( AssociationChangeNotification not, T unused) argument
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java18 * 2 along with this work; if not, write to the Free Software Foundation,
232 * @throws NumberFormatException {@code signum} is not one of the three
278 * Character.digit}. The String may not contain any extraneous
283 * @throws NumberFormatException {@code val} is not a valid representation
467 * The String may not contain any extraneous characters (whitespace, for
471 * @throws NumberFormatException {@code val} is not a valid representation
552 * by this method is composite does not exceed 2<sup>-100</sup>.
647 * method is composite does not exceed 2<sup>-100</sup>. This method will
961 * Constructs a BigInteger with the specified value, which may not be zero.
984 * Assumes that the input array will not b
2240 public BigInteger not() { method in class:BigInteger
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java9 * you may not use this file except in compliance with the License.
432 // if parser settings have not changed return.
612 * that do not affect the operation of the component.
617 * @throws SAXNotRecognizedException The component should not throw
619 * @throws SAXNotSupportedException The component should not throw
649 * that do not affect the operation of the component.
654 * @throws SAXNotRecognizedException The component should not throw
656 * @throws SAXNotSupportedException The component should not throw
721 * component does not want to report a default value for this
740 * component does not wan
2557 checkAndSendNotation(Notation not) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java18 * 2 along with this work; if not, write to the Free Software Foundation,
65 * is less efficient since it does not allow the compiled pattern to be reused.
68 * concurrent threads. Instances of the {@link Matcher} class are not safe for
144 * and not <tt>m</tt> through <tt>p</tt>: <tt>[a-lq-z]</tt>(subtraction)</td></tr>
150 * <td headers="matches">Any character (may or may not match <a href="#lt">line terminators</a>)</td></tr>
250 * <td headers="matches"><i>X</i>, once or not at all</td></tr>
260 * <td headers="matches"><i>X</i>, at least <i>n</i> but not more than <i>m</i> times</td></tr>
266 * <td headers="matches"><i>X</i>, once or not at all</td></tr>
276 * <td headers="matches"><i>X</i>, at least <i>n</i> but not more than <i>m</i> times</td></tr>
282 * <td headers="matches"><i>X</i>, once or not a
4910 Node cond, yes, not; field in class:Pattern.Conditional
4911 Conditional(Node cond, Node yes, Node not) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java18 * 2 along with this work; if not, write to the Free Software Foundation,
92 * Element deepFreeze() // not side-effecting
262 * XMLKit.not(Filter) // inverts sense of Filter
293 // Note: Does not implement List, because it has more
462 * Throw an IllegalArgumentException if any sub-element is not already frozen.
511 /** Return number of elements. (Does not include attributes.) */
516 /** True if no elements. (Does not consider attributes.) */
521 /** True if this element does not allow modification. */
533 /** Remove specified elements. (Does not affect attributes.) */
834 /** Remove all elements not matchin
3096 public static Filter not(final Filter f) { method in class:XMLKit
[all...]

Completed in 132 milliseconds