| /foundation/graphic/graphic_3d/lume/LumeMeta/include/meta/ext/serialization/ |
| D | serializer.h | 85 if (auto p = interface_pointer_cast<IObject>(nv.value.GetProperty())) { variable 96 if (auto p = interface_pointer_cast<IObject>(nv.value.GetProperty())) { variable 149 if (auto p = interface_pointer_cast<IObject>(nv.value.GetProperty())) { variable 160 if (auto p = interface_pointer_cast<IObject>(nv.value.GetProperty())) { variable 172 IObject::WeakPtr p; variable 201 Serializer(IImportContext& c) : ImportSerializer(c) {} in Serializer() 207 Serializer(IExportContext& c) : ExportSerializer(c) {} in Serializer()
|
| /foundation/graphic/graphic_3d/lume/LumeMeta/src/ |
| D | functions.cpp | 25 auto p = func_.lock(); in META_BEGIN_NAMESPACE() local 30 auto p = func_.lock(); in GetDestination() local 35 if (auto p = func_.lock()) { in Invoke() local 41 auto p = func_.lock(); in CreateCallContext() local 66 ReturnError SettableFunction::Import(IImportContext& c) in Import() 68 IObject::Ptr p; in Import() local 81 auto p = prop_.lock(); in GetName() local 90 if (auto p = prop_.lock()) { in Invoke() local 118 ReturnError PropertyFunction::Import(IImportContext& c) in Import()
|
| D | connector.cpp | 90 ReturnError Connector::Import(IImportContext& c) in Import() 92 IMetadata::Ptr p; in Import() local
|
| D | container_observer.cpp | 79 bool ContainerObserver::Build(const IMetadata::Ptr& p) in Build() 128 if (const auto c = sub.container.lock()) { in Unsubscribe() local
|
| /foundation/graphic/graphic_3d/lume/LumeMeta/include/meta/interface/detail/ |
| D | array_property.h | 76 TypelessArrayPropertyInterface(PropertyType p) in TypelessArrayPropertyInterface() 82 if (auto c = this->GetValueAny().Clone(true)) { in SetAnyAt() local 96 if (auto c = this->GetValueAny().Clone(true)) { in InsertAnyAt() local 106 if (auto c = this->GetValueAny().Clone(true)) { in RemoveAt() local 128 explicit ArrayPropertyInterface(PropertyType p) : Super(p) {} in ArrayPropertyInterface() 219 TypedArrayPropertyLock(NoCheckT, PropertyType p) : ArrayPropertyInterface<Type>(p) in TypedArrayPropertyLock() 225 …explicit TypedArrayPropertyLock(PropertyType p) : TypedArrayPropertyLock(NOCHECK, CanConstructFrom… in TypedArrayPropertyLock() 227 explicit TypedArrayPropertyLock(const IProperty::Ptr& p) : TypedArrayPropertyLock(p.get()) {} in TypedArrayPropertyLock() 228 … explicit TypedArrayPropertyLock(const IProperty::ConstPtr& p) : TypedArrayPropertyLock(p.get()) {} in TypedArrayPropertyLock() 262 ArrayPropertyLock(NoCheckT, Property* p) : ArrayPropertyBaseType<Property>(p) in ArrayPropertyLock() [all …]
|
| /foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/ |
| D | skia_shader_effect.cpp | 107 auto p = picture.GetImpl<SkiaPicture>(); in InitWithPicture() local 133 std::vector<SkColor> c; in InitWithLinearGradient() local 134 std::vector<SkScalar> p; in InitWithLinearGradient() local 160 std::vector<SkColor> c; in InitWithRadialGradient() local 161 std::vector<SkScalar> p; in InitWithRadialGradient() local 190 std::vector<SkColor> c; in InitWithTwoPointConical() local 191 std::vector<SkScalar> p; in InitWithTwoPointConical() local 215 std::vector<SkColor> c; in InitWithSweepGradient() local 216 std::vector<SkScalar> p; in InitWithSweepGradient() local
|
| /foundation/graphic/graphic_3d/lume/LumeScene/src/mesh/ |
| D | mesh_creator.cpp | 33 IInternalScene::Ptr p; in SCENE_BEGIN_NAMESPACE() local 41 static CORE_NS::Entity GetMaterial(const MeshConfig& c) in GetMaterial() 73 constexpr static CORE3D_NS::IMeshBuilder::DataBuffer FillData(const BASE_NS::vector<T>& c) noexcept in FillData() 109 Future<IMesh::Ptr> MeshCreator::Create(const MeshConfig& c, const CustomMeshData& data) in Create() 147 Future<IMesh::Ptr> MeshCreator::CreateCube(const MeshConfig& c, float width, float height, float de… in CreateCube() 159 Future<IMesh::Ptr> MeshCreator::CreatePlane(const MeshConfig& c, float width, float depth) in CreatePlane() 171 Future<IMesh::Ptr> MeshCreator::CreateSphere(const MeshConfig& c, float radius, uint32_t rings, uin… in CreateSphere() 183 Future<IMesh::Ptr> MeshCreator::CreateCone(const MeshConfig& c, float radius, float length, uint32_… in CreateCone()
|
| D | mesh.cpp | 28 void Mesh::OnPropertyChanged(const META_NS::IProperty& p) in OnPropertyChanged() 156 auto p = mesh_->SubMeshes().GetLockedAccess(); in OnMaterialOverrideChanged() local 171 if (auto c = attc->FindByName<IInternalMesh>("MeshComponent")) { in SetEcsObject() local 177 auto p = META_NS::GetObjectRegistry().Create<IInternalMesh>(ClassId::MeshComponent); in SetEcsObject() local
|
| D | material.cpp | 41 auto p = META_NS::GetPointer<IShader>(any); in ConvertToSource() local 133 if (auto c = attc->FindByName<IInternalMaterial>("MaterialComponent")) { in SetEcsObject() local 139 … auto p = META_NS::GetObjectRegistry().Create<IInternalMaterial>(ClassId::MaterialComponent); in SetEcsObject() local 150 bool Material::InitDynamicProperty(const META_NS::IProperty::Ptr& p, BASE_NS::string_view path) in InitDynamicProperty() 193 bool Material::ConstructTextures(const META_NS::IProperty::Ptr& p) in ConstructTextures()
|
| /foundation/graphic/graphic_3d/lume/LumeMeta/include/meta/base/ |
| D | shared_ptr.h | 168 shared_ptr(const shared_ptr& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() 174 shared_ptr(shared_ptr&& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() function 193 explicit shared_ptr(const weak_type& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() 212 shared_ptr(shared_ptr<U>&& p) noexcept : Internals::PtrCountedBase<T>(p.control_) in shared_ptr() function 237 …shared_ptr(const shared_ptr<U>& p) noexcept : shared_ptr(shared_ptr<U>(p)) // use the above move c… in shared_ptr() 241 shared_ptr(unique_ptr<U, D>&& p) noexcept in shared_ptr() 332 void swap(shared_ptr& p) in swap() 353 int32_t c = this->control_->GetWeakCount(); in weak_count() local
|
| /foundation/ability/ability_base/interfaces/inner_api/base/src/ |
| D | zchar_wrapper.cpp | 65 int Char::GetByteSize(zchar c) in GetByteSize() 83 zchar c, in WriteUTF8Bytes() 122 const char *p = str.c_str(); in GetChar() local
|
| /foundation/graphic/graphic_3d/lume/LumeMeta/src/animation/ |
| D | track_animation.cpp | 63 if (auto p = GetTargetProperty()) { in OnAnimationStateChanged() local 164 if (auto p = interface_cast<IProperty>(previous)) { in OnPropertyChanged() local 171 if (auto p = GetTargetProperty()) { in OnPropertyChanged() local 248 if (const auto p = GetTargetProperty(); p && timestamps) { in UpdateValid() local 284 ReturnError TrackAnimation::Import(IImportContext& c) in Import()
|
| D | animation_controller.cpp | 175 ReturnError AnimationController::Import(IImportContext& c) in Import() 184 if (auto p = anim.lock()) { in Finalize() local
|
| /foundation/multimedia/audio_framework/services/audio_service/server/src/ |
| D | audio_server_dump.cpp | 286 void AudioServerDump::PASinkInfoCallback(pa_context *c, const pa_sink_info *i, int eol, void *userd… in PASinkInfoCallback() 312 void AudioServerDump::PASinkInputInfoCallback(pa_context *c, const pa_sink_input_info *i, int eol, … in PASinkInputInfoCallback() 342 struct passwd *p; in PASinkInputInfoCallback() local 363 void AudioServerDump::PASourceInfoCallback(pa_context *c, const pa_source_info *i, int eol, void *u… in PASourceInfoCallback() 389 void AudioServerDump::PASourceOutputInfoCallback(pa_context *c, const pa_source_output_info *i, int… in PASourceOutputInfoCallback() 420 struct passwd *p; in PASourceOutputInfoCallback() local
|
| /foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/ |
| D | spirv_cross_helpers_gles.cpp | 74 for (auto& c : specInfo) { in ConstByName() local 87 for (const auto& c : specInfo) { in SpecConstByName() local 105 [&consts](uint32_t, const spirv_cross::SPIRConstant& c) { consts.push_back(c); }); in GetConstants() 145 const auto& c = SpecConstByName(compiler, name); in ConvertSpecConstToConstant() local 183 const auto p = source.find(tmp); in ConvertConstantToUniform() local
|
| /foundation/communication/wifi/wifi/relation_services/wifi_hal_service/wifi_hal_module/wpa_supplicant_hal/ |
| D | wifi_wpa_common.c | 48 char *p = strstr(src, split); in GetStrKeyVal() local 84 void TrimQuotationMark(char *str, char c) in TrimQuotationMark() 189 static int Hex2num(char c) in Hex2num()
|
| /foundation/ability/idl_tool/util/ |
| D | string.cpp | 232 int String::IndexOf(char c, int fromIndex) const in IndexOf() 244 char* p = string_ + fromIndex; in IndexOf() local 267 char* c = strstr(string_ + fromIndex, string); in IndexOf() local 283 char* c = strstr(string_ + fromIndex, other.string_); in IndexOf() local 287 int String::LastIndexOf(char c, int fromIndex) const in LastIndexOf() 298 char* p = string_ + fromIndex; in LastIndexOf() local
|
| /foundation/graphic/graphic_3d/lume/LumeBase/test/api_unit_test/src/containers/ |
| D | string_test.cpp | 122 for (const auto c : testString) { variable 134 for (const auto c : testString) { variable 147 for (const auto c : testString) { variable 160 for (const auto c : testString) { variable 173 for (const auto c : testString) { variable 185 for (const auto c : testString) { variable 212 for (const auto c : testString) { variable 229 for (const auto c : testString) { variable 244 for (const auto c : testString) { in AssingString() local 254 for (const auto c : testString) { in AssingString() local [all …]
|
| /foundation/graphic/graphic_3d/lume/LumeMeta/src/property/ |
| D | bind.cpp | 29 if (auto p = it->lock()) { in ~Bind() local 118 ReturnError Bind::Import(IImportContext& c) in Import()
|
| D | stack_property.cpp | 83 if (auto c = interface_pointer_cast<IValue>(value.Clone(true))) { in SetValueInValueStack() local 298 IModifier::Ptr p; in RemoveModifier() local 411 ReturnError StackProperty::Import(IImportContext& c) in Import()
|
| /foundation/filemanagement/storage_service/services/storage_daemon/file_sharing/src/ |
| D | setacl.cpp | 55 char *p = nullptr; in ParseNumericId() local 114 for (const char &c : permTxt) { in AclEntryParsePerm() local
|
| /foundation/communication/netstack/frameworks/js/napi/fetch/fetch_exec/src/ |
| D | fetch_exec.cpp | 84 [&vec](const std::pair<std::string, std::string> &p) { in ExecFetch() 199 auto c = static_cast<uint8_t>(str.c_str()[i]); in EncodeUrlParam() local 326 [context, header](const std::pair<std::string, std::string> &p) { in MakeResponseHeader()
|
| /foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/ |
| D | 3d_dm_brdf_common.h | 78 const float c = 1.0 - NoV; in EnvBRDFApproxSheen() local 87 const float p = pow(1.0 - VoH, 5.0); in fSchlick() local 93 const float p = pow(1.0 - VoH, 5.0); in fSchlickSingle() local 100 const float p = pow(1.0 - VoH, 5.0); in fSchlick() local
|
| /foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/ |
| D | vector.h | 563 difference_type p = pos - cbegin(); in insert() local 592 difference_type p = pos - cbegin(); in insert() local 626 difference_type p = pos - cbegin(); in insert() local 775 const difference_type p = pos - begin(); in emplace() local 808 pointer p = tmp + size_; in emplace_back() local 987 pointer c = pos.ptr(); in destroy_at() local 1005 for (pointer c = fPtr; c != lPtr; ++c) { in destroy() local 1076 for (pointer p = dst; p != dst + count; p++) { in init_fill() local 1193 difference_type p = pos - cbegin(); in insert_impl() local
|
| /foundation/graphic/graphic_2d/utils/color_manager/src/ |
| D | color_space.cpp | 181 Matrix3x3 c = {}; in operator *() local 326 for (size_t c = 0; c < dst[0].size(); ++c) { in Invert() local 337 auto &p = transferFunc; in ToLinear() local 358 auto &p = transferFunc; in ToNonLinear() local
|