Home
last modified time | relevance | path

Searched refs:EntityQuery (Results 1 – 25 of 77) sorted by relevance

1234

/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_03_dxf_layouts/
H A Dtest_308_query.py6 from ezdxf.query import EntityQuery, name_query
42 result = EntityQuery()
47 result = EntityQuery(modelspace, '*')
54 result = EntityQuery(modelspace, '*')
59 result = EntityQuery(modelspace, '*')
77 result = EntityQuery(modelspace, 'LINE')
89 result = EntityQuery(modelspace, '*[layer=="π"]')
129 result = EntityQuery(modelspace,
136 result = EntityQuery(modelspace,
143 result = EntityQuery(modelspace,
[all …]
H A Dtest_309_query_parser.py11 name = result.EntityQuery[0]
16 assert "LINE" == result.EntityQuery[0]
17 assert "CIRCLE" == result.EntityQuery[1]
21 name = result.EntityQuery[0]
30 assert result.EntityQuery[0] == '*'
31 assert result.EntityQuery[1] == '!LINE'
49 assert "LINE" == result.EntityQuery[0]
54 assert "LINE" == result.EntityQuery[0]
59 assert "LINE" == result.EntityQuery[0]
64 assert "HATCH" == result.EntityQuery[0]
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/path/
H A Dtools.py15 from ezdxf.query import EntityQuery
22 from ezdxf.eztypes import Vertex, Layout, EntityQuery
211 dxfattribs: Optional[Dict] = None) -> EntityQuery:
242 return EntityQuery(lwpolylines)
252 dxfattribs: Optional[Dict] = None) -> EntityQuery:
283 return EntityQuery(polylines2d)
295 dxfattribs: Optional[Dict] = None) -> EntityQuery:
331 return EntityQuery(hatches)
366 return EntityQuery(polylines3d)
400 return EntityQuery(lines)
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/docs/source/
H A Dquery.rst14 QueryString := EntityQuery ("[" AttribQuery "]" "i"?)*
55 The :class:`EntityQuery` class is the return type of all :meth:`query` methods.
56 :class:`EntityQuery` contains all DXF entities of the source collection,
67 EntityQuery Class
70 .. class:: EntityQuery
72 …The :class:`EntityQuery` class is a result container, which is filled with dxf entities matching t…
98 …function:: ezdxf.query.new(entities: Iterable['DXFEntity'] = None, query: str = '*') -> EntityQuery
H A Dpath.rst117 … = 0.01, segments: int = 4, extrusion: Vertex = (0, 0, 1), dxfattribs: Dict = None) -> EntityQuery
119 … = 0.01, segments: int = 4, extrusion: Vertex = (0, 0, 1), dxfattribs: Dict = None) -> EntityQuery
121 … = 4, g1_tol: float = 1e-4, extrusion: Vertex = (0, 0, 1), dxfattribs: Dict = None) -> EntityQuery
123 …erable[Path], *, distance: float = 0.01, segments: int = 4, dxfattribs: Dict = None) -> EntityQuery
125 …erable[Path], *, distance: float = 0.01, segments: int = 4, dxfattribs: Dict = None) -> EntityQuery
127 …ut: Layout, paths: Iterable[Path], *, g1_tol: float = 1e-4, dxfattribs: Dict = None) -> EntityQuery
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/
H A Dquery.py17 class EntityQuery(abc.Sequence): class
122 self.entities.extend(EntityQuery(entities, query))
139 return EntityQuery(self.entities, query)
157 entity_matcher_ = build_entity_name_matcher(query_args.EntityQuery)
324 def new(entities: Iterable['DXFEntity'] = None, query: str = '*') -> EntityQuery:
330 return EntityQuery(entities, query)
H A Dexplode.py12 from ezdxf.query import EntityQuery
26 target_layout: 'BaseLayout') -> EntityQuery:
92 return EntityQuery(entities)
249 return EntityQuery(entities)
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/addons/
H A Dtext2path.py14 from ezdxf.query import EntityQuery
246 def virtual_entities(entity: AnyText, kind: int = Kind.HATCHES) -> EntityQuery:
275 return EntityQuery(entities)
279 target=None) -> EntityQuery:
306 return EntityQuery(entities)
/dports/security/vault/vault-1.8.2/vendor/github.com/Azure/azure-sdk-for-go/services/preview/securityinsight/mgmt/2019-01-01-preview/securityinsight/
H A DCHANGELOG.md24 1. *EntityQuery.UnmarshalJSON([]byte) error
46 1. EntityQuery.*EntityQueryProperties
58 - From: EntityQuery, error
62 - From: EntityQuery, error
66 - From: EntityQuery
70 - From: []EntityQuery
235 1. EntityQuery.AsBasicEntityQuery() (BasicEntityQuery, bool)
236 1. EntityQuery.AsEntityQuery() (*EntityQuery, bool)
243 1. ExpansionEntityQuery.AsEntityQuery() (*EntityQuery, bool)
512 1. EntityQuery.Etag
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/layouts/
H A Dbase.py11 from ezdxf.query import EntityQuery
77 def query(self, query: str = "*") -> EntityQuery:
79 return EntityQuery(iter(self), query)
/dports/www/drupal8/drupal-8.9.20/core/modules/workspaces/
H A Dworkspaces.services.yml58 class: Drupal\workspaces\EntityQuery\QueryFactory
66 class: Drupal\workspaces\EntityQuery\PgsqlQueryFactory
/dports/www/drupal9/drupal-9.2.10/core/modules/workspaces/
H A Dworkspaces.services.yml58 class: Drupal\workspaces\EntityQuery\QueryFactory
66 class: Drupal\workspaces\EntityQuery\PgsqlQueryFactory
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/sections/
H A Dobjects.py11 from ezdxf.query import EntityQuery
167 def query(self, query: str = '*') -> EntityQuery:
172 return EntityQuery(iter(self), query)
/dports/cad/py-ezdxf/ezdxf-0.16.3/docs/source/addons/
H A Dtext2path.rst68 .. autofunction:: virtual_entities(entity, kind = Kind.HATCHES) -> EntityQuery
70 .. autofunction:: explode(entity, kind = Kind.HATCHES, target = None) -> EntityQuery
/dports/www/drupal8/drupal-8.9.20/core/modules/workspaces/src/EntityQuery/
H A DQueryAggregate.php3 namespace Drupal\workspaces\EntityQuery;
H A DQuery.php3 namespace Drupal\workspaces\EntityQuery;
H A DQueryFactory.php3 namespace Drupal\workspaces\EntityQuery;
H A DPgsqlQueryFactory.php3 namespace Drupal\workspaces\EntityQuery;
H A DQueryTrait.php3 namespace Drupal\workspaces\EntityQuery;
/dports/www/drupal9/drupal-9.2.10/core/modules/workspaces/src/EntityQuery/
H A DQueryAggregate.php3 namespace Drupal\workspaces\EntityQuery;
H A DQuery.php3 namespace Drupal\workspaces\EntityQuery;
H A DPgsqlQueryFactory.php3 namespace Drupal\workspaces\EntityQuery;
H A DQueryFactory.php3 namespace Drupal\workspaces\EntityQuery;
H A DQueryTrait.php3 namespace Drupal\workspaces\EntityQuery;
/dports/security/vuls/vuls-0.13.7/vendor/github.com/Azure/azure-sdk-for-go/services/preview/securityinsight/mgmt/2019-01-01-preview/securityinsight/
H A Dentityqueries.go53 …ourceProvider string, workspaceName string, entityQueryID string) (result EntityQuery, err error) {
129 func (client EntityQueriesClient) GetResponder(resp *http.Response) (result EntityQuery, err error)…

1234