Home
last modified time | relevance | path

Searched refs:ObjectType (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DRefCountObject.h58 template <class ObjectType, typename ContextT, typename ErrorT = angle::Result>
66 RefCountObjectReleaser(const ContextType *context, ObjectType *object) in RefCountObjectReleaser()
99 ObjectType *mObject = nullptr;
102 template <class ObjectType, typename ContextT, typename ErrorT = angle::Result>
111 BindingPointer(ObjectType *object) : mObject(object) in BindingPointer()
140 RefCountObjectReleaser<ObjectType, ContextType, ErrorT> set(const ContextType *context, in set()
141 ObjectType *newObject) in set()
151 ObjectType *oldObject = mObject; in set()
153 return RefCountObjectReleaser<ObjectType, ContextType, ErrorT>(context, oldObject); in set()
156 void assign(ObjectType *object) { mObject = object; } in assign()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DRefCountObject.h56 template <class ObjectType, typename ContextT, typename ErrorT = angle::Result>
65 BindingPointer(ObjectType *object) : mObject(object) in BindingPointer()
94 void set(const ContextType *context, ObjectType *newObject) in set()
104 ObjectType *oldObject = mObject; in set()
112 void assign(ObjectType *object) { mObject = object; } in assign()
114 ObjectType *get() const { return mObject; } in get()
115 ObjectType *operator->() const { return mObject; }
122 ANGLE_INLINE void setImpl(ObjectType *obj) { mObject = obj; } in setImpl()
125 ObjectType *mObject;
133 template <class ObjectType>
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DPackedEGLEnums_autogen.cpp130 ObjectType FromEGLenum<ObjectType>(EGLenum from) in FromEGLenum()
135 return ObjectType::Thread; in FromEGLenum()
137 return ObjectType::Display; in FromEGLenum()
139 return ObjectType::Context; in FromEGLenum()
141 return ObjectType::Surface; in FromEGLenum()
143 return ObjectType::Image; in FromEGLenum()
145 return ObjectType::Sync; in FromEGLenum()
147 return ObjectType::Stream; in FromEGLenum()
149 return ObjectType::InvalidEnum; in FromEGLenum()
153 EGLenum ToEGLenum(ObjectType from) in ToEGLenum()
[all …]
DPackedEGLEnums_autogen.h59 enum class ObjectType : uint8_t enum
74 ObjectType FromEGLenum<ObjectType>(EGLenum from);
75 EGLenum ToEGLenum(ObjectType from);
76 std::ostream &operator<<(std::ostream &os, ObjectType value);
/third_party/skia/third_party/externals/angle2/src/common/
DPackedEGLEnums_autogen.cpp227 ObjectType FromEGLenum<ObjectType>(EGLenum from) in FromEGLenum()
232 return ObjectType::Thread; in FromEGLenum()
234 return ObjectType::Display; in FromEGLenum()
236 return ObjectType::Context; in FromEGLenum()
238 return ObjectType::Surface; in FromEGLenum()
240 return ObjectType::Image; in FromEGLenum()
242 return ObjectType::Sync; in FromEGLenum()
244 return ObjectType::Stream; in FromEGLenum()
246 return ObjectType::InvalidEnum; in FromEGLenum()
250 EGLenum ToEGLenum(ObjectType from) in ToEGLenum()
[all …]
DPackedEGLEnums_autogen.h87 enum class ObjectType : uint8_t enum
102 ObjectType FromEGLenum<ObjectType>(EGLenum from);
103 EGLenum ToEGLenum(ObjectType from);
104 std::ostream &operator<<(std::ostream &os, ObjectType value);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
DObject.hpp69 template<class ObjectType>
75 BindingPointer(const BindingPointer<ObjectType> &other) : object(nullptr) in BindingPointer()
85 ObjectType *operator=(ObjectType *newObject) in operator =()
95 ObjectType *operator=(const BindingPointer<ObjectType> &other) in operator =()
100 operator ObjectType*() const { return object; } in operator ObjectType*()
101 ObjectType *operator->() const { return object; } in operator ->()
106 ObjectType *object;
DNameSpace.hpp29 template<class ObjectType, GLuint baseName = 1>
57 GLuint allocate(ObjectType *object = nullptr) in allocate()
77 void insert(GLuint name, ObjectType *object) in insert()
87 ObjectType *remove(GLuint name) in remove()
93 ObjectType *object = element->second; in remove()
107 ObjectType *find(GLuint name) const in find()
120 typedef std::map<GLuint, ObjectType*> Map;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/
Dobjc_template.rs27 impl<ObjectType: 'static> IFoo<ObjectType> for Foo {}
28 pub trait IFoo<ObjectType: 'static>: Sized + std::ops::Deref {
29 unsafe fn get(&self) -> *mut ObjectType in get()
51 impl<KeyType: 'static, ObjectType: 'static>
52 IFooMultiGeneric<KeyType, ObjectType> for FooMultiGeneric
55 pub trait IFooMultiGeneric<KeyType: 'static, ObjectType: 'static>:
58 unsafe fn objectForKey_(&self, key: *mut KeyType) -> *mut ObjectType in objectForKey_()
/third_party/cef/libcef_dll/wrapper/
Dcef_browser_info_map.h15 template <typename ObjectType>
17 static void Destruct(ObjectType info) { delete info; } in Destruct()
22 typename ObjectType,
23 typename Traits = DefaultCefBrowserInfoMapTraits<ObjectType>>
30 using InfoObjectType = ObjectType;
52 void Add(int browser_id, IdType info_id, ObjectType info) { in Add()
72 ObjectType Find(int browser_id, IdType info_id, Visitor* vistor) { in Find()
74 return ObjectType(); in Find()
79 return ObjectType(); in Find()
84 return ObjectType(); in Find()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DClient.cpp61 ObjectType objectType = static_cast<ObjectType>(&objectList - mObjects.data()); in DestroyAllObjects()
62 if (objectType == ObjectType::Device) { in DestroyAllObjects()
76 while (!mObjects[ObjectType::Device].empty()) { in DestroyAllObjects()
77 ObjectBase* object = mObjects[ObjectType::Device].head()->value(); in DestroyAllObjects()
80 cmd.objectType = ObjectType::Device; in DestroyAllObjects()
83 FreeObject(ObjectType::Device, object); in DestroyAllObjects()
137 auto& deviceList = mObjects[ObjectType::Device]; in Disconnect()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/
Dobjc_template.rs27 impl<ObjectType: 'static> IFoo<ObjectType> for Foo {}
28 pub trait IFoo<ObjectType: 'static>: Sized + std::ops::Deref {
51 impl<KeyType: 'static, ObjectType: 'static>
52 IFooMultiGeneric<KeyType, ObjectType> for FooMultiGeneric
55 pub trait IFooMultiGeneric<KeyType: 'static, ObjectType: 'static>:
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dobjc_template.h4 @interface Foo<__covariant ObjectType>
5 - (ObjectType)get;
8 @interface FooMultiGeneric<__covariant KeyType, __covariant ObjectType>
9 - (nullable ObjectType)objectForKey:(KeyType)key;
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/
DApiObjects.h25 static constexpr ObjectType value = static_cast<ObjectType>(-1);
47 static constexpr ObjectType value = ObjectType::{{Type}};
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_native/
DObjectType.h24 enum class ObjectType : uint32_t { enum
31 using PerObjectType = ityp::array<ObjectType, T, {{len(by_category["object"])}}>;
33 const char* ObjectTypeAsString(ObjectType type);
DObjectType.cpp19 const char* ObjectTypeAsString(ObjectType type) { in ObjectTypeAsString()
22 case ObjectType::{{type.name.CamelCase()}}: in ObjectTypeAsString()
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
Dvulkan_handles.hpp1293 static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType =
1294 VULKAN_HPP_NAMESPACE::ObjectType::eSurfaceKHR;
1362 "vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type<ObjectType::eSurfaceKHR>
1368 struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eSurfaceKHR>
1392 static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType =
1393 VULKAN_HPP_NAMESPACE::ObjectType::eDebugReportCallbackEXT;
1464 …"vk::cpp_type is deprecated. Use vk::CppType instead." ) cpp_type<ObjectType::eDebugReportCallback…
1470 …struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eDebugReportCal…
1494 static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType =
1495 VULKAN_HPP_NAMESPACE::ObjectType::eDebugUtilsMessengerEXT;
[all …]
/third_party/vk-gl-cts/modules/egl/
DteglMemoryStressTests.cpp60 enum ObjectType enum
72 …stContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWi…
94 ObjectType m_types;
105 …stContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWi… in MemoryAllocator()
142 vector<ObjectType> types; in allocateUntilFailure()
159 ObjectType type = m_rnd.choose<ObjectType>(types.begin(), types.end()); in allocateUntilFailure()
319 ObjectType types;
590 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT); in init()
604 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT); in init()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/
DObjectStorage.h73 inline uint64_t PackObjectTypeAndId(ObjectType type, ObjectId id) {
74 static_assert(sizeof(ObjectType) * 8 <= 32, "");
79 inline std::pair<ObjectType, ObjectId> UnpackObjectTypeAndId(uint64_t payload) {
80 ObjectType type = static_cast<ObjectType>(payload >> 32);
DServer.cpp64 if (!TrackDeviceChild(data->deviceInfo, ObjectType::Texture, id)) { in InjectTexture()
96 if (!TrackDeviceChild(data->deviceInfo, ObjectType::SwapChain, id)) { in InjectSwapChain()
172 bool TrackDeviceChild(DeviceInfo* info, ObjectType type, ObjectId id) { in TrackDeviceChild()
181 bool UntrackDeviceChild(DeviceInfo* info, ObjectType type, ObjectId id) { in UntrackDeviceChild()
/third_party/vk-gl-cts/framework/opengl/
DgluObjectWrapper.hpp41 enum ObjectType enum
62 const ObjectTraits& objectTraits (ObjectType type);
87 template<ObjectType Type> class TypedObjectWrapper : public ObjectWrapper
123 template<ObjectType Type> class TypedObjectVector : public ObjectVector
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DDevice.cpp276 static constexpr std::array<ObjectType, 19> kObjectTypeDependencyOrder = { in DestroyObjects()
277 ObjectType::ComputePassEncoder, in DestroyObjects()
278 ObjectType::RenderPassEncoder, in DestroyObjects()
279 ObjectType::RenderBundleEncoder, in DestroyObjects()
280 ObjectType::RenderBundle, in DestroyObjects()
281 ObjectType::CommandEncoder, in DestroyObjects()
282 ObjectType::CommandBuffer, in DestroyObjects()
283 ObjectType::RenderPipeline, in DestroyObjects()
284 ObjectType::ComputePipeline, in DestroyObjects()
285 ObjectType::PipelineLayout, in DestroyObjects()
[all …]
/third_party/vulkan-headers/include/vulkan/
Dvulkan_handles.hpp1538 …AN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::Obje…
1600 struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eSurfaceKHR>
1623 …AN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::Obje…
1688 …struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eDebugReportCal…
1711 …AN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::Obje…
1776 …struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eDebugUtilsMess…
1793 …AN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::Obje…
1855 struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eDisplayKHR>
1878 …AN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::ObjectType objectType = VULKAN_HPP_NAMESPACE::Obje…
1940 struct CppType<VULKAN_HPP_NAMESPACE::ObjectType, VULKAN_HPP_NAMESPACE::ObjectType::eSwapchainKHR>
[all …]
/third_party/protobuf/objectivec/
DGPBDictionary.h885 @interface GPBUInt32ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
899 - (instancetype)initWithObjects:(const ObjectType __nonnull GPB_UNSAFE_UNRETAINED [__nullable])obje…
928 - (ObjectType)objectForKey:(uint32_t)key;
939 (void (NS_NOESCAPE ^)(uint32_t key, ObjectType object, BOOL *stop))block;
955 - (void)setObject:(ObjectType)object forKey:(uint32_t)key;
1806 @interface GPBInt32ObjectDictionary<__covariant ObjectType> : NSObject <NSCopying>
1820 - (instancetype)initWithObjects:(const ObjectType __nonnull GPB_UNSAFE_UNRETAINED [__nullable])obje…
1849 - (ObjectType)objectForKey:(int32_t)key;
1860 (void (NS_NOESCAPE ^)(int32_t key, ObjectType object, BOOL *stop))block;
1876 - (void)setObject:(ObjectType)object forKey:(int32_t)key;
[all …]
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/
DObjectType.h22 enum class ObjectType : uint32_t { enum
29 using PerObjectType = ityp::array<ObjectType, T, {{len(by_category["object"])}}>;

123456