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

12345

/openjdk9/jdk/src/java.desktop/share/classes/java/awt/
H A DConditional.java36 boolean evaluate(); method in interface:Conditional
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orbutil/closure/
H A DClosure.java29 public Object evaluate() ; method in interface:Closure
/openjdk9/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/
H A DPredicate.java40 * constraints defined in the implementation of the method <code>evaluate</code>.
69 * public boolean evaluate(RowSet rs) {
118 public boolean evaluate(RowSet rs); method in interface:Predicate
139 public boolean evaluate(Object value, int column) throws SQLException; method in interface:Predicate
161 public boolean evaluate(Object value, String columnName) throws SQLException; method in interface:Predicate
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/xpath/
H A DXPathFunction.java54 public Object evaluate(List args) method in interface:XPathFunction
H A DXPathExpression.java93 * more than one thread at any given time, and while the {@code evaluate}
95 * the {@code evaluate} method.
130 public Object evaluate(Object item, QName returnType) method in interface:XPathExpression
136 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a {@code returnType} of
157 public String evaluate(Object item) method in interface:XPathExpression
166 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.
177 * @param source The {@code InputSource} of the document to evaluate over.
187 public Object evaluate(InputSource source, QName returnType) method in interface:XPathExpression
195 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a {@code returnType} of
203 * @param source The {@code InputSource} of the document to evaluate ove
211 public String evaluate(InputSource source) method in interface:XPathExpression
[all...]
H A DXPath.java97 * more than one thread at any given time, and while the {@code evaluate}
99 * the {@code evaluate} method.
240 public Object evaluate(String expression, Object item, QName returnType) method in interface:XPath
246 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a {@code returnType} of
269 public String evaluate(String expression, Object item) method in interface:XPath
277 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.
283 * @param source The input source of the document to evaluate over.
292 public Object evaluate( method in interface:XPath
302 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a
309 * @param source The {@code InputSource} of the document to evaluate ove
317 public String evaluate(String expression, InputSource source) method in interface:XPath
[all...]
/openjdk9/jdk/src/jdk.jcmd/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 = ((Number)evaluate(l)).doubleValue();
87 double rval = ((Number)evaluate(r)).doubleValue();
/openjdk9/corba/src/java.corba/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
/openjdk9/jaxp/test/javax/xml/jaxp/functional/javax/xml/xpath/ptests/
H A DXPathExpressionTest.java106 * Test for evaluate(java.lang.Object item,QName returnType)throws
114 evaluate(document, STRING), "6");
118 * evaluate(java.lang.Object item,QName returnType) throws NPE if input
125 xpath.compile(EXPRESSION_NAME_A).evaluate(null, STRING);
129 * evaluate(java.lang.Object item,QName returnType) throws NPE if returnType
136 xpath.compile(EXPRESSION_NAME_A).evaluate(document, null);
140 * Test for method evaluate(java.lang.Object item,QName returnType).If a
141 * request is made to evaluate the expression in the absence of a context
148 assertEquals(xpath.compile("1+1").evaluate(document, STRING), "2");
152 * evaluate(jav
[all...]
H A DXPathTest.java110 * Test for XPath.evaluate(java.lang.String expression, java.lang.Object
117 assertEquals(xpath.evaluate(EXPRESSION_NAME_A, document, STRING), "6");
123 * evaluate(java.lang.Object item, QName returnType).
129 assertEquals(xpath.compile(EXPRESSION_NAME_A).evaluate(document, STRING), "6");
133 * Test for XPath.evaluate(java.lang.String expression, java.lang.Object
134 * item) when the third argument is left off of the XPath.evaluate method,
141 assertEquals(xpath.evaluate(EXPRESSION_NAME_A, document), "6");
185 assertEquals(xpath.compile(EXPRESSION_NAME_B).evaluate(document, STRING), "");
190 * Test for XPath.evaluate(java.lang.String expression, java.lang.Object
197 xpath.evaluate(nul
[all...]
/openjdk9/corba/src/java.corba/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
/openjdk9/jaxp/test/javax/xml/jaxp/functional/test/astro/
H A DXPathAPITest.java89 return new Object[][] { { (XPathEvaluator) expression -> getXPath().evaluate(expression, doc.getDocumentElement(), NODESET) },
90 { (XPathEvaluator) expression -> getXPath().evaluate(expression, createXMLInputSource(), NODESET) },
91 { (XPathEvaluator) expression -> getXPathExpression(expression).evaluate(doc.getDocumentElement(), NODESET) },
92 { (XPathEvaluator) expression -> getXPathExpression(expression).evaluate(createXMLInputSource(), NODESET) } };
101 NodeList o = (NodeList) evaluator.evaluate(STARDB_STAR);
107 return new Object[][] { { (XPathEvaluator) expression -> getXPath().evaluate(expression, doc.getDocumentElement()) },
108 { (XPathEvaluator) expression -> getXPath().evaluate(expression, createXMLInputSource()) },
109 { (XPathEvaluator) expression -> getXPathExpression(expression).evaluate(doc.getDocumentElement()) },
110 { (XPathEvaluator) expression -> getXPathExpression(expression).evaluate(createXMLInputSource()) } };
118 assertEquals(evaluator.evaluate(STARDB_STAR_3_CONSTELLATIO
157 Object evaluate(String expression) throws XPathExpressionException; method in interface:XPathAPITest.XPathEvaluator
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/constExpr/
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 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 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 DPositive.java50 public Object evaluate () throws EvaluationException method in class:Positive
54 Number op = (Number)operand ().evaluate ();
72 } // evaluate
H A DNegative.java50 public Object evaluate () throws EvaluationException method in class:Negative
54 Number op = (Number)operand ().evaluate ();
72 } // evaluate
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/
H A DComplexMatchResult.java35 Value evaluate(NodeLIRBuilder gen); method in interface:ComplexMatchResult
/openjdk9/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/xpath/
H A DXPathExpression.java90 public Object evaluate(Node contextNode, method in interface:XPathExpression
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPAddressClosureImpl.java48 return (String)(host.evaluate()) ;
53 Integer value = (Integer)(port.evaluate()) ;

Completed in 212 milliseconds

12345