Home
last modified time | relevance | path

Searched refs:fset (Results 1 – 25 of 30) sorted by relevance

12

/third_party/boost/libs/container/test/
Dflat_set_test.cpp167 flat_set<int> fset(ordered_unique_range, int_set.begin(), int_set.end()); in flat_tree_ordered_insertion_test() local
168 if(!CheckEqualContainers(int_set, fset)) in flat_tree_ordered_insertion_test()
171 fset.clear(); in flat_tree_ordered_insertion_test()
172 fset.insert(ordered_unique_range, int_set.begin(), int_set.end()); in flat_tree_ordered_insertion_test()
173 if(!CheckEqualContainers(int_set, fset)) in flat_tree_ordered_insertion_test()
176 fset.insert(ordered_unique_range, int_set.begin(), int_set.end()); in flat_tree_ordered_insertion_test()
179 if(!CheckEqualContainers(int_set2, fset)) in flat_tree_ordered_insertion_test()
182 fset.insert(ordered_unique_range, int_set2.begin(), int_set2.end()); in flat_tree_ordered_insertion_test()
185 if(!CheckEqualContainers(int_set4, fset)) in flat_tree_ordered_insertion_test()
192 fset.insert(ordered_unique_range, int_even_set.begin(), int_even_set.end()); in flat_tree_ordered_insertion_test()
[all …]
Dset_test.cpp228 auto fset = set(int_set.begin(), int_set.end()); in constructor_template_auto_deduction_test() local
229 if (!CheckEqualContainers(int_set, fset)) in constructor_template_auto_deduction_test()
237 auto fset = set(int_set.begin(), int_set.end(), comp_int_t()); in constructor_template_auto_deduction_test() local
238 if (!CheckEqualContainers(int_set, fset)) in constructor_template_auto_deduction_test()
246 auto fset = set(int_set.begin(), int_set.end(), comp_int_t(), alloc_int_t()); in constructor_template_auto_deduction_test() local
247 if (!CheckEqualContainers(int_set, fset)) in constructor_template_auto_deduction_test()
255 auto fset = set(int_set.begin(), int_set.end(), alloc_int_t()); in constructor_template_auto_deduction_test() local
256 if (!CheckEqualContainers(int_set, fset)) in constructor_template_auto_deduction_test()
267 auto fset = set(ordered_unique_range, int_set.begin(), int_set.end()); in constructor_template_auto_deduction_test() local
268 if (!CheckEqualContainers(int_set, fset)) in constructor_template_auto_deduction_test()
[all …]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
Dtoken.go35 fset *token.FileSet member
41 func NewRange(fset *token.FileSet, start, end token.Pos) Range {
43 FileSet: fset,
51 func NewTokenConverter(fset *token.FileSet, f *token.File) *TokenConverter {
52 return &TokenConverter{fset: fset, file: f}
58 fset := token.NewFileSet()
59 f := fset.AddFile(filename, -1, len(content))
61 return &TokenConverter{fset: fset, file: f}
121 FileSet: converter.fset,
132 p := l.fset.Position(pos)
/third_party/spirv-tools/utils/vscode/src/lsp/span/
Dtoken.go35 fset *token.FileSet member
41 func NewRange(fset *token.FileSet, start, end token.Pos) Range {
43 FileSet: fset,
51 func NewTokenConverter(fset *token.FileSet, f *token.File) *TokenConverter {
52 return &TokenConverter{fset: fset, file: f}
58 fset := token.NewFileSet()
59 f := fset.AddFile(filename, -1, len(content))
61 return &TokenConverter{fset: fset, file: f}
121 FileSet: converter.fset,
132 p := l.fset.Position(pos)
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Dtoken.go35 fset *token.FileSet member
41 func NewRange(fset *token.FileSet, start, end token.Pos) Range {
43 FileSet: fset,
51 func NewTokenConverter(fset *token.FileSet, f *token.File) *TokenConverter {
52 return &TokenConverter{fset: fset, file: f}
58 fset := token.NewFileSet()
59 f := fset.AddFile(filename, -1, len(content))
61 return &TokenConverter{fset: fset, file: f}
121 FileSet: converter.fset,
132 p := l.fset.Position(pos)
/third_party/python/Lib/
Dtypes.py166 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument
168 self.fset = fset
186 if self.fset is None:
188 self.fset(instance, value)
197 result = type(self)(fget, self.fset, self.fdel, fdoc or self.__doc__)
201 def setter(self, fset): argument
202 result = type(self)(self.fget, fset, self.fdel, self.__doc__)
207 result = type(self)(self.fget, self.fset, fdel, self.__doc__)
/third_party/flutter/skia/gm/
Dfontmgr.cpp134 void iterateFamily(SkCanvas* canvas, const SkFont& font, SkFontStyleSet* fset) { in iterateFamily() argument
138 for (int j = 0; j < fset->count(); ++j) { in iterateFamily()
141 fset->getStyle(j, &fs, &sname); in iterateFamily()
145 f.setTypeface(sk_sp<SkTypeface>(fset->createTypeface(j))); in iterateFamily()
151 void exploreFamily(SkCanvas* canvas, const SkFont& font, SkFontStyleSet* fset) { in exploreFamily() argument
158 sk_sp<SkTypeface> face(fset->matchStyle(fs)); in exploreFamily()
180 sk_sp<SkFontStyleSet> fset; in onDraw() local
182 fset.reset(fFM->matchFamily(gNames[i])); in onDraw()
183 if (fset->count() > 0) { in onDraw()
187 if (nullptr == fset.get()) { in onDraw()
[all …]
/third_party/skia/gm/
Dfontmgr.cpp135 void iterateFamily(SkCanvas* canvas, const SkFont& font, SkFontStyleSet* fset) { in iterateFamily() argument
139 for (int j = 0; j < fset->count(); ++j) { in iterateFamily()
142 fset->getStyle(j, &fs, &sname); in iterateFamily()
146 f.setTypeface(sk_sp<SkTypeface>(fset->createTypeface(j))); in iterateFamily()
152 void exploreFamily(SkCanvas* canvas, const SkFont& font, SkFontStyleSet* fset) { in exploreFamily() argument
159 sk_sp<SkTypeface> face(fset->matchStyle(fs)); in exploreFamily()
181 sk_sp<SkFontStyleSet> fset; in onDraw() local
183 fset.reset(fFM->matchFamily(gNames[i])); in onDraw()
184 if (fset->count() > 0) { in onDraw()
188 if (nullptr == fset.get()) { in onDraw()
[all …]
/third_party/python/Objects/clinic/
Ddescrobject.c.h68 property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset,
82 PyObject *fset = NULL; in property_init() local
100 fset = fastargs[1]; in property_init()
113 return_value = property_init_impl((propertyobject *)self, fget, fset, fdel, doc); in property_init()
/third_party/boost/boost/python/object/
Dclass.hpp39 object const& fget, object const& fset, char const* docstr);
42 void add_static_property(char const* name, object const& fget, object const& fset);
/third_party/mksh/
Dvar.c1870 uint32_t fset = 0, fclr = 0, flag; in c_typeset() local
1882 fset |= EXPORT; in c_typeset()
1888 fset |= RDONLY; in c_typeset()
1988 fset &= ~flag; in c_typeset()
1991 fset |= flag; in c_typeset()
2018 if (func && (((fset|fclr) & ~(TRACE|UCASEV_AL|EXPORT)) || in c_typeset()
2029 if (fset & LCASEV) in c_typeset()
2031 fset &= ~UCASEV_AL; in c_typeset()
2032 if (fset & LJUST) in c_typeset()
2034 fset &= ~RJUST; in c_typeset()
[all …]
/third_party/python/Lib/lib2to3/pgen2/
Dpgen.py124 fset = self.first[label]
125 if fset is None:
129 fset = self.first[label]
130 totalset.update(fset)
131 overlapcheck[label] = fset
/third_party/boost/boost/python/
Dclass.hpp308 self& add_property(char const* name, Get fget, Set fset, char const* docstr = 0) in add_property() argument
311 name, this->make_getter(fget), this->make_setter(fset), docstr); in add_property()
323 self& add_static_property(char const* name, Get fget, Set fset) in add_static_property() argument
325 base::add_static_property(name, object(fget), object(fset)); in add_static_property()
/third_party/boost/libs/python/src/object/
Dclass.cpp627 char const* name, object const& fget, object const& fset, char const* docstr) in add_property() argument
631 …ction((PyObject*)&PyProperty_Type, const_cast<char*>("OOss"), fget.ptr(), fset.ptr(), (char*)NULL,… in add_property()
646 void class_base::add_static_property(char const* name, object const& fget, object const& fset) in add_static_property() argument
650 PyObject_CallFunction(static_data(), const_cast<char*>("OO"), fget.ptr(), fset.ptr())); in add_static_property()
/third_party/ffmpeg/libavcodec/
Dapedec.c163 …int fset; ///< which filter set to use (calculated from compression… member
278 s->fset = s->compression_level / 1000 - 1; in ape_decode_init()
280 if (!ape_filter_orders[s->fset][i]) in ape_decode_init()
282 if (!(s->filterbuf[i] = av_malloc((ape_filter_orders[s->fset][i] * 3 + HISTORY_SIZE) * 4))) in ape_decode_init()
1386 if (!ape_filter_orders[ctx->fset][i]) in ape_apply_filters()
1389 ape_filter_orders[ctx->fset][i], in ape_apply_filters()
1390 ape_filter_fracbits[ctx->fset][i]); in ape_apply_filters()
1402 if (!ape_filter_orders[ctx->fset][i]) in init_frame_decoder()
1405 ape_filter_orders[ctx->fset][i]); in init_frame_decoder()
/third_party/boost/libs/python/doc/reference/
Dclass.qbk90 char const* name, Get const& fget, Set const& fset, char const* doc=0);
95 void add_static_property(char const* name, Get const& fget, Set const& fset);
201 char const* name, Get const& fget, Set const& fset, char const* doc=0);
205 …ml#property property] class instance, passing `object(fget)` (and `object(fset)` in the second for…
213 void add_static_property(char const* name, Get const& fget, Set const& fset);
217 …[[Effects][Creates a Boost.Python.StaticProperty object, passing `object(fget)` (and `object(fset)…
/third_party/boost/libs/hana/example/misc/
Dinfinite_set.cpp96 static constexpr auto apply(F fset, Set set) { in apply()
97 return flatten(transform(fset, partial(transform, set))); in apply()
/third_party/python/Lib/test/
Dpydocfodder.py117 A_property = property(fdel=_delx, fget=_getx, fset=_setx,
Dtest_abc.py232 def __init__(self, fget, fset=None): argument
234 self._fset = fset
Dtest_enum.py125 def __init__(self, fget=None, fset=None, fdel=None, doc=None): argument
127 self.fset = fset
/third_party/python/Objects/
Ddescrobject.c1722 property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset, in property_init_impl() argument
1728 if (fset == Py_None) in property_init_impl()
1729 fset = NULL; in property_init_impl()
1734 Py_XINCREF(fset); in property_init_impl()
1739 Py_XSETREF(self->prop_set, fset); in property_init_impl()
/third_party/python/Doc/howto/
Ddescriptor.rst944 property(fget=None, fset=None, fdel=None, doc=None) -> property
978 def __init__(self, fget=None, fset=None, fdel=None, doc=None):
980 self.fset = fset
998 if self.fset is None:
1000 self.fset(obj, value)
1008 prop = type(self)(fget, self.fset, self.fdel, self.__doc__)
1012 def setter(self, fset):
1013 prop = type(self)(self.fget, fset, self.fdel, self.__doc__)
1018 prop = type(self)(self.fget, self.fset, fdel, self.__doc__)
/third_party/gettext/gettext-tools/emacs/
Dpo-mode.el492 (fset 'po-buffer-substring
498 (fset 'po-match-string (symbol-function 'match-string-no-properties))
506 (fset 'po-with-temp-buffer (symbol-function 'with-temp-buffer))
526 (fset 'po-kill-new (symbol-function 'kill-new))
536 (fset 'po-read-event
547 (fset 'po-force-mode-line-update
/third_party/python/Doc/library/
Dtypes.rst458 .. function:: DynamicClassAttribute(fget=None, fset=None, fdel=None, doc=None)
Dfunctions.rst1409 .. class:: property(fget=None, fset=None, fdel=None, doc=None)
1413 *fget* is a function for getting an attribute value. *fset* is a function
1480 The returned property object also has the attributes ``fget``, ``fset``, and

12