Lines Matching refs:noexcept

123     const char* what() const noexcept override  in what()
179 constexpr Any() noexcept in Any()
190 …__attribute__((no_sanitize("cfi"))) Any(Any &&other) noexcept : functionTable_(other.functionTable… in Any()
218 Any& operator=(Any&& other) noexcept
247 static constexpr std::string_view GetTypeName() noexcept in GetTypeName()
254 static bool IsSameTypeWith(const Any& other) noexcept in IsSameTypeWith()
310 void __attribute__((no_sanitize("cfi"))) Reset() noexcept in Reset()
324 void Swap(Any& other) noexcept in Swap()
336 bool HasValue() const noexcept in HasValue()
347 const std::type_info& Type() const noexcept in Type()
355 std::string_view __attribute__((no_sanitize("cfi"))) TypeName() const noexcept in TypeName()
362 bool __attribute__((no_sanitize("cfi"))) ToParcel(MessageParcel &parcel) const noexcept in ToParcel()
369 bool __attribute__((no_sanitize("cfi"))) FromParcel(MessageParcel &parcel) const noexcept in FromParcel()
376 bool SameTypeWith(const std::type_info& otherInfo) const noexcept in SameTypeWith()
384 …ool __attribute__((no_sanitize("cfi"))) SameTypeWith(std::string_view otherTypeName) const noexcept in SameTypeWith()
393 bool __attribute__((no_sanitize("cfi"))) SameTypeWith(const Any &other) const noexcept in SameTypeWith()
404 friend const T* AnyCast(const Any* operand) noexcept;
406 friend T* AnyCast(Any* operand) noexcept;
408 friend bool AnyCast(const Any* operand, T& value) noexcept;
421 const std::type_info& (*type)() noexcept;
423 std::string_view (*type_name)() noexcept;
424 bool (*toParcel)(const Any *operand, MessageParcel& parcel) noexcept;
425 bool (*fromParcel)(Any *operand, MessageParcel& parcel) noexcept;
427 void (*destroy)(Storage&) noexcept;
428 void (*copy)(Storage&, const Storage&) noexcept;
429 void (*move)(Storage&, Storage&) noexcept;
430 void* (*getPtr)(Storage&) noexcept;
431 const void* (*getConstPtr)(const Storage&) noexcept;
433 static bool BaseTypesToParcel(const Any *operand, MessageParcel& parcel) noexcept;
435 static int BaseTypesFromParcel(Any *operand, MessageParcel& parcel) noexcept;
437 static std::string_view GetTypeNameFromFunctionInfo(const char* functionInfo) noexcept;
442 static const std::type_info& Type() noexcept in Type()
447 static std::string_view TypeName() noexcept
452 static bool ToParcel(const Any *operand, MessageParcel& parcel) noexcept
476 static bool FromParcel(Any *operand, MessageParcel& parcel) noexcept
487 static void Destroy(Storage& storage) noexcept in Destroy()
492 static void Copy(Storage& dest, const Storage& source) noexcept in Copy()
498 static void Move(Storage& dest, Storage& source) noexcept in Move()
504 static const void* GetConstPtr(const Storage& storage) noexcept in GetConstPtr()
509 static void* GetPtr(Storage& storage) noexcept in GetPtr()
518 static const std::type_info& Type() noexcept in Type()
523 static std::string_view TypeName() noexcept
528 static bool ToParcel(const Any *operand, MessageParcel& parcel) noexcept
552 static bool FromParcel(Any *operand, MessageParcel& parcel) noexcept
563 static void Destroy(Storage& storage) noexcept in Destroy()
568 static void Copy(Storage& dest, const Storage& source) noexcept in Copy()
574 static void Move(Storage& dest, Storage& source) noexcept in Move()
581 static const void* GetConstPtr(const Storage& storage) noexcept in GetConstPtr()
586 static void* GetPtr(Storage& storage) noexcept in GetPtr()
595 static const std::type_info& Type() noexcept in Type()
600 static std::string_view TypeName() noexcept
605 static bool ToParcel(const Any *operand, MessageParcel& parcel) noexcept
629 static bool FromParcel(Any *operand, MessageParcel& parcel) noexcept
640 static void Destroy(Storage& storage) noexcept in Destroy()
645 static void Copy(Storage& dest, const Storage& source) noexcept in Copy()
649 static void Move(Storage& dest, Storage& source) noexcept in Move()
654 static const void* GetConstPtr(const Storage& storage) noexcept in GetConstPtr()
658 static void* GetPtr(Storage& storage) noexcept in GetPtr()
690 bool IsFunctionTableValid() const noexcept in IsFunctionTableValid()
710 void __attribute__((no_sanitize("cfi"))) MoveFrom(Any &&other) noexcept in MoveFrom()
720 ValueType* Cast() noexcept in Cast()
740 const ValueType* Cast() const noexcept in Cast()
774 const ValueType* AnyCast(const Any* operand) noexcept in Cast()
793 bool AnyCast(const Any* operand, ValueType& value) noexcept in Cast()
824 ValueType* AnyCast(Any* operand) noexcept in Cast()
948 inline void swap(OHOS::Media::Any& lhs, OHOS::Media::Any& rhs) noexcept in swap()