Lines Matching refs:Any
21 constexpr OHOS::HiviewDFX::HiLogLabel LABEL = { LOG_CORE, LOG_DOMAIN_FOUNDATION, "Any" };
32 Any defaultBool = (bool)true;
34 Any defaultInt32 = (int32_t)0;
36 Any defaultInt64 = (int64_t)0;
38 Any defaultFoalt = (float)0.0;
40 Any defaultDouble = (double)0.0;
42 Any defaultString = std::string();
44 Any defaultVecUint8 = std::vector<uint8_t>();
54 bool Any::BaseTypesToParcel(const Any *operand, MessageParcel &parcel) noexcept
99 int Any::BaseTypesFromParcel(Any *operand, MessageParcel &parcel) noexcept
104 Any tmp(parcel.ReadBool());
109 Any tmp(parcel.ReadInt32());
114 Any tmp(parcel.ReadInt64());
119 Any tmp(parcel.ReadFloat());
124 Any tmp(parcel.ReadDouble());
129 Any tmp(parcel.ReadString());
136 Any tmp(val);
155 * static constexpr std::string_view OHOS::Media::Any::GetTypeName()
158 * static std::string_view OHOS::Media::Any::GetTypeName() [T = <b>std::vector<unsigned char></b>] <br>
160 * static std::string_view OHOS::Media::Any::GetTypeName() [T = <b>OHOS::Media::Plugins::VideoEncodeBitrateMode</b>]
162 std::string_view Any::GetTypeNameFromFunctionInfo(const char* functionInfo) noexcept