Home
last modified time | relevance | path

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

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_import_dxf/dxfgrabber/
H A Dacdsdata.py10 from .tags import TagGroups, DXFStructureError, Tags, binary_encoded_data_to_bytes
31 for group in TagGroups(islice(tags, 2, len(tags)-1)):
73 …self.sections = [Section(tags) for tags in TagGroups(islice(tags, start_index, None), split_code=2…
H A Dheadersection.py8 from .tags import TagGroups, DXFTag
32 groups = TagGroups(tags[2:-1], split_code=9)
H A Dblockssection.py10 from .tags import TagGroups
31 for group in TagGroups(islice(tags, 2, len(tags)-1)):
H A Dentitysection.py10 from .tags import TagGroups, DXFStructureError
46 groups = TagGroups(islice(tags, 2, len(tags)-1))
H A Dlayers.py8 from .tags import TagGroups
73 groups = TagGroups(tags)
H A Dtags.py278 class TagGroups(list): class
286 super(TagGroups, self).__init__()
309 return TagGroups(Tags.from_text(text), split_code)
/dports/security/lego/lego-4.5.3/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/outboundbot/
H A Dmodify_tag_groups.go77 TagGroups string `position:"Query" name:"TagGroups"` member
88 TagGroups []TagGroup `json:"TagGroups" xml:"TagGroups"` member
H A Ddescribe_tag_hits_summary.go86 TagGroups []TagGroup `json:"TagGroups" xml:"TagGroups"` member
H A Dlist_tags.go86 TagGroups []TagGroup `json:"TagGroups" xml:"TagGroups"` member
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/libs/ifc/xml/
H A Dvabstractpattern.h254 static const QString TagGroups; variable
H A Dvabstractpattern.cpp76 const QString VAbstractPattern::TagGroups = QStringLiteral("groups"); member in VAbstractPattern
2003 QDomElement groups = draw.firstChildElement(TagGroups); in CreateGroups()
2007 groups = createElement(TagGroups); in CreateGroups()
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/app/valentina/xml/
H A Dvpattern.cpp752 QStringList tags = QStringList() << TagCalculation << TagModeling << TagDetails << TagGroups; in ParseDrawElement()