/ohos5.0/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 argument 38 #define BT_DISALLOW_ASSIGN(TypeName) TypeName &operator=(const TypeName &) = delete argument 42 #define BT_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 43 BT_DISALLOW_COPY(TypeName); \ 44 BT_DISALLOW_ASSIGN(TypeName) 48 #define BT_DISALLOW_MOVE_AND_ASSIGN(TypeName) \ argument 49 TypeName(TypeName &&) noexcept = delete; \ 50 TypeName &operator=(TypeName &&) noexcept = delete
|
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/session/cpp/include/ |
H A D | CommDefs.h | 22 #define NO_COPY_AND_ASSIGN(TypeName) \ argument 23 TypeName(const TypeName &) = delete; \ 24 TypeName(TypeName &&) = delete; \ 25 TypeName &operator = (const TypeName &) = delete; \ 26 TypeName &operator = (TypeName &&) = delete;
|
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_types.h | 32 #define BLUETOOTH_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 33 TypeName(const TypeName &) = delete; \ 34 TypeName &operator=(const TypeName &) = delete 36 #define BLUETOOTH_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 37 TypeName() = delete; \ 38 BLUETOOTH_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/memory/ |
H A D | ace_type.h | 85 static const char* TypeName(const AceType* rawPtr) in TypeName() function 87 return TypeInfoHelper::TypeName(rawPtr); in TypeName() 90 static const char* TypeName(const RefPtr<T>& ptr) in TypeName() function 92 return TypeName(AceType::RawPtr(ptr)); in TypeName() 94 static const char* TypeName(const AceType& instance) in TypeName() function 96 return TypeInfoHelper::TypeName(instance); in TypeName() 106 static const char* TypeName() in TypeName() function 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 123 static const char* TypeName(const TypeInfoBase& instance) in TypeName() function 125 return TypeName(&instance); in TypeName() 143 static const char* TypeName() in TypeName() function 145 return T::TypeName(); in TypeName()
|
H A D | memory_monitor.h | 74 return TypeInfoHelper::TypeName(rawPtr);
|
/ohos5.0/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) \ argument 23 TypeName(const TypeName &) = delete; \ 24 TypeName (&operator=(const TypeName &)) = delete;
|
/ohos5.0/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) \ argument 20 TypeName(const TypeName&) = delete; \ 21 TypeName& operator=(const TypeName&) = delete
|
/ohos5.0/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 argument 42 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 43 TypeName(const TypeName &); \ 44 void operator = (const TypeName &)
|
/ohos5.0/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())); in BaseTypesToParcel()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | stepper_model_impl.cpp | 60 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnFinish() 70 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnSkip() 80 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnChange() 90 LOGW("Failed to get '%{public}s' in view stack", AceType::TypeName<StepperComponent>()); in SetOnNext() 100 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()
|
/ohos5.0/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) \ argument 35 TypeName(const TypeName &) = delete; \ 36 void operator=(const TypeName &) = delete 38 #define MEDIA_SERVICE_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 39 TypeName() = delete; \ 40 MEDIA_SERVICE_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/ohos5.0/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()
|
/ohos5.0/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()
|
/ohos5.0/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"); 126 ASSERT_EQ(AceType::TypeName(pattrn), "Pattern");
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/ |
H A D | recognizer_group.cpp | 219 … hittedRecognizerInfo.emplace(AceType::TypeName(item), std::list<NG::TouchTestResultInfo>()); in AddHittedRecognizerType() 224 … hittedRecognizerInfo.emplace(AceType::TypeName(item), std::list<NG::TouchTestResultInfo>()); in AddHittedRecognizerType() 227 hittedRecognizerInfo[AceType::TypeName(item)].emplace_back(NG::TouchTestResultInfo { in AddHittedRecognizerType()
|
/ohos5.0/foundation/multimedia/media_foundation/engine/include/plugin/common/ |
H A D | any.h | 269 std::string_view TypeName() const noexcept in TypeName() function 301 return IsSameType(functionTable_->type_name(), other.TypeName()); in SameTypeWith() 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()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ |
H A D | view_stack_processor.cpp | 429 tag = tag.empty() ? (name.empty() ? AceType::TypeName(component) : name) : tag; in Push() 452 auto type = AceType::TypeName(GetMainComponent()); in ShouldPopImmediately() 457 return ((type && strcmp(type, AceType::TypeName<TextSpanComponent>()) == 0)|| in ShouldPopImmediately() 515 auto type = AceType::TypeName(GetMainComponent()); in PopContainer() 519 if ((componentGroup && type && strcmp(type, AceType::TypeName<TextSpanComponent>()) != 0) || in PopContainer() 526 (type && strcmp(type, AceType::TypeName<TextSpanComponent>()) == 0)) { in PopContainer() 531 type = AceType::TypeName(GetMainComponent()); in PopContainer()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/input_monitor/src/ |
H A D | js_input_monitor.cpp | 65 enum TypeName : int32_t { enum 1258 case TypeName::TOUCH: { in OnPointerEventInJsThread() 1262 case TypeName::MOUSE: { in OnPointerEventInJsThread() 1266 case TypeName::ROTATE: { in OnPointerEventInJsThread() 1274 case TypeName::PINCH: { in OnPointerEventInJsThread() 1282 case TypeName::THREE_FINGERS_SWIPE: { in OnPointerEventInJsThread() 1290 case TypeName::FOUR_FINGERS_SWIPE: { in OnPointerEventInJsThread() 1298 case TypeName::THREE_FINGERS_TAP: { in OnPointerEventInJsThread() 1304 case TypeName::SWIPE_INWARD: { in OnPointerEventInJsThread() 1313 case TypeName::FINGERPRINT: { in OnPointerEventInJsThread()
|
/ohos5.0/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()
|
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/meta/ |
H A D | any.h | 355 std::string_view __attribute__((no_sanitize("cfi"))) TypeName() const noexcept in TypeName() function 398 return IsSameType(functionTable_->type_name(), other.TypeName()); in SameTypeWith() 447 static std::string_view TypeName() noexcept 523 static std::string_view TypeName() noexcept 600 static std::string_view TypeName() noexcept 677 .type_name = DetailFunctionTable::TypeName, in GetFunctionTable()
|
/ohos5.0/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()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
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()
|
H A D | sole_child_element.cpp | 31 LOGW("Should be sole child component, but %s", AceType::TypeName(component_)); in PerformBuild()
|