Searched refs:Attribute (Results 1 - 25 of 99) sorted by last modified time

1234

/frameworks/rs/rsov/compiler/
H A DInlinePreparationPass.cpp55 F.addFnAttr(Attribute::AlwaysInline);
/frameworks/native/libs/hwc2on1adapter/
H A DHWC2On1Adapter.cpp53 static constexpr Attribute ColorMode = static_cast<Attribute>(6);
611 Attribute attribute, int32_t* outValue) {
1035 if (width == mActiveConfig->getAttribute(Attribute::Width) &&
1036 height == mActiveConfig->getAttribute(Attribute::Height) &&
1067 "Attribute tables have unexpected sizes");
1143 newConfig->setAttribute(Attribute::VsyncPeriod,
1145 newConfig->setAttribute(Attribute::Width,
1147 newConfig->setAttribute(Attribute::Height,
1149 newConfig->setAttribute(Attribute
[all...]
/frameworks/native/libs/hwc2on1adapter/include/hwc2on1adapter/
H A DHWC2On1Adapter.h207 HWC2::Attribute attribute, int32_t* outValue);
293 void setAttribute(HWC2::Attribute attribute, int32_t value);
294 int32_t getAttribute(HWC2::Attribute attribute) const;
319 std::unordered_map<HWC2::Attribute, int32_t> mAttributes;
487 auto attribute = static_cast<HWC2::Attribute>(intAttribute);
/frameworks/native/libs/vr/libvrflinger/
H A Dhardware_composer.cpp326 display, config, (Hwc2::IComposerClient::Attribute)attribute, out_value);
H A Dhwc_types.h158 struct Attribute final : public Wrapper<HWC2::Attribute> {
168 Attribute() : Base(Invalid) {} function in namespace:HWC
/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp25 struct Attribute { struct
31 Attribute attributes[] = {
81 for (unsigned attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DComposerHal.cpp333 IComposerClient::Attribute attribute, int32_t* outValue)
H A DComposerHal.h172 IComposerClient::Attribute attribute, int32_t* outValue);
H A DHWC2.cpp650 int32_t Display::getAttribute(hwc2_config_t configId, Attribute attribute)
654 static_cast<Hwc2::IComposerClient::Attribute>(attribute),
671 .setWidth(getAttribute(configId, Attribute::Width))
672 .setHeight(getAttribute(configId, Attribute::Height))
673 .setVsyncPeriod(getAttribute(configId, Attribute::VsyncPeriod))
674 .setDpiX(getAttribute(configId, Attribute::DpiX))
675 .setDpiY(getAttribute(configId, Attribute::DpiY))
H A DHWC2.h261 int32_t getAttribute(hwc2_config_t configId, Attribute attribute);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp320 struct Attribute;
323 KeyedVector<Attribute, EGLint> mList;
324 struct Attribute { struct in class:android::EGLAttributeVector
325 Attribute() : v(0) {}; function in struct:android::EGLAttributeVector::Attribute
326 explicit Attribute(EGLint v) : v(v) { } function in struct:android::EGLAttributeVector::Attribute
328 bool operator < (const Attribute& other) const {
347 v.mList.add(Attribute(attribute), value);
354 mList.add(Attribute(EGL_NONE), EGL_NONE);
358 mList.removeItem(Attribute(attribute));
/frameworks/native/services/vr/hardware_composer/impl/
H A Dvr_composer_client.cpp214 Config config, Attribute attribute, getDisplayAttribute_cb hidl_cb) {
H A Dvr_composer_client.h58 Display display, Config config, Attribute attribute,
H A Dvr_hwc.cpp322 IComposerClient::Attribute attribute,
334 case IComposerClient::Attribute::WIDTH:
337 case IComposerClient::Attribute::HEIGHT:
340 case IComposerClient::Attribute::VSYNC_PERIOD:
355 case IComposerClient::Attribute::DPI_X:
356 case IComposerClient::Attribute::DPI_Y:
H A Dvr_hwc.h227 IComposerClient::Attribute attribute, int32_t* outValue) override;
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java49 private List<Attribute> mAttributes;
112 mAttributes = count > 0 ? new ArrayList<Attribute>(count) :
113 Collections.<Attribute>emptyList();
115 mAttributes.add(new Attribute(mDelegate.getAttributeNamespace(i),
184 for (Attribute attribute : mAttributes) {
206 private static class Attribute { class in class:LayoutParserWrapper
212 public Attribute(@Nullable String namespace, String name, String value) { method in class:LayoutParserWrapper.Attribute
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java20 import org.objectweb.asm.Attribute;
547 public void visitAttribute(Attribute attr) {
571 public void visitAttribute(Attribute attr) {
H A DClassHasNativeVisitor.java23 import org.objectweb.asm.Attribute;
61 public void visitAttribute(Attribute attr) {
H A DDelegateMethodAdapter.java22 import org.objectweb.asm.Attribute;
332 public void visitAttribute(Attribute attr) {
H A DDependencyFinder.java23 import org.objectweb.asm.Attribute;
424 public void visitAttribute(Attribute attr) {
448 public void visitAttribute(Attribute attr) {
H A DStubMethodAdapter.java20 import org.objectweb.asm.Attribute;
237 public void visitAttribute(Attribute attr) {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/mclinker/include/mcld/
H A DAttributeOption.h11 #include "mcld/MC/Attribute.h"
20 const Attribute& predefined() const { return m_Predefined; }
21 Attribute& predefined() { return m_Predefined; }
27 Attribute m_Predefined;
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttribute.h1 //===- Attribute.h --------------------------------------------------------===//
70 /** \class Attribute
75 * onto AttributeBase, and modifiers remains with the class Attribute.
77 class Attribute : public AttributeBase { class in namespace:mcld
131 bool isLegal(const Attribute& pAttr) const;
152 const Attribute& pBase,
168 const Attribute* attr() const { return m_pBase; }
180 AttributeProxy& assign(Attribute* pBase);
184 const Attribute* m_pBase;
189 inline bool operator==(const Attribute
[all...]
H A DAttributeSet.h17 class Attribute;
20 * \brief AttributeSet is a set of Attribute.
27 typedef std::vector<Attribute*> AttrSet;
34 AttributeSet(unsigned int pNum, const Attribute& pPredefined);
46 Attribute* exists(const Attribute& pAttr) const;
49 void record(Attribute& pAttr);
53 const Attribute& m_Predefined;

Completed in 971 milliseconds

1234