Home
last modified time | relevance | path

Searched refs:CGUnionStruct (Results 1 – 7 of 7) sorted by relevance

/dports/www/firefox-legacy/firefox-52.8.0esr/dom/bindings/
H A DCodegen.py65 CGUnionStruct.isUnionCopyConstructible(type)) or
5030 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
9839 class CGUnionStruct(CGThing): class
10073 if CGUnionStruct.isUnionCopyConstructible(self.type):
10145 decl = CGGeneric(CGUnionStruct.unionTypeName(type, ownsMembers))
13570 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
13571 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
13841 cgthings.append(CGUnionStruct(t, config))
13842 cgthings.append(CGUnionStruct(t, config, True))
14104 return CGUnionStruct.unionTypeDecl(type, True), None, None
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/dom/bindings/
H A DCodegen.py68 CGUnionStruct.isUnionCopyConstructible(type)) or
5409 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
10324 class CGUnionStruct(CGThing): class
10558 if CGUnionStruct.isUnionCopyConstructible(self.type):
10633 decl = CGGeneric(CGUnionStruct.unionTypeName(type, ownsMembers))
14116 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
14117 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
14407 cgthings.append(CGUnionStruct(t, config))
14408 cgthings.append(CGUnionStruct(t, config, True))
14672 return CGUnionStruct.unionTypeDecl(type, True), None, None
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/bindings/
H A DCodegen.py105 or (type.isUnion() and CGUnionStruct.isUnionCopyConstructible(type))
6402 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
12573 class CGUnionStruct(CGThing): class
12909 if CGUnionStruct.isUnionCopyConstructible(self.type):
12939 % CGUnionStruct.unionTypeName(self.type, True)
17922 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
17923 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
18406 cgthings.append(CGUnionStruct(t, config))
18407 cgthings.append(CGUnionStruct(t, config, True))
22214 + [CGUnionStruct(t, config) for t in unionStructs]
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/bindings/
H A DCodegen.py75 CGUnionStruct.isUnionCopyConstructible(type)) or
5525 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
10718 class CGUnionStruct(CGThing): class
10953 if CGUnionStruct.isUnionCopyConstructible(self.type):
11033 decl = CGGeneric(CGUnionStruct.unionTypeName(type, ownsMembers))
15254 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
15255 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
15604 cgthings.append(CGUnionStruct(t, config))
15605 cgthings.append(CGUnionStruct(t, config, True))
15870 return CGUnionStruct.unionTypeDecl(type, True), None, None
[all …]
/dports/www/firefox/firefox-99.0/dom/bindings/
H A DCodegen.py105 or (type.isUnion() and CGUnionStruct.isUnionCopyConstructible(type))
6405 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
12576 class CGUnionStruct(CGThing): class
12912 if CGUnionStruct.isUnionCopyConstructible(self.type):
12942 % CGUnionStruct.unionTypeName(self.type, True)
17912 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
17913 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
18417 cgthings.append(CGUnionStruct(t, config))
18418 cgthings.append(CGUnionStruct(t, config, True))
22336 + [CGUnionStruct(t, config) for t in unionStructs]
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/dom/bindings/
H A DCodegen.py105 or (type.isUnion() and CGUnionStruct.isUnionCopyConstructible(type))
6402 typeName = CGUnionStruct.unionTypeDecl(type, isOwningUnion)
12573 class CGUnionStruct(CGThing): class
12909 if CGUnionStruct.isUnionCopyConstructible(self.type):
12939 % CGUnionStruct.unionTypeName(self.type, True)
17922 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, False))
17923 self.addInMozillaDom(CGUnionStruct.unionTypeName(t, True))
18406 cgthings.append(CGUnionStruct(t, config))
18407 cgthings.append(CGUnionStruct(t, config, True))
22214 + [CGUnionStruct(t, config) for t in unionStructs]
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/bindings/codegen/
H A DCodegenRust.py2302 CGUnionStruct(t, provider),
4159 class CGUnionStruct(CGThing): class