Home
last modified time | relevance | path

Searched refs:_anchors (Results 1 – 25 of 56) sorted by relevance

123

/dports/converters/wkhtmltopdf/qt-5db36ec/src/declarative/graphicsitems/
H A Dqdeclarativegraphicswidget.cpp53 _anchors(0), _anchorLines(0) in QDeclarativeGraphicsWidgetPrivate()
56 QDeclarativeAnchors *_anchors; member in QDeclarativeGraphicsWidgetPrivate
68 delete d->_anchors; d->_anchors = 0; in ~QDeclarativeGraphicsWidget()
74 if (!d->_anchors) in anchors()
75 d->_anchors = new QDeclarativeAnchors(static_cast<QGraphicsObject *>(parent())); in anchors()
76 return d->_anchors; in anchors()
H A Dqdeclarativeitem_p.h123 : _anchors(0), _contents(0), in Q_DECLARE_PUBLIC()
222 if (!_anchors) { in anchors()
224 _anchors = new QDeclarativeAnchors(q); in anchors()
226 _anchors->classBegin(); in anchors()
228 return _anchors; in anchors()
230 QDeclarativeAnchors *_anchors; variable
H A Dqdeclarativeitem.cpp897 if (_anchors) { in setLayoutMirror()
898 _anchors->d_func()->fillChanged(); in setLayoutMirror()
899 _anchors->d_func()->centerInChanged(); in setLayoutMirror()
1682 delete d->_anchors; d->_anchors = 0; in ~QDeclarativeItem()
2136 if (d->_anchors) in geometryChanged()
2137 d->_anchors->d_func()->updateMe(); in geometryChanged()
2941 if (d->_anchors) in classBegin()
2942 d->_anchors->classBegin(); in classBegin()
2959 if (d->_anchors) { in componentComplete()
2960 d->_anchors->componentComplete(); in componentComplete()
[all …]
H A Dqdeclarativepositioners.cpp470 …ors *anchors = QDeclarativeItemPrivate::get(static_cast<QDeclarativeItem *>(child.item))->_anchors; in reportConflictingAnchors()
685 …ors *anchors = QDeclarativeItemPrivate::get(static_cast<QDeclarativeItem *>(child.item))->_anchors; in reportConflictingAnchors()
1076 …ors *anchors = QDeclarativeItemPrivate::get(static_cast<QDeclarativeItem *>(child.item))->_anchors; in reportConflictingAnchors()
1360 …ors *anchors = QDeclarativeItemPrivate::get(static_cast<QDeclarativeItem *>(child.item))->_anchors; in reportConflictingAnchors()
/dports/x11-fonts/py-babelfont/babelfont-2.0.2/lib/babelfont/
H A Dglyph.py22 self._anchors = []
74 return len(self._anchors)
77 return self._anchors[index]
80 del(self._anchors[index])
83 self._anchors.append(Anchor(name=name, **kwargs))
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/CPL/
H A DSerializer.cs35 …private readonly Dictionary<Node, string>/*!*/ _anchors = new Dictionary<Node, string>(ReferenceEq… field in IronRuby.StandardLibrary.Yaml.Serializer
78 _anchors.Clear(); in Serialize()
88 if (_anchors.TryGetValue(node, out anchor)) { in AnchorNode()
90 _anchors[node] = GenerateAnchor(node); in AnchorNode()
93 _anchors.Add(node, null); in AnchorNode()
121 _anchors.TryGetValue(node, out tAlias); in SerializeNode()
/dports/misc/py-gluoncv/gluon-cv-0.9.0/gluoncv/data/transforms/presets/
H A Drcnn.py154 self._anchors = None
184 self._anchors = anchors
225 if self._anchors is None:
235 for anchor, feat_sym in zip(self._anchors, self._feat_sym):
258 anchor = self._anchors[:, :, :oshape[2], :oshape[3], :]
357 self._anchors = None
384 self._anchors = anchors
431 if self._anchors is None:
441 for anchor, feat_sym in zip(self._anchors, self._feat_sym):
464 anchor = self._anchors[:, :, :oshape[2], :oshape[3], :]
H A Dssd.py134 self._anchors = anchors
192 if self._anchors is None:
199 self._anchors, None, gt_bboxes, gt_ids)
H A Dyolo.py151 _, self._anchors, self._offsets, self._feat_maps, _, _, _, _ = net(self._fake_x)
210 self._fake_x, self._feat_maps, self._anchors, self._offsets,
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/
H A DRegexInterpreter.cs361 … if (0 != (_code._anchors & (RegexFCD.Beginning | RegexFCD.Start | RegexFCD.EndZ | RegexFCD.End))) in FindFirstChar()
365 if ((0 != (_code._anchors & RegexFCD.Beginning) && runtextpos > runtextbeg) || in FindFirstChar()
366 (0 != (_code._anchors & RegexFCD.Start) && runtextpos > runtextstart)) in FindFirstChar()
371 if (0 != (_code._anchors & RegexFCD.EndZ) && runtextpos < runtextend - 1) in FindFirstChar()
375 else if (0 != (_code._anchors & RegexFCD.End) && runtextpos < runtextend) in FindFirstChar()
382 if ((0 != (_code._anchors & RegexFCD.End) && runtextpos < runtextend) || in FindFirstChar()
383 (0 != (_code._anchors & RegexFCD.EndZ) && (runtextpos < runtextend - 1 || in FindFirstChar()
385 (0 != (_code._anchors & RegexFCD.Start) && runtextpos < runtextstart)) in FindFirstChar()
390 if (0 != (_code._anchors & RegexFCD.Beginning) && runtextpos > runtextbeg) in FindFirstChar()
H A DRegexLWCGCompiler.cs31 _anchors = code._anchors; in FactoryInstanceFromCode()
H A DRegexCode.cs99 …internal readonly int _anchors; // the set of zero-length start anchors (Regex… field in System.Text.RegularExpressions.RegexCode
117 _anchors = anchors; in RegexCode()
357 Debug.WriteLine("Anchors: " + RegexFCD.AnchorDescription(_anchors)); in Dump()
H A DRegexCompiler.cs83 internal int _anchors; // the set of anchors field in System.Text.RegularExpressions.RegexCompiler
1098 … if (0 != (_anchors & (RegexFCD.Beginning | RegexFCD.Start | RegexFCD.EndZ | RegexFCD.End))) in GenerateFindFirstChar()
1102 if (0 != (_anchors & RegexFCD.Beginning)) in GenerateFindFirstChar()
1116 if (0 != (_anchors & RegexFCD.Start)) in GenerateFindFirstChar()
1130 if (0 != (_anchors & RegexFCD.EndZ)) in GenerateFindFirstChar()
1146 if (0 != (_anchors & RegexFCD.End)) in GenerateFindFirstChar()
1160 if (0 != (_anchors & RegexFCD.End)) in GenerateFindFirstChar()
1174 if (0 != (_anchors & RegexFCD.EndZ)) in GenerateFindFirstChar()
1200 if (0 != (_anchors & RegexFCD.Start)) in GenerateFindFirstChar()
1214 if (0 != (_anchors & RegexFCD.Beginning)) in GenerateFindFirstChar()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/regex/system/text/regularexpressions/
H A DRegexCode.cs110 …internal int _anchors; // the set of zero-length start anchors (RegexFCD… field in System.Text.RegularExpressions.RegexCode
132 _anchors = anchors; in RegexCode()
377 Debug.WriteLine("Anchors: " + RegexFCD.AnchorDescription(_anchors)); in Dump()
H A DRegexCompiler.cs97 internal int _anchors; // the set of anchors field in System.Text.RegularExpressions.RegexCompiler
1094 if (0 != (_anchors & RegexFCD.Beginning)) { in GenerateFindFirstChar()
1107 if (0 != (_anchors & RegexFCD.Start)) { in GenerateFindFirstChar()
1120 if (0 != (_anchors & RegexFCD.EndZ)) { in GenerateFindFirstChar()
1135 if (0 != (_anchors & RegexFCD.End)) { in GenerateFindFirstChar()
1147 if (0 != (_anchors & RegexFCD.End)) { in GenerateFindFirstChar()
1160 if (0 != (_anchors & RegexFCD.EndZ)) { in GenerateFindFirstChar()
1185 if (0 != (_anchors & RegexFCD.Start)) { in GenerateFindFirstChar()
1198 if (0 != (_anchors & RegexFCD.Beginning)) { in GenerateFindFirstChar()
3112 _anchors = code._anchors; in FactoryTypeFromCode()
[all …]
/dports/print/py-ufolib2/ufoLib2-0.11.4/src/ufoLib2/objects/
H A Dglyph.py73 _anchors: List[Anchor] = attr.ib(factory=list) variable in Glyph
113 return self._anchors
232 del self._anchors[:]
240 del self._anchors[:]
/dports/x11-fonts/py-defcon/defcon-0.6.0/Lib/defcon/objects/
H A Dglyph.py126 self._anchors = []
156 self._anchors = None
817 return list(self._anchors)
852 self.insertAnchor(len(self._anchors), anchor)
878 self._anchors.insert(index, anchor)
891 self._anchors.remove(anchor)
900 return self._anchors.index(anchor)
909 for anchor in reversed(self._anchors):
1241 for anchor in self._anchors:
/dports/x11/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2/lightdm_gtk_greeter_settings/
H A DPositionEntry.py149 self._anchors = {}
157 self._anchors[x_anchor, y_anchor] = w
183 anchor = self._anchors[self._x.anchor, self._y.anchor]
/dports/x11-fonts/py-glyphsLib/glyphsLib-3.1.4/Lib/glyphsLib/
H A Dclasses.py845 return self._owner._anchors[i]
857 self._owner._anchors.append(anchor)
863 del self._owner._anchors[key]
868 del self._owner._anchors[i]
872 return self._owner._anchors
878 self._owner._anchors[i] = anchor
881 self._owner._anchors.append(anchor)
888 self._owner._anchors.extend(anchors)
900 return len(self._owner._anchors)
905 self._owner._anchors = anchors
[all …]
/dports/www/p5-HTML-GenToc/HTML-GenToc-3.20/
H A DMANIFEST15 t/030_anchors.t
/dports/devel/gammaray/GammaRay-2.11.3/tests/
H A Dquickinspectortest.cpp294 QVERIFY(!rectWithoutAnchorsPriv->_anchors); in testAnchorsPropertyFilter()
295 QVERIFY(rectWithAnchorsPriv->_anchors); in testAnchorsPropertyFilter()
/dports/graphics/p5-SWF-Builder/SWF-Builder-0.16/lib/SWF/Builder/Character/
H A DShape.pm192 …$self->{_anchors}{$anchor} = [$#{$self->{_edges}}, $self->{_current_X}, $self->{_current_Y}, $#{$s…
242 my $last_anchor = $self->{_anchors}{$self->{_last_anchor}};
/dports/devel/zziplib/zziplib-0.13.72/docs/
H A Dmake-doc.pl249 $fn{$name}{_anchors} = "<a name=\"$name\" />";
259 $fn{$into}{_anchors} .= "<a name=\"$name\" />";
278 $htmlTXT .= "\n<dt>".$fn{$name}{_anchors}.$fn{$name}{_impcode}."<dt>";
/dports/devel/gammaray/GammaRay-2.11.3/plugins/quickinspector/
H A Dquickanchorspropertyadaptor.cpp98 …iant::fromValue(QQuickItemPrivate::get(qobject_cast<QQuickItem*>(object().qtObject()))->_anchors)); in propertyData()
H A Dquickimplicitbindingdependencyprovider.cpp75 QQuickAnchors *anchors = itemPriv->_anchors; in findBindingsFor()
180 QQuickAnchors *anchors = itemPriv->_anchors; in anchoringDependencies()

123