Home
last modified time | relevance | path

Searched refs:propertySet (Results 1 – 12 of 12) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/winrt/
DCoreWindowNativeWindow_unittest.cpp284 ComPtr<IPropertySet> propertySet;
291 result = propertySetFactory->ActivateInstance(&propertySet);
294 result = propertySet.CopyTo(propertyMap);
368 ComPtr<IMap<HSTRING, IInspectable *>> propertySet;
371 EXPECT_HRESULT_SUCCEEDED(CreatePropertyMap(&propertySet));
373 SetInspectablePropertyValue(propertySet, EGLNativeWindowTypeProperty, &mockCoreWindow));
376 NativeWindow nativeWindow(propertySet.Get());
388 ComPtr<IMap<HSTRING, IInspectable *>> propertySet;
390 EXPECT_HRESULT_SUCCEEDED(CreatePropertyMap(&propertySet));
392 NativeWindow nativeWindow(propertySet.Get());
[all …]
DSwapChainPanelNativeWindow_unittest.cpp400 ComPtr<IPropertySet> propertySet; in CreatePropertyMap() local
407 result = propertySetFactory->ActivateInstance(&propertySet); in CreatePropertyMap()
410 result = propertySet.CopyTo(propertyMap); in CreatePropertyMap()
464 ComPtr<IMap<HSTRING, IInspectable *>> propertySet; in TEST() local
467 EXPECT_HRESULT_SUCCEEDED(CreatePropertyMap(&propertySet)); in TEST()
469 SetInspectablePropertyValue(propertySet, EGLNativeWindowTypeProperty, in TEST()
473 NativeWindow nativeWindow(propertySet.Get()); in TEST()
486 ComPtr<IMap<HSTRING, IInspectable *>> propertySet; in TEST() local
492 EXPECT_HRESULT_SUCCEEDED(CreatePropertyMap(&propertySet)); in TEST()
494 SetInspectablePropertyValue(propertySet, EGLNativeWindowTypeProperty, in TEST()
[all …]
DNativeWindow11WinRT.cpp32 ComPtr<ABI::Windows::Foundation::Collections::IPropertySet> propertySet; in initialize() local
34 if (IsEGLConfiguredPropertySet(window, &propertySet, &eglNativeWindow)) in initialize()
51 return mImpl->initialize(window, propertySet.Get()); in initialize()
59 return mImpl->initialize(window, propertySet.Get()); in initialize()
DCoreWindowNativeWindow.cpp22 bool CoreWindowNativeWindow::initialize(EGLNativeWindowType window, IPropertySet *propertySet) in initialize() argument
24 ComPtr<IPropertySet> props = propertySet; in initialize()
32 if (propertySet) in initialize()
DInspectableNativeWindow.cpp61 ABI::Windows::Foundation::Collections::IPropertySet **propertySet, in IsEGLConfiguredPropertySet() argument
107 if (propertySet != nullptr) in IsEGLConfiguredPropertySet()
109 result = propSet.CopyTo(propertySet); in IsEGLConfiguredPropertySet()
DInspectableNativeWindow.h50 virtual bool initialize(EGLNativeWindowType window, IPropertySet *propertySet) = 0;
128 ABI::Windows::Foundation::Collections::IPropertySet **propertySet = nullptr,
DSwapChainPanelNativeWindow.cpp91 bool SwapChainPanelNativeWindow::initialize(EGLNativeWindowType window, IPropertySet *propertySet) in initialize() argument
93 ComPtr<IPropertySet> props = propertySet; in initialize()
101 if (propertySet) in initialize()
DCoreWindowNativeWindow.h32 bool initialize(EGLNativeWindowType window, IPropertySet *propertySet) override;
DSwapChainPanelNativeWindow.h24 bool initialize(EGLNativeWindowType window, IPropertySet *propertySet) override;
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoOneOfProcessor.java276 vars.props = propertySet( in defineVarsForType()
DAutoValueProcessor.java442 propertySet(propertyMethodsAndTypes, annotatedPropertyFields, annotatedPropertyMethods); in defineVarsForType()
DAutoValueOrOneOfProcessor.java372 final ImmutableSet<Property> propertySet( in propertySet() method in AutoValueOrOneOfProcessor