/foundation/communication/bluetooth_service/services/bluetooth/service/src/base/ |
H A D | base_def.h | 34 #define BT_DISALLOW_COPY(TypeName) TypeName(const TypeName &) = delete 38 #define BT_DISALLOW_ASSIGN(TypeName) TypeName &operator=(const TypeName &) = delete 42 #define BT_DISALLOW_COPY_AND_ASSIGN(TypeName) \ 43 BT_DISALLOW_COPY(TypeName); \ 44 BT_DISALLOW_ASSIGN(TypeName) 48 #define BT_DISALLOW_MOVE_AND_ASSIGN(TypeName) \ [all...] |
/foundation/communication/dsoftbus/sdk/transmission/session/cpp/include/ |
H A D | CommDefs.h | 22 #define NO_COPY_AND_ASSIGN(TypeName) \ 23 TypeName(const TypeName &) = delete; \ 24 TypeName(TypeName &&) = delete; \ 25 TypeName &operator = (const TypeName &) = delete; \ 26 TypeName &operator = (TypeName &&) = delete;
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_types.h | 32 #define BLUETOOTH_DISALLOW_COPY_AND_ASSIGN(TypeName) \ 33 TypeName(const TypeName &) = delete; \ 34 TypeName &operator=(const TypeName &) = delete 36 #define BLUETOOTH_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ 37 TypeName() = delete; \ 38 BLUETOOTH_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap/ |
H A D | ap_macro.h | 22 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ 23 TypeName(const TypeName &) = delete; \ 24 TypeName (&operator=(const TypeName &)) = delete;
|
/foundation/CastEngine/castengine_cast_plus_stream/src/utils/include/ |
H A D | utils.h | 30 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ 31 TypeName(const TypeName &); \ 32 void operator = (const TypeName &) 36 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName) 40 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ 41 TypeName(); \ 42 DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/utils/include/ |
H A D | utils.h | 30 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
31 TypeName(const TypeName &); \
32 void operator = (const TypeName &)
36 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)
40 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
41 TypeName(); \
42 DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/txt/ |
H A D | utils.h | 19 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ 20 TypeName(const TypeName&) = delete; \ 21 TypeName& operator=(const TypeName&) = delete
|
/foundation/arkui/ace_engine/frameworks/base/memory/ |
H A D | ace_type.h | 85 static const char* TypeName(const AceType* rawPtr) in TypeName() function in OHOS::Ace::AceType 87 return TypeInfoHelper::TypeName(rawPtr); in TypeName() 90 static const char* TypeName(const RefPtr<T>& ptr) in TypeName() function in OHOS::Ace::AceType 92 return TypeName(AceType::RawPtr(ptr)); in TypeName() 94 static const char* TypeName(const AceType& instance) in TypeName() function in OHOS::Ace::AceType 96 return TypeInfoHelper::TypeName(instance); in TypeName() 106 static const char* TypeName() in TypeName() function in OHOS::Ace::AceType 108 return TypeInfoHelper::TypeName<T>(); in TypeName()
|
H A D | type_info_base.h | 27 static const char* TypeName() \ 33 static TypeInfoBase::IdType myTypeId = std::hash<std::string> {}(TypeName()); \ 64 return TypeName(); \ 119 static const char* TypeName(const TypeInfoBase* rawPtr) in TypeName() function in OHOS::Ace::final 123 static const char* TypeName(const TypeInfoBase& instance) in TypeName() function in OHOS::Ace::final 125 return TypeName(&instance); in TypeName() 143 static const char* TypeName() in TypeName() function in OHOS::Ace::final 145 return T::TypeName(); in TypeName()
|
H A D | memory_monitor.h | 74 return TypeInfoHelper::TypeName(rawPtr); in Name()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/include/ |
H A D | zip_utils.h | 35 #define DISALLOW_ASSIGN(TypeName) void operator=(const TypeName &) = delete 42 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ 43 TypeName(const TypeName &); \ 44 void operator = (const TypeName &)
|
/foundation/multimedia/media_foundation/src/meta/ |
H A D | any.cpp | 33 typeMap[std::string(defaultBool.TypeName())] = AnyValueType::BOOL; in GetBaseTypesMap() 35 typeMap[std::string(defaultInt32.TypeName())] = AnyValueType::INT32_T; in GetBaseTypesMap() 37 typeMap[std::string(defaultInt64.TypeName())] = AnyValueType::INT64_T; in GetBaseTypesMap() 39 typeMap[std::string(defaultFoalt.TypeName())] = AnyValueType::FLOAT; in GetBaseTypesMap() 41 typeMap[std::string(defaultDouble.TypeName())] = AnyValueType::DOUBLE; in GetBaseTypesMap() 43 typeMap[std::string(defaultString.TypeName())] = AnyValueType::STRING; in GetBaseTypesMap() 45 typeMap[std::string(defaultVecUint8.TypeName())] = AnyValueType::VECTOR_UINT8; in GetBaseTypesMap() 56 auto iter = GetBaseTypesMap().find(std::string(operand->TypeName())); 149 * Get TypeName From function info.
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | stepper_model_impl.cpp | 57 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnFinish() 67 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnSkip() 77 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnChange() 87 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnNext() 97 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnPrevious()
|
H A D | list_item_group_model_impl.cpp | 47 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<V2::ListItemGroupComponent>()); in SetHeader() 63 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<V2::ListItemGroupComponent>()); in SetFooter()
|
/foundation/arkui/ace_engine/frameworks/core/components/ifelse/ |
H A D | if_else_element.cpp | 44 LOGE("%{public}s is not a IfElseElement. Internal Error!", AceType::TypeName(element)); in ComponentToElementLocalizedUpdate() 50 LOGE("%{public}s is not a IfElseComponent. Internal Error!", AceType::TypeName(component)); in ComponentToElementLocalizedUpdate()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/plugin/ |
H A D | plugin_node_test_ng.cpp | 117 ASSERT_EQ(AceType::TypeName(diffPluginNode->GetPattern()), "PluginPattern"); in HWTEST_F() 126 ASSERT_EQ(AceType::TypeName(pattrn), "Pattern"); in HWTEST_F()
|
/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/stub/ |
H A D | media_service.h | 34 #define MEDIA_SERVICE_DISALLOW_COPY_AND_ASSIGN(TypeName) \ 35 TypeName(const TypeName &) = delete; \ 36 void operator=(const TypeName &) = delete 38 #define MEDIA_SERVICE_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ 39 TypeName() = delete; \ 40 MEDIA_SERVICE_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/ |
H A D | recognizer_group.cpp | 215 hittedRecognizerInfo.emplace(AceType::TypeName(item), std::list<NG::TouchTestResultInfo>()); in AddHittedRecognizerType() 220 hittedRecognizerInfo.emplace(AceType::TypeName(item), std::list<NG::TouchTestResultInfo>()); in AddHittedRecognizerType() 223 hittedRecognizerInfo[AceType::TypeName(item)].emplace_back(NG::TouchTestResultInfo { in AddHittedRecognizerType()
|
/foundation/arkui/ace_engine/frameworks/core/components/rich_text/ |
H A D | rosen_render_rich_text.cpp | 36 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/layers/ |
H A D | layer.cpp | 37 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children_.size()); in DumpTree()
|
/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | gesture_referee.cpp | 128 LOGI("gesture referee ready to notify block for %{public}s", AceType::TypeName(recognizer)); in HandleAcceptDisposal() 133 LOGI("gesture referee accept %{public}s of id %{public}zu", AceType::TypeName(recognizer), touchId_); in HandleAcceptDisposal() 146 LOGI("gesture referee ready to notify block for %{public}s", AceType::TypeName(recognizer)); in HandlePendingDisposal() 151 LOGI("gesture referee ready to notify pending for %{public}s", AceType::TypeName(recognizer)); in HandlePendingDisposal() 158 LOGI("gesture referee ready to notify reject for %{public}s", AceType::TypeName(recognizer)); in HandleRejectDisposal()
|
/foundation/multimedia/media_foundation/engine/include/plugin/common/ |
H A D | any.h | 269 std::string_view TypeName() const noexcept 301 return IsSameType(functionTable_->type_name(), other.TypeName()); 343 static std::string_view TypeName() noexcept 385 static std::string_view TypeName() noexcept 428 static std::string_view TypeName() noexcept 471 .type_name = DetailFunctionTable::TypeName, in GetFunctionTable()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | sole_child_element.cpp | 31 LOGW("Should be sole child component, but %s", AceType::TypeName(component_)); in PerformBuild()
|
H A D | rosen_render_context.cpp | 53 std::string name = AceType::TypeName(node); in Repaint() 86 std::string name = AceType::TypeName(child); in PaintChild()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ |
H A D | view_stack_processor.cpp | 421 tag = tag.empty() ? (name.empty() ? AceType::TypeName(component) : name) : tag; in Push() 444 auto type = AceType::TypeName(GetMainComponent()); in ShouldPopImmediately() 449 return ((type && strcmp(type, AceType::TypeName<TextSpanComponent>()) == 0) || in ShouldPopImmediately() 507 auto type = AceType::TypeName(GetMainComponent()); in PopContainer() 511 if ((componentGroup && type && strcmp(type, AceType::TypeName<TextSpanComponent>()) != 0) || in PopContainer() 518 (type && strcmp(type, AceType::TypeName<TextSpanComponent>()) == 0)) { in PopContainer() 523 type = AceType::TypeName(GetMainComponent()); in PopContainer()
|