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

123456789

/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathFunctions.cpp75 virtual Value evaluate() const;
82 virtual Value evaluate() const;
89 virtual Value evaluate() const;
94 virtual Value evaluate() const;
99 virtual Value evaluate() const;
106 virtual Value evaluate() const;
113 virtual Value evaluate() const;
120 virtual Value evaluate() const;
127 virtual Value evaluate() const;
132 virtual Value evaluate() cons
306 Value FunLast::evaluate() const function in class:WebCore::XPath::FunLast
311 Value FunPosition::evaluate() const function in class:WebCore::XPath::FunPosition
316 Value FunId::evaluate() const function in class:WebCore::XPath::FunId
379 Value FunLocalName::evaluate() const function in class:WebCore::XPath::FunLocalName
393 Value FunNamespaceURI::evaluate() const function in class:WebCore::XPath::FunNamespaceURI
407 Value FunName::evaluate() const function in class:WebCore::XPath::FunName
421 Value FunCount::evaluate() const function in class:WebCore::XPath::FunCount
428 Value FunString::evaluate() const function in class:WebCore::XPath::FunString
435 Value FunConcat::evaluate() const function in class:WebCore::XPath::FunConcat
449 Value FunStartsWith::evaluate() const function in class:WebCore::XPath::FunStartsWith
460 Value FunContains::evaluate() const function in class:WebCore::XPath::FunContains
471 Value FunSubstringBefore::evaluate() const function in class:WebCore::XPath::FunSubstringBefore
487 Value FunSubstringAfter::evaluate() const function in class:WebCore::XPath::FunSubstringAfter
499 Value FunSubstring::evaluate() const function in class:WebCore::XPath::FunSubstring
530 Value FunStringLength::evaluate() const function in class:WebCore::XPath::FunStringLength
537 Value FunNormalizeSpace::evaluate() const function in class:WebCore::XPath::FunNormalizeSpace
548 Value FunTranslate::evaluate() const function in class:WebCore::XPath::FunTranslate
568 Value FunBoolean::evaluate() const function in class:WebCore::XPath::FunBoolean
573 Value FunNot::evaluate() const function in class:WebCore::XPath::FunNot
578 Value FunTrue::evaluate() const function in class:WebCore::XPath::FunTrue
583 Value FunLang::evaluate() const function in class:WebCore::XPath::FunLang
618 Value FunFalse::evaluate() const function in class:WebCore::XPath::FunFalse
623 Value FunNumber::evaluate() const function in class:WebCore::XPath::FunNumber
630 Value FunSum::evaluate() const function in class:WebCore::XPath::FunSum
647 Value FunFloor::evaluate() const function in class:WebCore::XPath::FunFloor
652 Value FunCeiling::evaluate() const function in class:WebCore::XPath::FunCeiling
668 Value FunRound::evaluate() const function in class:WebCore::XPath::FunRound
[all...]
H A DXPathPredicate.cpp46 Value Number::evaluate() const function in class:WebCore::XPath::Number
56 Value StringExpression::evaluate() const function in class:WebCore::XPath::StringExpression
61 Value Negative::evaluate() const function in class:WebCore::XPath::Negative
63 Value p(subExpr(0)->evaluate());
74 Value NumericOp::evaluate() const function in class:WebCore::XPath::NumericOp
76 Value lhs(subExpr(0)->evaluate());
77 Value rhs(subExpr(1)->evaluate());
193 Value EqTestOp::evaluate() const function in class:WebCore::XPath::EqTestOp
195 Value lhs(subExpr(0)->evaluate());
196 Value rhs(subExpr(1)->evaluate());
216 Value LogicalOp::evaluate() const function in class:WebCore::XPath::LogicalOp
229 Value Union::evaluate() const function in class:WebCore::XPath::Union
263 bool Predicate::evaluate() const function in class:WebCore::XPath::Predicate
[all...]
H A DXPathExpression.idl23 [ObjCLegacyUnnamedParameters, RaisesException] XPathResult evaluate([Default=Undefined] optional Node contextNode,
H A DXPathPredicate.h41 virtual Value evaluate() const;
51 virtual Value evaluate() const;
59 virtual Value evaluate() const;
70 virtual Value evaluate() const;
80 virtual Value evaluate() const;
95 virtual Value evaluate() const;
102 virtual Value evaluate() const;
111 bool evaluate() const;
H A DXPathPath.h45 virtual Value evaluate() const;
60 virtual Value evaluate() const;
61 void evaluate(NodeSet& nodes) const; // nodes is an input/output parameter
78 virtual Value evaluate() const;
H A DXPathVariableReference.cpp41 Value VariableReference::evaluate() const function in class:WebCore::XPath::VariableReference
H A DXPathVariableReference.h40 virtual Value evaluate() const;
H A DXPathPath.cpp53 Value Filter::evaluate() const function in class:WebCore::XPath::Filter
55 Value v = m_expr->evaluate();
72 if (m_predicates[i]->evaluate())
92 Value LocationPath::evaluate() const function in class:WebCore::XPath::LocationPath
114 evaluate(nodes);
120 void LocationPath::evaluate(NodeSet& nodes) const function in class:WebCore::XPath::LocationPath
141 step->evaluate(nodes[j], matches);
204 Value Path::evaluate() const function in class:WebCore::XPath::Path
206 Value v = m_filter->evaluate();
209 m_path->evaluate(node
[all...]
H A DXMLTreeViewer.cpp77 m_document->frame()->script()->evaluate(ScriptSourceCode(scriptString));
79 m_document->frame()->script()->evaluate(ScriptSourceCode("prepareWebKitXMLViewer('" + noStyleMessage + "');"));
H A DXPathEvaluator.cpp53 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, function in class:WebCore::XPathEvaluator
70 return expr->evaluate(contextNode, type, result, ec);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DCalculationValue.cpp38 float CalcExpressionBinaryOperation::evaluate(float maxValue) const function in class:WebCore::CalcExpressionBinaryOperation
40 float left = m_leftSide->evaluate(maxValue);
41 float right = m_rightSide->evaluate(maxValue);
63 float CalculationValue::evaluate(float maxValue) const function in class:WebCore::CalculationValue
65 float result = m_value->evaluate(maxValue);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CocoaRepl/
H A Devaluator.rb20 def self.evaluate(source, fname=nil, lineno=nil) singleton method in class:Evaluator
21 instance.evaluate!(source, fname, lineno)
36 def evaluate!(source, fname=nil, lineno=nil)
37 result = Result.evaluate(source, fname, lineno)
40 notify_to_observers(:evaluate!, result)
58 def self.evaluate(source, fname=nil, lineno=nil) singleton method in class:Evaluator.Result
59 self.new(source, fname, lineno).evaluate!
79 def evaluate!(binding = nil)
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DSelectionPredicate.cpp48 SelectionPredicate::evaluate(const ReadSection &rs) const function in class:SelectionPredicate
50 return mMetaAttribute.evaluate(mValue, rs, mDbOperator);
H A DSelectionPredicate.h41 bool evaluate(const ReadSection &inReadSection) const;
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DSelectionPredicate.cpp48 SelectionPredicate::evaluate(const ReadSection &rs) const function in class:SelectionPredicate
50 return mMetaAttribute.evaluate(mValue, rs, mDbOperator);
H A DSelectionPredicate.h41 bool evaluate(const ReadSection &inReadSection) const;
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/MCDisassembler/
H A DEDOperand.h55 /// evaluate - Returns the numeric value of an operand to the extent possible,
63 int evaluate(uint64_t &result,
83 /// evaluate - Like evaluate for a callback, but uses a block instead
84 int evaluate(uint64_t &result,
/macosx-10.9.5/CPANInternal-140/XML-XPath/XPath/
H A DRoot.pm22 sub evaluate { subroutine
H A DLocationPath.pm40 sub evaluate { subroutine
53 # evaluate the step with the nodeset
55 $nodeset = $step->evaluate($nodeset);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorClient.cpp61 scriptController->evaluate(ScriptSourceCode(dispatchToFrontend));
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DTestController.js46 RuntimeAgent.evaluate("didEvaluateForTestInFrontend(" + callId + ", " + message + ")", "test");
/macosx-10.9.5/groff-38/groff/src/preproc/refer/
H A Dlabel.y54 virtual void evaluate(int, const reference &, string &,
62 void evaluate(int, const reference &, string &, substring_position &);
73 void evaluate(int, const reference &, string &, substring_position &);
82 void evaluate(int, const reference &, string &, substring_position &);
90 void evaluate(int, const reference &, string &, substring_position &);
99 void evaluate(int, const reference &, string &, substring_position &) = 0;
109 void evaluate(int, const reference &, string &, substring_position &);
116 void evaluate(int, const reference &, string &, substring_position &);
129 void evaluate(int, const reference &, string &, substring_position &);
141 void evaluate(in
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/irb/ext/
H A Dtracer.rb50 alias __evaluate__ evaluate
55 def evaluate(context, statements, file = nil, line = nil) method in class:IRB.WorkSpace
/macosx-10.9.5/ruby-104/ruby/lib/webrick/httpservlet/
H A Derbhandler.rb38 # Creates a new ERBHandler on +server+ that will evaluate and serve the
56 res.body = evaluate(ERB.new(data), req, res)
78 def evaluate(erb, servlet_request, servlet_response) method in class:WEBrick.HTTPServlet.ERBHandler
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCompletion.h38 JS_EXPORT_PRIVATE JSValue evaluate(ExecState*, const SourceCode&, JSValue thisValue = JSValue(), JSValue* exception = 0);

Completed in 254 milliseconds

123456789