/third_party/python/Tools/scripts/ |
H A D | pindent.py | 494 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 D | main.go | 110 "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 D | test_scope.py | 614 self.assertRaises(TypeError, eval, g.__code__) 646 eval("x + 1")
|
H A D | test_decorators.py | 31 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 D | test_bool.py | 24 self.assertIs(eval(repr(False)), False) 25 self.assertIs(eval(repr(True)), True)
|
H A D | test_descr.py | 77 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 D | test_decimal.py | 450 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 D | config.py | 149 klass = eval(klass, vars(logging)) 153 args = eval(args, vars(logging)) 155 kwargs = eval(kwargs, vars(logging))
|
/third_party/node/lib/ |
H A D | repl.js | 278 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 D | image.mak | 90 $(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 D | segment.mak | 49 $(foreach N,$(FATE_SEGMENT_ALLPARTS),$(eval $(N:%=fate-segment-adts-to-mkv-header-%): tests/data/adts-to-mkv-cated-$(N).mkv))
|
H A D | libavresample.mak | 4 $(eval $(call $(2),$(I),$(J),$(3),$(4),$(5))), \
|
/third_party/skia/samplecode/ |
H A D | SampleVariableWidthStroker.cpp | 87 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 D | FileCheck.cpp | 28 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 D | ucm_local.h | 374 snd_config_t *eval);
|
/third_party/python/Tools/unicode/ |
H A D | genmap_support.py | 192 row = [eval(e) for e in line.split()]
|
/third_party/python/Lib/ |
H A D | bdb.py | 608 """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 D | SkParticleEffect.cpp | 323 prog.eval(1, args); in runEffectScript() 347 prog.eval(count, args); in runParticleScript()
|
/third_party/ffmpeg/ffbuild/ |
H A D | library.mak | 118 $(eval $(RULES))
|
/third_party/PyYAML/tests/lib/ |
H A D | test_structure.py | 38 nodes2 = eval(file.read())
|
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client.py | 168 self.debugger.eval(args)
|
/third_party/node/lib/internal/ |
H A D | freeze_intrinsics.js | 239 eval,
|
/third_party/node/lib/internal/modules/esm/ |
H A D | loader.js | 207 async eval( 209 url = pathToFileURL(`${process.cwd()}/[eval${++this.evalIndex}]`).href,
|
/third_party/node/deps/v8/tools/vim/ |
H A D | ninja-build.vim | 94 pythonx compute_ninja_command_for_targets(vim.eval('a:targets'))
|
/third_party/node/test/fixtures/wpt/encoding/streams/ |
H A D | realms.window.js | 21 eval(event.data);
|