Home
last modified time | relevance | path

Searched refs:BItem (Results 1 – 13 of 13) sorted by relevance

/dports/audio/muse-sequencer/muse-4.0.0/src/muse/components/
H A Dcitem.cpp48 BItem::BItem(const QPoint&p, const QRect& r) : CItem() in BItem() function in MusEGui::BItem
58 PItem::PItem(const QPoint& p, const QRect& r) : BItem(p, r) in PItem()
63 PItem::PItem() : BItem() in PItem()
68 PItem::PItem(MusECore::Part* p) : BItem() in PItem()
H A Dcitem.h95 class BItem : public CItem {
102 BItem(const QPoint& p, const QRect& r);
103 BItem() { } in BItem() function
135 class PItem : public BItem {
/dports/devel/py-cffi/cffi-1.15.0/cffi/
H A Dbackend_ctypes.py497 def new_pointer_type(self, BItem): argument
504 elif BItem is getbtype(model.void_type):
513 _BItem = BItem
514 if hasattr(BItem, '_ctype'):
515 _ctype = ctypes.POINTER(BItem._ctype)
598 BItem = CTypesPtr._BItem
611 _ctype = BItem._ctype * length
647 PTR = ctypes.POINTER(BItem._ctype)
1069 BItem = BType._BItem
1070 offset = BItem._get_size() * fieldname
[all …]
H A Dmodel.py273 BItem = self.totype.get_cached_btype(ffi, finishlist, can_delay=True)
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
/dports/devel/py-cffi/stage/usr/local/lib/python3.8/site-packages/cffi/
H A Dbackend_ctypes.py497 def new_pointer_type(self, BItem): argument
504 elif BItem is getbtype(model.void_type):
513 _BItem = BItem
514 if hasattr(BItem, '_ctype'):
515 _ctype = ctypes.POINTER(BItem._ctype)
598 BItem = CTypesPtr._BItem
611 _ctype = BItem._ctype * length
647 PTR = ctypes.POINTER(BItem._ctype)
1069 BItem = BType._BItem
1070 offset = BItem._get_size() * fieldname
[all …]
H A Dmodel.py273 BItem = self.totype.get_cached_btype(ffi, finishlist, can_delay=True)
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
/dports/devel/py-cffi/cffi-1.15.0/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/cffi/
H A Dbackend_ctypes.py497 def new_pointer_type(self, BItem): argument
504 elif BItem is getbtype(model.void_type):
513 _BItem = BItem
514 if hasattr(BItem, '_ctype'):
515 _ctype = ctypes.POINTER(BItem._ctype)
598 BItem = CTypesPtr._BItem
611 _ctype = BItem._ctype * length
647 PTR = ctypes.POINTER(BItem._ctype)
1069 BItem = BType._BItem
1070 offset = BItem._get_size() * fieldname
[all …]
H A Dmodel.py273 BItem = self.totype.get_cached_btype(ffi, finishlist, can_delay=True)
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
/dports/databases/xapian-core/xapian-core-1.4.18/backends/glass/
H A Dglass_check.cc66 BItem item(p, c); in print_key()
86 BItem item(p, c); in print_tag()
203 BItem item(p, c); in block_check()
215 if (c > significant_c && compare(BItem(p, c - D2), item) >= 0) in block_check()
225 block_to_cursor(C_, j - 1, BItem(p, c).block_given_by()); in block_check()
234 if (compare(LeafItem(q, DIR_START), BItem(p, c)) < 0) in block_check()
241 compare(BItem(q, DIR_START + D2), BItem(p, c)) < 0) in block_check()
249 if (compare(LeafItem(q, DIR_END(q) - D2), BItem(p, c + D2)) >= 0) in block_check()
252 if (compare(BItem(q, DIR_END(q) - D2), BItem(p, c + D2)) >= 0) in block_check()
H A Dglass_table.h334 class BItem : public BItem_base<const uint8_t *> {
337 BItem(const uint8_t * p_, int c) : BItem_base<const uint8_t *>(p_, c) { } in BItem() function
338 explicit BItem(const uint8_t * p_) : BItem_base<const uint8_t *>(p_) { } in BItem() function
390 operator const BItem() const { return BItem(p); } in BItem() function
749 void enter_key_above_branch(int j, Glass::BItem newitem);
752 void add_item_to_branch(uint8_t *p, Glass::BItem kt, int c);
754 void add_branch_item(Glass::BItem kt, int j);
882 static int find_in_branch(const uint8_t * p, Glass::BItem item, int c);
964 compare(BItem a, BItem b) in compare()
H A Dglass_table.cc481 int r = compare(BItem(p, c), item); in find_in_branch_()
487 int r = compare(item, BItem(p, c)); in find_in_branch_()
495 int r = compare(item, BItem(p, k)); in find_in_branch_()
544 block_to_cursor(C_, j - 1, BItem(p, c).block_given_by()); in find()
583 BItem item(p, c); in compact()
701 GlassTable::enter_key_above_branch(int j, BItem newitem) in enter_key_above_branch()
743 l = BItem(p, c).size(); in mid_point()
940 GlassTable::add_branch_item(BItem kt_, int j) in add_branch_item()
1008 enter_key_above_branch(j + 1, BItem(p, DIR_START)); in add_branch_item()
1455 uint4 n = BItem(p, c).block_given_by(); in readahead_key()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/connectivity/
H A Dconnectivity_algo.h273 template <class Container, class BItem>
274 void add( Container& c, BItem brditem ) in add()
/dports/devel/py-cffi/cffi-1.15.0/c/
H A Dtest_c.py4188 BItem = new_primitive_type(typename)
4189 BArray = new_array_type(new_pointer_type(BItem), 10)