Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9b4080d authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Update VtsHalAudioPolicyV1_0TargetTest to match XML changes" am: 01ef00b0

parents 8018bcb9 01ef00b0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -232,10 +232,12 @@ package audio.policy.V1_0 {

  public class ValueType {
    ctor public ValueType();
    method public String getAndroid_type();
    method public String getLiteral();
    method public int getNumerical();
    method public long getNumerical();
    method public void setAndroid_type(String);
    method public void setLiteral(String);
    method public void setNumerical(int);
    method public void setNumerical(long);
  }

  public class ValuesType {
+12 −1
Original line number Diff line number Diff line
@@ -189,9 +189,20 @@
    </xs:complexType>
    <xs:complexType name="valueType">
        <xs:attribute name="literal" type="xs:string" use="required"/>
        <xs:attribute name="numerical" type="xs:int" use="required"/>
        <xs:attribute name="numerical" type="xs:long" use="required"/>
        <xs:attribute name="android_type" type="longDecimalOrHexType" use="optional"/>
    </xs:complexType>

    <xs:simpleType name="longDecimalOrHexType">
      <xs:union memberTypes="xs:long longHexType" />
    </xs:simpleType>

    <xs:simpleType name="longHexType">
      <xs:restriction base="xs:string">
        <xs:pattern value="0x[0-9A-Fa-f]{1,16}"/>
      </xs:restriction>
    </xs:simpleType>

    <xs:complexType name="attributesRefType">
        <xs:sequence>
            <xs:element name="Attributes" type="AttributesType" minOccurs="1" maxOccurs="1"/>