Home
last modified time | relevance | path

Searched refs:xs (Results 1 – 15 of 15) sorted by relevance

/system/tools/xsdc/tests/resources/predefined_types/
Dpredefined_types.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="predefined_types" elementFo…
2 <xs:complexType name="stringTypes">
3 <xs:sequence>
4 <xs:element name="string" type="xs:string" />
5 <xs:element name="token" type="xs:token"/>
6 <xs:element name="normalizedString" type="xs:normalizedString"/>
7 <xs:element name="language" type="xs:language"/>
8 <xs:element name="entity" type="xs:ENTITY"/>
9 <xs:element name="entities" type="xs:ENTITIES"/>
10 <xs:element name="id" type="xs:ID"/>
[all …]
/system/tools/xsdc/tests/resources/simple_complex_content/
Dsimple_complex_content.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="simple_complex_content" xml…
2 <xs:complexType name="address">
3 <xs:annotation name="Deprecated"/>
4 <xs:sequence>
5 <xs:element name="name" type="xs:string">
6 <xs:annotation name="final"/>
7 </xs:element>
8 <xs:element name="street" type="xs:string"/>
9 <xs:element name="city" type="xs:string"/>
10 </xs:sequence>
[all …]
/system/tools/xsdc/tests/resources/simple_type/
Dsimple_type.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespa…
2 <xs:simpleType name="ints">
3 <xs:list itemType="xs:int"/>
4 </xs:simpleType>
5 <xs:simpleType name="restrictedInts">
6 <xs:restriction base="ints">
7 <xs:maxLength value="5"/>
8 </xs:restriction>
9 </xs:simpleType>
10 <xs:simpleType name="percent">
[all …]
/system/tools/xsdc/tests/resources/nested_type/
Dnested_type.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="nested_type" elementFormDef…
2 <xs:element name="employee">
3 <xs:complexType>
4 <xs:sequence>
5 <xs:element type="xs:byte" name="id"/>
6 <xs:element type="xs:string" name="name"/>
7 <xs:element name="address">
8 <xs:complexType>
9 <xs:sequence>
10 <xs:element type="xs:string" name="country"/>
[all …]
/system/tools/xsdc/tests/resources/attr_group_simple/
Dattr_group_simple.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="attr_group_simple" elementF…
2 <xs:attributeGroup name="address">
3 <xs:attribute name="State" type="xs:string"/>
4 <xs:attribute name="city" type="xs:string" use="required"/>
5 </xs:attributeGroup>
6 <xs:attributeGroup name="homeAddress">
7 <xs:attributeGroup ref="address"/>
8 <xs:attribute name="road" type="xs:string"/>
9 </xs:attributeGroup>
10 <xs:element name="Student">
[all …]
/system/tools/xsdc/tests/resources/group/
Dgroup.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="attr_group_simple" elementF…
2 <xs:group name="address1">
3 <xs:sequence>
4 <xs:element name="State" type="xs:string"/>
5 <xs:element name="city" type="xs:string"/>
6 </xs:sequence>
7 </xs:group>
8 <xs:group name="address2" ref="address1">
9 <xs:sequence>
10 <xs:element name="road" type="xs:string"/>
[all …]
/system/tools/xsdc/tests/resources/reference/
Dreference.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="reference"
3 <xs:attribute name="name" type="xs:string"/>
4 <xs:element name="class">
5 <xs:complexType>
6 <xs:sequence>
7 <xs:element name="student" type="xs:string" maxOccurs="unbounded"/>
8 </xs:sequence>
9 <xs:attribute ref="name"/>
10 </xs:complexType>
11 </xs:element>
[all …]
/system/tools/xsdc/
DREADME.md15 <xs:element name="class">
16 <xs:complexType>
17 <xs:sequence>
18 <xs:element name="student" type="xs:string"/>
19 </xs:sequence>
20 <xs:attribute name="name" type=”xs:string”/>
21 </xs:complexType>
22 </xs:element>
27 <xs:element name="class">
28 <xs:complexType>
[all …]
/system/tools/xsdc/tests/resources/
Dunsupported_attribute.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
3 <xs:element name="animal" type="xs:string"/>
4 <xs:element name="cat" substitutionGroup="animal"/>
5 </xs:schema>
Dunsupported_tag.xsd1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
3 <xs:import namespace="reference" schemaLocation="reference.xsd"/>
4 <xs:element name="dummy" type="xs:string"/>
5 </xs:schema>
/system/core/libpixelflinger/
Draster.cpp29 static void ggl_copyPixels(void* con, GGLint xs, GGLint ys,
53 void ggl_copyPixels(void* con, GGLint xs, GGLint ys, in ggl_copyPixels() argument
62 if (uint32_t(xs) > cb->width) in ggl_copyPixels()
66 if (uint32_t(xs + width) > cb->width) in ggl_copyPixels()
79 xs += offset; in ggl_copyPixels()
99 if (xs==xd && ys==yd) { in ggl_copyPixels()
107 + (xs + (cb->stride * ys)) * fp->size; in ggl_copyPixels()
Dscanline.cpp647 const int xs = c->iterators.xl; in scanline() local
649 int xc = x1 - xs; in scanline()
650 const int16_t* covPtr = c->state.buffers.coverage + xs; in scanline()
658 r = (xs * c->shade.drdx) + ci.ydrdy; in scanline()
659 g = (xs * c->shade.dgdx) + ci.ydgdy; in scanline()
660 b = (xs * c->shade.dbdx) + ci.ydbdy; in scanline()
661 a = (xs * c->shade.dadx) + ci.ydady; in scanline()
674 GGLfixed z = (xs * c->shade.dzdx) + ci.ydzdy; in scanline()
675 GGLfixed f = (xs * c->shade.dfdx) + ci.ydfdy; in scanline()
688 tc[i].s = (xs * ti.dsdx) + ti.ydsdy; in scanline()
[all …]
/system/core/adb/
Dbenchmark_device.py51 def harmonic_mean(xs): argument
52 return 1.0 / statistics.mean([1.0 / x for x in xs])
/system/ca-certificates/files/
Dcb156124.017 fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut
/system/memory/libmeminfo/testdata1/
Dsmaps714 58d21000-5ad21000 r-xs 02000000 00:05 9572 /memfd:/jit-cache (deleted)