HomeSort by relevance Sort by last modified time
    Searched defs:Evaluate (Results 1 - 25 of 25) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_runtime.py 21 self.Evaluate(expr + '; 0;', context_id, timeout)
23 def Evaluate(self, expr, context_id, timeout):
36 'method': 'Runtime.evaluate',
  /external/libtextclassifier/lang_id/
relevant-script-feature.cc 40 void RelevantScriptFeature::Evaluate(const WorkspaceSet &workspaces,
language-identifier-features.cc 54 // the end of each call to Evaluate(). Hence, this invariant holds at the
55 // beginning of each run of Evaluate(), where the only call to this code takes
117 void ContinuousBagOfNgramsFunction::Evaluate(const WorkspaceSet &workspaces,
131 // Clear up counts_, for the next invocation of Evaluate().
135 // Clear up non_zero_count_indices_, for the next invocation of Evaluate().
  /external/dng_sdk/source/
dng_1d_function.cpp 45 real64 y0 = Evaluate (x0);
48 real64 y1 = Evaluate (x1);
62 real64 y2 = Evaluate (x2);
87 real64 dng_1d_identity::Evaluate (real64 x) const
138 real64 dng_1d_concatenate::Evaluate (real64 x) const
141 real64 y = Pin_real64 (0.0, fFunction1.Evaluate (x), 1.0);
143 return fFunction2.Evaluate (y);
179 real64 dng_1d_inverse::Evaluate (real64 x) const
191 return fFunction.Evaluate (y);
dng_spline.cpp 174 real64 dng_spline_solver::Evaluate (real64 x) const
dng_color_space.cpp 26 real64 dng_function_GammaEncode_sRGB::Evaluate (real64 x) const
63 real64 dng_function_GammaEncode_1_8::Evaluate (real64 x) const
119 real64 dng_function_GammaEncode_2_2::Evaluate (real64 x) const
    [all...]
dng_render.cpp 65 real64 dng_function_exposure_ramp::Evaluate (real64 x) const
116 real64 dng_function_exposure_tone::Evaluate (real64 x) const
136 real64 dng_tone_curve_acr3_default::Evaluate (real64 x) const
    [all...]
dng_resample.cpp 40 real64 dng_resample_bicubic::Evaluate (real64 x) const
225 // Evaluate kernel function for 32 bit weights.
238 w32 [j] = (real32) kernel.Evaluate (x);
385 // Evaluate kernel function for 32 bit weights.
414 w32 [index] = (real32) kernel.Evaluate (r);
420 w32 [index] = (real32) kernel.Evaluate (xPos) *
421 (real32) kernel.Evaluate (yPos);
dng_negative.h 115 virtual real64 Evaluate (real64 x) const
    [all...]
  /external/google-breakpad/src/processor/
postfix_evaluator-inl.h 57 // A small class used in Evaluate to make sure to clean up the stack
234 bool PostfixEvaluator<ValueType>::Evaluate(const string &expression,
  /external/v8/src/debug/
debug-evaluate.cc 5 #include "src/debug/debug-evaluate.h"
44 return Evaluate(isolate, outer_info, context, context_extension, receiver,
82 Evaluate(isolate, context_builder.outer_info(), context,
89 // Compile and evaluate source for the given context.
90 MaybeHandle<Object> DebugEvaluate::Evaluate(
144 // To evaluate as if we were running eval at the point of the debug break,
147 // use a debug-evaluate context to wrap both the materialized object and
156 // Context::Lookup has special handling for debug-evaluate contexts:
  /art/compiler/optimizing/
dead_code_elimination.cc 120 static HConstant* Evaluate(HCondition* condition, HInstruction* left, HInstruction* right) {
131 return condition->Evaluate(left->AsIntConstant(), right->AsIntConstant());
133 return condition->Evaluate(left->AsNullConstant(), right->AsNullConstant());
135 return condition->Evaluate(left->AsLongConstant(), right->AsLongConstant());
137 return condition->Evaluate(left->AsFloatConstant(), right->AsFloatConstant());
140 return condition->Evaluate(left->AsDoubleConstant(), right->AsDoubleConstant());
219 value_to_check = Evaluate(first->AsCondition(), input, first->InputAt(1));
221 value_to_check = Evaluate(first->AsCondition(), first->InputAt(0), input);
225 // Could not evaluate to a constant, continue iterating over the inputs.
254 // Evaluate here (and not wait for a constant folding pass) to ope
    [all...]
nodes.h     [all...]
  /bootable/recovery/edify/
expr.cpp 37 // - if Evaluate() on any argument returns nullptr, return nullptr.
43 bool Evaluate(State* state, const std::unique_ptr<Expr>& expr, std::string* result) {
83 if (!Evaluate(state, argv[i], &str)) {
99 if (!Evaluate(state, argv[0], &cond)) {
114 if (!argv.empty() && Evaluate(state, argv[0], &msg)) {
125 if (!Evaluate(state, argv[i], &result)) {
139 if (!Evaluate(state, argv[0], &val)) {
155 if (!Evaluate(state, argv[i], &v)) {
166 if (!Evaluate(state, argv[0], &left)) {
179 if (!Evaluate(state, argv[0], &left))
    [all...]
  /external/libtextclassifier/common/
feature-extractor.h 322 // Preprocesses the object. This will be called prior to calling Evaluate()
329 virtual void Evaluate(const WorkspaceSet &workspaces, const OBJ &object,
378 // Note: NestedFeatureFunction cannot know how to call Preprocess, Evaluate, or
501 void Evaluate(const WorkspaceSet &workspaces, const OBJ &object, ARGS... args,
506 function->Evaluate(workspaces, object, focus, args..., result);
543 void Evaluate(const WorkspaceSet &workspaces, const OBJ &object, ARGS... args,
547 function->Evaluate(workspaces, object, args..., result);
630 functions_[i]->Evaluate(workspaces, object, args..., result);
  /external/libchrome/base/test/
trace_event_analyzer.cc 275 bool Query::Evaluate(const TraceEvent& event) const {
309 return left().Evaluate(event) && right().Evaluate(event);
311 return left().Evaluate(event) || right().Evaluate(event);
313 return !left().Evaluate(event);
697 if (query.Evaluate(events[i]))
800 if (second.Evaluate(this_event)) {
809 if (match.Evaluate(begin_event)) {
825 if (first.Evaluate(this_event))
    [all...]
  /external/webrtc/webrtc/base/
virtualsocketserver.cc 1045 double y = Evaluate(f, x);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 435 /// evaluate the expression regardless of what the RHS is, but C only allows
454 /// we will evaluate.
485 /// Evaluate as a constant expression. Stop if we find that the expression
489 /// Evaluate as a potential constant expression. Keep going if we hit a
490 /// construct that we can't evaluate yet (because we don't yet know the
499 /// Evaluate the expression looking for integer overflow and similar
504 /// Evaluate in any way we know how. Don't worry about side-effects that
508 /// Evaluate as a constant expression. Stop if we find that the expression
515 /// Evaluate as a potential constant expression. Keep going if we hit a
516 /// construct that we can't evaluate yet (because we don't yet know th
    [all...]
  /external/v8/src/
api.cc     [all...]
objects.cc     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/
velocity-1.7.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /external/dagger2/lib/
auto-value-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.0/
auto-value-1.0.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 

Completed in 515 milliseconds