Home
last modified time | relevance | path

Searched defs:valid (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/runtime_core/taihe/compiler/taihe/semantics/
Danalysis.py370 valid = lambda val: is_int(val) and -(2**7) <= val < 2**7 function
374 valid = lambda val: is_int(val) and -(2**15) <= val < 2**15 function
378 valid = lambda val: is_int(val) and -(2**31) <= val < 2**31 function
382 valid = lambda val: is_int(val) and -(2**63) <= val < 2**63 function
386 valid = lambda val: is_int(val) and 0 <= val < 2**8 function
390 valid = lambda val: is_int(val) and 0 <= val < 2**16 function
394 valid = lambda val: is_int(val) and 0 <= val < 2**32 function
398 valid = lambda val: is_int(val) and 0 <= val < 2**64 function
402 valid = lambda val: isinstance(val, bool) function
406 valid = lambda val: isinstance(val, float) function
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dconstant_folding.h89 #define DECLARE_VISIT_OP(name, valid) \ argument
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dleb128.h69 bool valid = true; variable
/arkcompiler/runtime_core/libpandabase/utils/
Dleb128.h100 bool valid = true; variable
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
Dgc_intrusion.cpp396 bool valid = true; in PropagateRelocs() local
/arkcompiler/ets_runtime/ecmascript/
Djs_proxy.cpp353 …bool valid = JSObject::IsCompatiblePropertyDescriptor(targetHandle->IsExtensible(thread), resultDe… in GetOwnProperty() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dlse.cpp554 bool valid = true; in FinalizeLoopsWithPhiCands() local
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DtypeCheckingHelpers.cpp1631 const bool valid = ResolveLambdaArgumentType(signature, argument, idx, idx, inferenceFlags); in TypeInference() local
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_object_stub_builder.cpp504 Label valid(env); in HasOwnProperty() local
Dbuiltins_typedarray_stub_builder.cpp3325 Label valid(env); in AllocateTypedArrayBuffer() local
/arkcompiler/ets_runtime/ecmascript/serializer/tests/
Dinter_op_serializer_test.cpp1092 void WrapXRefObject(Local<ObjectRef> object, void *attachFunc, bool valid) in WrapXRefObject()
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2 …t="utf8"),!Buffer.isEncoding(t))throw new TypeError('"encoding" must be a valid string encoding');… property