Home
last modified time | relevance | path

Searched refs:eval (Results 301 - 325 of 413) sorted by relevance

1...<<11121314151617

/third_party/python/Tools/scripts/
H A Dpindent.py494 action = eval(action + '_filter')
497 action = eval(action + '_file')
/third_party/skia/third_party/externals/dawn/src/dawn_node/tools/src/cmd/idlgen/
H A Dmain.go110 "Eval": g.eval,
378 // eval executes the sub-template with the given name and arguments, returning
384 func (g *generator) eval(template string, args ...interface{}) (string, error) {
/third_party/python/Lib/test/
H A Dtest_scope.py614 self.assertRaises(TypeError, eval, g.__code__)
646 eval("x + 1")
H A Dtest_decorators.py31 expr = compile(exprstr, "dbcheck-%s" % func.__name__, "eval")
33 if not eval(expr, globals, locals):
186 compile(expr, "test", "eval") # Sanity check.
200 self.assertRaises(exc, eval, code, context)
H A Dtest_bool.py24 self.assertIs(eval(repr(False)), False)
25 self.assertIs(eval(repr(True)), True)
H A Dtest_descr.py77 self.assertEqual(eval(expr, d), res)
94 self.assertEqual(eval(expr, d), res)
108 self.assertEqual(eval(expr, d), res)
218 self.assertEqual(eval(repr(d), {}), d)
219 self.assertEqual(eval(d.__repr__(), {}), d)
231 res = eval(expr, dict)
238 res = eval(expr, dict)
3148 self.assertEqual(eval("c[x] %s c[y]" % op),
3149 eval("x %s y" % op),
3151 self.assertEqual(eval("
[all...]
H A Dtest_decimal.py450 result = str(int(eval(result))) # 'True', 'False' -> '1', '0'
851 self.assertRaises(TypeError, eval, 'Decimal(5) + None', locals())
863 self.assertRaises(TypeError, eval, 'Decimal(5) + "3"', locals())
867 self.assertRaises(TypeError, eval, 'Decimal(5) + 2.2', locals())
897 self.assertEqual(eval('Decimal(10) < E()'), 'gt 10')
898 self.assertEqual(eval('Decimal(10) > E()'), 'lt 10')
899 self.assertEqual(eval('Decimal(10) <= E()'), 'ge 10')
900 self.assertEqual(eval('Decimal(10) >= E()'), 'le 10')
901 self.assertEqual(eval('Decimal(10) == E()'), 'eq 10')
902 self.assertEqual(eval('Decima
[all...]
/third_party/python/Lib/logging/
H A Dconfig.py149 klass = eval(klass, vars(logging))
153 args = eval(args, vars(logging))
155 kwargs = eval(kwargs, vars(logging))
/third_party/node/lib/
H A Drepl.js278 eval_ = options.eval;
309 // TODO(devsnek): Add a test case for custom eval functions.
365 // breakEvalOnSigint affects only the behavior of the default eval().
455 const hostDefinedOptionId = Symbol(`eval:${file}`);
670 self.eval = self._domain.bind(eval_);
928 debug('eval %j', evalCmd);
929 self.eval(evalCmd, self.context, getREPLResourceName(), finish);
1321 // Warning: This eval's code like "foo.bar.baz", so it will run property
1473 // calls, etc.). That is for simplicity and also because we *eval* that
1475 // eval functio
[all...]
/third_party/ffmpeg/tests/fate/
H A Dimage.mak90 $(foreach FMT,$(DDS_FMT),$(eval $(call FATE_IMGSUITE_DDS,$(FMT))))
379 $(foreach CLSP,$(PNG_COLORSPACES),$(eval $(call FATE_IMGSUITE_PNG,$(CLSP))))
411 $(foreach CLSP,$(PSD_COLORSPACES),$(eval $(call FATE_IMGSUITE_PSD,$(CLSP))))
446 $(foreach CLSP,$(SGI_COLORSPACES),$(eval $(call FATE_IMGSUITE_SGI,$(CLSP))))
459 $(foreach TEST,$(SUNRASTER_TESTS),$(eval $(call FATE_IMGSUITE_SUNRASTER,$(TEST))))
486 $(foreach FMT,$(TARGA_FMT),$(eval $(call FATE_IMGSUITE_TARGA,$(FMT))))
H A Dsegment.mak49 $(foreach N,$(FATE_SEGMENT_ALLPARTS),$(eval $(N:%=fate-segment-adts-to-mkv-header-%): tests/data/adts-to-mkv-cated-$(N).mkv))
H A Dlibavresample.mak4 $(eval $(call $(2),$(I),$(J),$(3),$(4),$(5))), \
/third_party/skia/samplecode/
H A DSampleVariableWidthStroker.cpp87 float eval(float t) const { return Eval(*this, t); } in eval() function in __anon18657::ScalarBezCurve
594 const float innerRadius = varWidthInner.eval(tmin);
595 const float outerRadius = varWidth.eval(tmin);
934 const float radiusStart = distFnc.eval(0);
935 const float radiusMid = distFnc.eval(0.5f);
936 const float radiusEnd = distFnc.eval(1);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFileCheck.cpp28 Expected<uint64_t> NumericVariableUse::eval() const { in eval() function in NumericVariableUse
36 Expected<uint64_t> BinaryOperation::eval() const { in eval() function in BinaryOperation
37 Expected<uint64_t> LeftOp = LeftOperand->eval(); in eval()
38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval()
55 Expected<uint64_t> EvaluatedValue = ExpressionASTPointer->eval(); in getResult()
1831 Expected<uint64_t> Value = ExpressionASTPointer->eval(); in defineCmdlineVariables()
/third_party/alsa-lib/src/ucm/
H A Ducm_local.h374 snd_config_t *eval);
/third_party/python/Tools/unicode/
H A Dgenmap_support.py192 row = [eval(e) for e in line.split()]
/third_party/python/Lib/
H A Dbdb.py608 """Debug an expression executed via the eval() function.
620 return eval(expr, globals, locals)
845 val = eval(b.cond, frame.f_globals, frame.f_locals)
855 # if eval fails, most conservative thing is to stop on
/third_party/skia/modules/particles/src/
H A DSkParticleEffect.cpp323 prog.eval(1, args); in runEffectScript()
347 prog.eval(count, args); in runParticleScript()
/third_party/ffmpeg/ffbuild/
H A Dlibrary.mak118 $(eval $(RULES))
/third_party/PyYAML/tests/lib/
H A Dtest_structure.py38 nodes2 = eval(file.read())
/third_party/jerryscript/jerry-debugger/
H A Djerry_client.py168 self.debugger.eval(args)
/third_party/node/lib/internal/
H A Dfreeze_intrinsics.js239 eval,
/third_party/node/lib/internal/modules/esm/
H A Dloader.js207 async eval(
209 url = pathToFileURL(`${process.cwd()}/[eval${++this.evalIndex}]`).href,
/third_party/node/deps/v8/tools/vim/
H A Dninja-build.vim94 pythonx compute_ninja_command_for_targets(vim.eval('a:targets'))
/third_party/node/test/fixtures/wpt/encoding/streams/
H A Drealms.window.js21 eval(event.data);

Completed in 28 milliseconds

1...<<11121314151617