Home
last modified time | relevance | path

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

1234

/third_party/typescript/tests/baselines/reference/
H A DarrayDestructuringInSwitch1.js5 export function evaluate(expression: Expression): boolean {
10 return operands.every((child) => evaluate(child));
13 return !evaluate(operands[0]);
27 exports.evaluate = void 0;
28 function evaluate(expression) { function
33 return operands.every(function (child) { return evaluate(child); });
36 return !evaluate(operands[0]);
47 exports.evaluate = evaluate;
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgExpression.hpp32 * must be valid after evaluate().
34 * evaluate().
60 virtual void evaluate (ExecutionContext& ctx) = DE_NULL;
76 void evaluate (ExecutionContext& ctx);
118 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::FloatLiteral
136 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::IntLiteral
155 void evaluate (ExecutionContext& ctx) { DE_UNREF(ctx); } in evaluate() function in rsg::BoolLiteral
173 void evaluate (ExecutionContext& ctx);
198 void evaluate (ExecutionContext& ctx);
221 void evaluate (ExecutionContex function in rsg::ParenOp
[all...]
H A DrsgBinaryOps.hpp49 void evaluate (ExecutionContext& execCtx);
52 virtual void evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) = DE_NULL;
75 void evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b);
154 void evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b);
270 void evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b);
H A DrsgBinaryOps.cpp48 void evaluate (ExecutionContext& execCtx);
89 void CustomAbsOp::evaluate (ExecutionContext& execCtx) in evaluate() function in rsg::CustomAbsOp
91 m_child->evaluate(execCtx); in evaluate()
121 void evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b);
170 void CustomBinaryOp<ComputeValue>::evaluate(ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) in evaluate() function in rsg::CustomBinaryOp
184 void CustomBinaryOp<EvaluateLessThan>::evaluate(ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) in evaluate() function in rsg::CustomBinaryOp
351 void BinaryOp<Precedence, Assoc>::evaluate (ExecutionContext& execCtx) in evaluate() function in rsg::BinaryOp
353 m_leftValueExpr->evaluate(execCtx); in evaluate()
354 m_rightValueExpr->evaluate(execCtx); in evaluate()
360 evaluate(ds in evaluate()
436 void BinaryVecOp<Precedence, Float, Int, Bool, ComputeValueRange, EvaluateComp>::evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) evaluate() function in rsg::BinaryVecOp
694 void RelationalOp<ComputeValueRange, EvaluateComp>::evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) evaluate() function in rsg::RelationalOp
1037 void EqualityComparisonOp<IsEqual>::evaluate (ExecValueAccess dst, ExecConstValueAccess a, ExecConstValueAccess b) evaluate() function in rsg::EqualityComparisonOp
[all...]
H A DrsgStatement.cpp136 m_expression->evaluate(execCtx); in execute()
349 m_expression->evaluate(execCtx); in execute()
499 m_condition->evaluate(execCtx); in execute()
564 m_valueExpr->evaluate(execCtx); in execute()
H A DrsgExpression.cpp818 void ConstructorOp::evaluate (ExecutionContext& evalCtx) in evaluate() function in rsg::ConstructorOp
822 (*i)->evaluate(evalCtx); in evaluate()
961 void AssignOp::evaluate (ExecutionContext& evalCtx) in evaluate() function in rsg::AssignOp
964 m_lvalueExpr->evaluate(evalCtx); in evaluate()
967 m_rvalueExpr->evaluate(evalCtx); in evaluate()
1243 void VariableAccess::evaluate (ExecutionContext& evalCtx) in evaluate() function in rsg::VariableAccess
1410 void SwizzleOp::evaluate (ExecutionContext& execCtx) in evaluate() function in rsg::SwizzleOp
1412 m_child->evaluate(execCtx); in evaluate()
1652 void TexLookup::evaluate (ExecutionContext& execCtx) in evaluate() function in rsg::TexLookup
1655 m_coordExpr->evaluate(execCt in evaluate()
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Didlharness-shadowrealm.js32 realm.evaluate("globalThis.self = globalThis; undefined;");
34 realm.evaluate(`
44 realm.evaluate(s);
52 realm.evaluate(`(resolve,reject) => {
/third_party/node/test/parallel/
H A Dtest-vm-module-errors.js72 await m.evaluate();
80 await m.evaluate(false);
97 await m.evaluate();
148 await erroredModule.evaluate();
191 await m.evaluate();
201 // Check for error thrown when breakOnSigint is not a boolean for evaluate()
205 await m.evaluate({ breakOnSigint: 'a-string' });
215 ['link', 'evaluate'].forEach(async (method) => {
H A Dtest-vm-module-link.js26 await bar.evaluate();
52 await barz.evaluate();
82 await foo.evaluate();
124 await rootModule.evaluate();
H A Dtest-vm-timeout-escape-promise-module.js38 await module.evaluate({ timeout: 5 });
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DSetTheory.cpp42 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
54 ST.evaluate(*Expr->arg_begin(), Add, Loc);
55 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
70 ST.evaluate(Expr->arg_begin()[0], S1, Loc);
71 ST.evaluate(Expr->arg_begin()[1], S2, Loc);
89 ST.evaluate(Expr->arg_begin()[0], Set, Loc);
165 ST.evaluate(Expr->getArg(i), Args[i], Loc);
247 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc());
282 void SetTheory::evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) { in evaluate() function in SetTheory
293 return evaluate(L in evaluate()
[all...]
/third_party/node/deps/v8/tools/wasm/
H A Dcode-size-factors.py28 evaluate('Liftoff', liftoff_values)
29 evaluate('TurboFan', turbofan_values)
45 def evaluate(name, values): function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
H A DSetTheory.h126 /// evaluate - Evaluate Expr and append the resulting set to Elts.
127 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
129 /// evaluate - Evaluate a sequence of Inits and append to Elts.
131 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) { in evaluate() function in llvm::SetTheory
133 evaluate(*begin++, Elts, Loc); in evaluate()
/third_party/ltp/tools/sparse/sparse-src/
H A Dbuiltin.c28 #include "evaluate.h"
65 * eval_args - check the number of arguments and evaluate them.
195 .evaluate = evaluate_to_int_const_expr,
200 .evaluate = evaluate_to_int_const_expr,
205 .evaluate = evaluate_to_int_const_expr,
215 .evaluate = evaluate_choose,
244 .evaluate = evaluate_pure_unop,
276 .evaluate = evaluate_pure_unop, \
304 .evaluate = evaluate_fp_unop,
323 .evaluate
[all...]
/third_party/openssl/test/
H A Dbntests.pl26 sub evaluate subroutine
141 evaluate($l, %stanza);
153 evaluate($l, %stanza) if keys %stanza;
/third_party/node/lib/internal/modules/esm/
H A Dcreate_dynamic_module.js42 * Creates a dynamic module with the given imports, exports, URL, and evaluate function.
46 * @param {(reflect: DynamicModuleReflect) => void} evaluate - The function to evaluate the module.
50 * @property {(cb: (reflect: DynamicModuleReflect) => void) => void} onReady - Callback to evaluate the module.
52 const createDynamicModule = (imports, exports, url = '', evaluate) => {
81 evaluate(reflect);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.h34 bool evaluate(const MachineInstr &MI, const CellMapType &Inputs,
36 bool evaluate(const MachineInstr &BI, const CellMapType &Inputs,
H A DHexagonConstPropagation.cpp299 // - A set of three "evaluate" functions. Each returns "true" if the
314 virtual bool evaluate(const MachineInstr &MI, const CellMap &Inputs,
316 virtual bool evaluate(const RegisterSubReg &R, const LatticeCell &SrcC,
318 virtual bool evaluate(const MachineInstr &BrI, const CellMap &Inputs,
672 bool Eval = MCE.evaluate(UseR, Cells.get(UseR.Reg), SrcC); in visitPHI()
690 bool Eval = MCE.evaluate(MI, Cells, Outputs); in visitNonBranch()
746 // Do not evaluate subsequent branches if the evaluation of any of the in visitBranchesFrom()
749 EvalOk = EvalOk && MCE.evaluate(MI, Cells, Targets, FallsThru); in visitBranchesFrom()
779 LLVM_DEBUG(dbgs() << " failed to evaluate a branch...adding all CFG " in visitBranchesFrom()
834 bool Eval = MCE.evaluate(M in computeBlockSuccessors()
1926 bool HexagonConstEvaluator::evaluate(const MachineInstr &MI, evaluate() function in HexagonConstEvaluator
2204 bool HexagonConstEvaluator::evaluate(const RegisterSubReg &R, evaluate() function in HexagonConstEvaluator
2260 bool HexagonConstEvaluator::evaluate(const MachineInstr &BrI, evaluate() function in HexagonConstEvaluator
[all...]
/third_party/skia/modules/skottie/tests/
H A DExpression.cpp19 float evaluate(float t) override { return 7.0f; }
24 std::vector<float> evaluate(float t) override { return {0.1f, 0.2f, 0.3f, 1.0f}; }
29 SkString evaluate(float t) override { return SkString("Hello, world!"); }
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp873 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
886 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
899 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
912 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
925 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
938 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
951 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
963 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
975 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
987 static void evaluate (ShaderEvalContex function
999 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1011 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1025 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1039 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1053 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1067 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1080 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1093 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1106 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1359 void MatrixShaderEvaluator::evaluate (ShaderEvalContext& evalCtx) const evaluate() function in vkt::sr::__anon28711::MatrixShaderEvaluator
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp879 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
892 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
905 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
918 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
931 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
944 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
957 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
969 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
981 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
993 static void evaluate (ShaderEvalContex function
1005 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1017 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1031 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1045 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1059 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1073 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1086 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1099 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1112 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1365 void MatrixShaderEvaluator::evaluate (ShaderEvalContext& evalCtx) evaluate() function in deqp::gles3::Functional::MatrixShaderEvaluator
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp873 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
886 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
899 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
912 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
925 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
938 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
951 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
963 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
975 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate() function
987 static void evaluate (ShaderEvalContex function
999 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1011 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1025 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1039 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1053 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1067 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1080 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1093 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1106 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) evaluate() function
1359 void MatrixShaderEvaluator::evaluate (ShaderEvalContext& evalCtx) const evaluate() function in vkt::sr::__anon29860::MatrixShaderEvaluator
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp452 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
461 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
470 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
479 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
488 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
497 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
506 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
515 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
525 static void evaluate (ShaderEvalContext& evalCtx) in evaluate() function
535 static void evaluate (ShaderEvalContex function
545 static void evaluate (ShaderEvalContext& evalCtx) evaluate() function
555 static void evaluate (ShaderEvalContext& evalCtx) evaluate() function
564 static void evaluate (ShaderEvalContext& evalCtx) evaluate() function
573 static void evaluate (ShaderEvalContext& evalCtx) evaluate() function
582 static void evaluate (ShaderEvalContext& evalCtx) evaluate() function
[all...]
/third_party/node/test/sequential/
H A Dtest-vm-timeout-escape-promise-module-2.js38 await module.evaluate({ timeout: 10 });
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp157 Expected<int64_t> Value = evaluate(C); in dump()
165 Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const { in evaluate() function in CounterMappingContext
177 Expected<int64_t> LHS = evaluate(E.LHS); in evaluate()
180 Expected<int64_t> RHS = evaluate(E.RHS); in evaluate()
246 Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count); in loadFunctionRecord()

Completed in 23 milliseconds

1234