Home
last modified time | relevance | path

Searched defs:target (Results 576 - 600 of 2578) sorted by relevance

1...<<21222324252627282930>>...104

/arkcompiler/runtime_core/static_core/runtime/coroutines/
H A Dstackful_coroutine.cpp129 bool StackfulCoroutineContext::SwitchTo(StackfulCoroutineContext *target) in SwitchTo() argument
/arkcompiler/ets_frontend/ets2panda/compiler/base/
H A Ddestructuring.cpp88 const ir::Expression *target = element; in GenElement() local
155 const ir::Expression *target = propExpr->Value(); in GetAssignmentTarget() local
[all...]
/arkcompiler/ets_frontend/ets2panda/checker/types/
H A Dtype.cpp88 bool Type::AssignmentSource([[maybe_unused]] TypeRelation *relation, [[maybe_unused]] Type *target) in AssignmentSource() argument
100 void Type::Cast(TypeRelation *const relation, [[maybe_unused]] Type *target) in Cast() argument
115 void Type::IsSubtypeOf(TypeRelation *const relation, [[maybe_unused]] Type *target) in IsSubtypeOf() argument
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_reflect.cpp29 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); in ReflectApply() local
35 JSTaggedValue BuiltinsReflect::ReflectApplyInternal(JSThread *thread, JSHandle<JSTaggedValue> target, in ReflectApplyInternal() argument
68 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectConstruct() local
88 ReflectConstructInternal(JSThread *thread, JSHandle<JSTaggedValue> target, JSHandle<TaggedArray> args, JSHandle<JSTaggedValue> newTarget) ReflectConstructInternal() argument
109 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectDefineProperty() local
133 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectDeleteProperty() local
177 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectGetOwnPropertyDescriptor() local
218 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectHas() local
223 ReflectHasInternal(JSThread *thread, JSHandle<JSTaggedValue> target, JSHandle<JSTaggedValue> key) ReflectHasInternal() argument
245 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectIsExtensible() local
261 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectOwnKeys() local
281 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectPreventExtensions() local
324 JSHandle<JSTaggedValue> target = GetCallArg(argv, 0); ReflectSetPrototypeOf() local
[all...]
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H A Dbuiltins_function_test.cpp170 JSHandle<JSFunction> target = factory->NewJSFunction(env); in HWTEST_F_L0() local
211 JSHandle<JSFunction> target in HWTEST_F_L0() local
261 JSHandle<JSFunction> target = factory->NewJSFunction(env); HWTEST_F_L0() local
[all...]
H A Dbuiltins_finalization_registry_test.cpp91 void KeyValueCommon(JSThread* thread, JSHandle<JSTaggedValue>& target) in KeyValueCommon() argument
168 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
193 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
233 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
265 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
321 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
351 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
381 JSTaggedValue target = JSTaggedValue::Undefined(); HWTEST_F_L0() local
[all...]
H A Dbuiltins_reflect_test.cpp75 JSHandle<JSFunction> target = factory->NewJSFunction(env, reinterpret_cast<void *>(TestReflectApply)); in HWTEST_F_L0() local
119 JSHandle<JSFunction> target = JSHandle<JSFunction>::Cast(env->GetStringFunction()); in HWTEST_F_L0() local
150 JSHandle<JSObject> target = HWTEST_F_L0() local
201 JSHandle<JSObject> target = HWTEST_F_L0() local
230 JSHandle<JSObject> target = HWTEST_F_L0() local
258 JSHandle<JSObject> target = HWTEST_F_L0() local
302 JSHandle<JSObject> target = HWTEST_F_L0() local
328 JSHandle<JSObject> target = HWTEST_F_L0() local
354 JSHandle<JSObject> target = HWTEST_F_L0() local
376 JSHandle<JSObject> target = HWTEST_F_L0() local
426 JSHandle<JSObject> target = HWTEST_F_L0() local
449 JSHandle<JSObject> target = HWTEST_F_L0() local
478 JSHandle<JSObject> target = HWTEST_F_L0() local
[all...]
H A Dbuiltins_shared_function_test.cpp185 JSHandle<JSFunction> target = factory->NewSFunction(env); in HWTEST_F_L0() local
207 JSHandle<JSFunction> target = factory->NewSFunction(env); in HWTEST_F_L0() local
238 JSHandle<JSFunction> target in HWTEST_F_L0() local
[all...]
/arkcompiler/ets_frontend/ets2panda/checker/
H A Dchecker.cpp120 bool Checker::IsAllTypesAssignableTo(Type *source, Type *target) in IsAllTypesAssignableTo() argument
132 bool Checker::IsTypeIdenticalTo(Type *source, Type *target) in IsTypeIdenticalTo() argument
137 bool Checker::IsTypeIdenticalTo(Type *source, Type *target, const std::string &errMsg, in IsTypeIdenticalTo() argument
147 bool Checker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> list, in IsTypeIdenticalTo() argument
157 IsTypeAssignableTo(Type *source, Type *target) IsTypeAssignableTo() argument
162 IsTypeAssignableTo(Type *source, Type *target, const std::string &errMsg, const lexer::SourcePosition &errPos) IsTypeAssignableTo() argument
172 IsTypeAssignableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> list, const lexer::SourcePosition &errPos) IsTypeAssignableTo() argument
182 IsTypeComparableTo(Type *source, Type *target) IsTypeComparableTo() argument
187 IsTypeComparableTo(Type *source, Type *target, const std::string &errMsg, const lexer::SourcePosition &errPos) IsTypeComparableTo() argument
197 IsTypeComparableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> list, const lexer::SourcePosition &errPos) IsTypeComparableTo() argument
207 AreTypesComparable(Type *source, Type *target) AreTypesComparable() argument
212 IsTypeEqualityComparableTo(Type *source, Type *target) IsTypeEqualityComparableTo() argument
[all...]
/arkcompiler/ets_frontend/es2panda/compiler/core/
H A DdynamicContext.cpp26 DynamicContext::DynamicContext(PandaGen *pg, LabelTarget target) : pg_(pg), target_(target), prev_(pg_->dynamicContext_) in DynamicContext() argument
57 LexEnvContext::LexEnvContext(VariableEnvScope *envScope, PandaGen *pg, LabelTarget target) in LexEnvContext() argument
110 IteratorContext::IteratorContext(PandaGen *pg, const Iterator &iterator, LabelTarget target) in IteratorContext() argument
H A DdynamicContext.h87 explicit LabelContext(PandaGen *pg, LabelTarget target) : DynamicContext(pg, target) {} in LabelContext() argument
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H A Dconversion.cpp25 void Identity(TypeRelation *const relation, Type *const source, Type *const target) in Identity() argument
30 void WideningPrimitive(TypeRelation *const relation, Type *const source, Type *const target) in WideningPrimitive() argument
37 void NarrowingPrimitive(TypeRelation *const relation, Type *const source, Type *const target) in NarrowingPrimitive() argument
44 void WideningNarrowingPrimitive(TypeRelation *const relation, ByteType *const source, CharType *const target) in WideningNarrowingPrimitive() argument
54 WideningReference(TypeRelation *const relation, ETSObjectType *const source, ETSObjectType *const target) WideningReference() argument
59 WideningReference(TypeRelation *const relation, ETSArrayType *const source, ETSObjectType *const target) WideningReference() argument
64 WideningReference(TypeRelation *const relation, ETSArrayType *const source, ETSArrayType *const target) WideningReference() argument
71 IsAllowedNarrowingReferenceConversionObjectObject(TypeRelation *const relation, ETSObjectType *const source, ETSObjectType *const target) IsAllowedNarrowingReferenceConversionObjectObject() argument
117 IsAllowedNarrowingReferenceConversion(TypeRelation *const relation, Type *const source, Type *const target) IsAllowedNarrowingReferenceConversion() argument
187 IsUncheckedNarrowingReferenceConversion([[maybe_unused]] TypeRelation *const relation, [[maybe_unused]] Type *const source, [[maybe_unused]] Type *const target) IsUncheckedNarrowingReferenceConversion() argument
208 NarrowingReferenceImpl(TypeRelation *const relation, Type *const source, Type *const target) NarrowingReferenceImpl() argument
225 NarrowingReference(TypeRelation *const relation, ETSObjectType *const source, ETSObjectType *const target) NarrowingReference() argument
230 NarrowingReference(TypeRelation *const relation, ETSArrayType *const source, ETSArrayType *const target) NarrowingReference() argument
240 NarrowingReference(TypeRelation *const relation, ETSObjectType *const source, ETSArrayType *const target) NarrowingReference() argument
281 UnboxingWideningPrimitive(TypeRelation *const relation, ETSObjectType *const source, Type *const target) UnboxingWideningPrimitive() argument
292 UnboxingNarrowingPrimitive(TypeRelation *const relation, ETSObjectType *const source, Type *const target) UnboxingNarrowingPrimitive() argument
302 UnboxingWideningNarrowingPrimitive(TypeRelation *const relation, ETSObjectType *const source, Type *const target) UnboxingWideningNarrowingPrimitive() argument
312 NarrowingReferenceUnboxing(TypeRelation *const relation, ETSObjectType *const source, Type *const target) NarrowingReferenceUnboxing() argument
326 BoxingWideningReference(TypeRelation *const relation, Type *const source, ETSObjectType *const target) BoxingWideningReference() argument
[all...]
/arkcompiler/ets_frontend/es2panda/compiler/base/
H A Ddestructuring.cpp98 const ir::Expression *target = element; in GenArray() local
135 const ir::Expression *target = propExpr->Value(); in GenObjectProperty() local
[all...]
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
H A DetsEnumType.cpp32 bool ETSEnumType::AssignmentSource(TypeRelation *const relation, Type *const target) in AssignmentSource() argument
81 Cast(TypeRelation *relation, Type *target) Cast() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/
H A Djs_finalization_registry.cpp49 void JSFinalizationRegistry::Register(JSThread *thread, JSHandle<JSTaggedValue> target, in Register() argument
/arkcompiler/toolchain/tooling/
H A Ddispatcher.cpp172 auto target = std::make_unique<TargetImpl>(); in Dispatcher() local
/base/hiviewdfx/hiview/base/utility/
H A Dfreeze_json_util.cpp32 bool IncludeWith(std::list<std::string> list, const std::string& target) in IncludeWith() argument
170 bool HasBeenWrapped(const std::string& target) in HasBeenWrapped() argument
/base/hiviewdfx/hiview/plugins/faultlogger/common/
H A Dfaultlog_util.cpp35 std::string GetFormatedTime(uint64_t target) in GetFormatedTime() argument
/base/hiviewdfx/hidumper/frameworks/native/src/common/
H A Ddump_cfg.cpp118 bool DumpCfg::HasPid(const std::string &target) in HasPid() argument
123 bool DumpCfg::HasCpuId(const std::string &target) in HasCpuId() argument
/base/hiviewdfx/hidumper/frameworks/native/src/executor/
H A Dfile_stream_dumper.cpp45 std::string target = ptrDumpCfg_->target_; in PreExecute() local
169 void FileStreamDumper::BuildFileNames(const std::string& target, bool arg_pid, int pid, in BuildFileNames() argument
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H A Dfusion_device_profile.cpp63 static void Destruct(CIProfileEvents* target) in Destruct() argument
/base/notification/distributed_notification_service/test/fuzztest/reminderrequestcalendar_fuzzer/
H A Dreminderrequestcalendar_fuzzer.cpp72 struct tm target; in DoSomethingInterestingWithMyAPI() local
/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dreminder_request_alarm.cpp98 const time_t target = mktime(&tar); in GetNextTriggerTime() local
/base/msdp/device_status/test/unittest/utils/src/
H A Dutility_test.cpp75 std::string target = "0"; in HWTEST_F() local
89 std::string target = "123"; in HWTEST_F() local
103 std::string target = " 0"; in HWTEST_F() local
117 std::string target = "-0"; in HWTEST_F() local
131 std::string target = "-1"; in HWTEST_F() local
145 std::string target = "-10"; HWTEST_F() local
159 std::string target = "123"; HWTEST_F() local
173 std::string target = "-123"; HWTEST_F() local
187 std::string target = "0123"; HWTEST_F() local
201 std::string target = "A01"; HWTEST_F() local
215 std::string target = "A-10"; HWTEST_F() local
229 std::string target = " 123A"; HWTEST_F() local
243 std::string target = " 123 A"; HWTEST_F() local
[all...]
/base/msdp/device_status/utils/common/src/
H A Dutility.cpp109 bool Utility::IsInteger(const std::string &target) in IsInteger() argument

Completed in 19 milliseconds

1...<<21222324252627282930>>...104