Searched refs:evaluate (Results 1 - 25 of 89) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/awt/
H A DConditional.java36 boolean evaluate(); method in interface:Conditional
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DEventDispatchAccess.java38 public abstract boolean evaluate(); method in class:EventDispatchAccess
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathExpression.java45 * If a request is made to evaluate the expression in the absence
87 * more than one thread at any given time, and while the <code>evaluate</code>
89 * the <code>evaluate</code> method.
123 public Object evaluate(Object item, QName returnType) method in interface:XPathExpression
129 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
146 public String evaluate(Object item) method in interface:XPathExpression
154 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p>
165 * @param source The <code>InputSource</code> of the document to evaluate over.
175 public Object evaluate(InputSource source, QName returnType) method in interface:XPathExpression
182 * <p>This method calls {@link #evaluate(InputSourc
198 public String evaluate(InputSource source) method in interface:XPathExpression
[all...]
H A DXPathFunction.java54 public Object evaluate(List args) method in interface:XPathFunction
H A DXPath.java46 * If a request is made to evaluate the expression in the absence
91 * more than one thread at any given time, and while the <code>evaluate</code>
93 * the <code>evaluate</code> method.
233 public Object evaluate(String expression, Object item, QName returnType) method in interface:XPath
239 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
259 public String evaluate(String expression, Object item) method in interface:XPath
267 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p>
279 * @param source The input source of the document to evaluate over.
289 public Object evaluate( method in interface:XPath
299 * <p>This method calls {@link #evaluate(Strin
317 public String evaluate(String expression, InputSource source) method in interface:XPath
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/closure/
H A DClosure.java29 public Object evaluate() ; method in interface:Closure
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DPredicate.java40 * constraints defined in the implementation of the method <code>evaluate</code>.
70 * public boolean evaluate(RowSet rs) {
119 public boolean evaluate(RowSet rs); method in interface:Predicate
140 public boolean evaluate(Object value, int column) throws SQLException; method in interface:Predicate
162 public boolean evaluate(Object value, String columnName) throws SQLException; method in interface:Predicate
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DExpressionEvaluator.java32 * evaluate based on some context.
38 Object evaluate(Expression e) throws MonitorException; method in interface:ExpressionEvaluator
H A DExpressionExecuter.java32 * A class implementing the ExpressionEvaluator to evaluate an expression
49 * evaluate the given expression.
51 public Object evaluate(Expression e) { method in class:ExpressionExecuter
84 return evaluate(l);
86 Double lval = new Double(((Number)evaluate(l)).doubleValue());
87 Double rval = new Double(((Number)evaluate(r)).doubleValue());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/closure/
H A DFuture.java42 public synchronized Object evaluate() method in class:Future
46 value = closure.evaluate() ;
H A DConstant.java38 public Object evaluate() method in class:Constant
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DGuard.java43 public Result evaluate( FSM fsm, Input in ) method in class:Guard.Complement
45 return guard.evaluate( fsm, in ).complement() ;
99 public Result evaluate( FSM fsm, Input in ) ; method in interface:Guard
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DEqual.java50 public Object evaluate () throws EvaluationException method in class:Equal
54 Object left = left ().evaluate ();
58 Boolean r = (Boolean)right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
78 } // evaluate
H A DGreaterEqual.java50 public Object evaluate () throws EvaluationException method in class:GreaterEqual
54 Object left = left ().evaluate ();
55 Object right = right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
78 } // evaluate
H A DGreaterThan.java50 public Object evaluate () throws EvaluationException method in class:GreaterThan
54 Object left = left ().evaluate ();
55 Object right = right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
78 } // evaluate
H A DLessEqual.java50 public Object evaluate () throws EvaluationException method in class:LessEqual
54 Object left = left ().evaluate ();
55 Object right = right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
78 } // evaluate
H A DLessThan.java50 public Object evaluate () throws EvaluationException method in class:LessThan
54 Object left = left ().evaluate ();
55 Object right = right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
78 } // evaluate
H A DNotEqual.java50 public Object evaluate () throws EvaluationException method in class:NotEqual
54 Object left = left ().evaluate ();
58 Boolean r = (Boolean)right ().evaluate ();
64 Number r = (Number)right ().evaluate ();
79 } // evaluate
H A DBooleanNot.java50 public Object evaluate () throws EvaluationException method in class:BooleanNot
54 Object tmp = operand ().evaluate ();
78 } // evaluate
H A DNegative.java50 public Object evaluate () throws EvaluationException method in class:Negative
54 Number op = (Number)operand ().evaluate ();
72 } // evaluate
H A DPositive.java50 public Object evaluate () throws EvaluationException method in class:Positive
54 Number op = (Number)operand ().evaluate ();
72 } // evaluate
/openjdk7/jaxp/src/org/w3c/dom/xpath/
H A DXPathExpression.java90 public Object evaluate(Node contextNode, method in interface:XPathExpression
H A DXPathEvaluator.java155 public Object evaluate(String expression, method in interface:XPathEvaluator
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPAddressClosureImpl.java51 return (String)(host.evaluate()) ;
56 Integer value = (Integer)(port.evaluate()) ;
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java113 // p.evaluate will help us in changing the cursor
133 if(p.evaluate(this)){
166 if(p.evaluate(this)){
199 if(p.evaluate(this)){
230 if(p.evaluate(this)){
455 * of the filter is done using the evaluate function in the Predicate
458 * The checking can will done in the evaluate function which is implemented
463 * 1. updateBytes() - since the evaluate function takes Object as parameter
465 * passed to the evaluate function.
467 * to the evaluate functio
[all...]

Completed in 61 milliseconds

1234