Home
last modified time | relevance | path

Searched defs:Item (Results 176 – 200 of 35276) sorted by relevance

12345678910>>...1412

/dports/multimedia/audacious-plugins/audacious-plugins-4.1/src/search-tool/
H A Dsearch-model.h46 struct Item struct
50 Item * parent; argument
51 SimpleHash<Key, Item> children; argument
54 Item (SearchField field, const String & name, Item * parent) : in Item() function
61 Item & operator= (Item &&) = default; argument
/dports/textproc/libmwaw03/libmwaw-0.3.20/src/lib/
H A DCanvas5Parser.hxx183 struct Item { struct in Canvas5Parser
185 Item() in Item() argument
195 int m_id;
197 unsigned m_type;
199 long m_length;
201 long m_pos;
203 int m_decal;
/dports/devel/godot2/godot-2.1.6-stable/scene/resources/
H A Dmesh_library.h44 struct Item { struct
52 Map<int, Item> item_map; argument
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/resources/
H A Dmesh_library.h44 struct Item { struct
52 Map<int, Item> item_map; argument
/dports/games/fheroes2/fheroes2-0.9.11/src/fheroes2/gui/
H A Dinterface_itemsbar.h56 virtual bool ActionBarRightMouseHold( Item & ) in ActionBarRightMouseHold() argument
61 virtual bool ActionBarCursor( Item & ) in ActionBarCursor() argument
288 bool ActionBarCursor( Item & ) override in ActionBarCursor() argument
293 virtual bool ActionBarCursor( Item &, Item & ) in ActionBarCursor() argument
298 virtual bool ActionBarLeftMouseSingleClick( Item &, Item & ) in ActionBarLeftMouseSingleClick() argument
318 virtual bool ActionBarLeftMouseRelease( Item &, Item & ) in ActionBarLeftMouseRelease() argument
323 virtual bool ActionBarRightMouseHold( Item &, Item & ) in ActionBarRightMouseHold() argument
328 virtual bool ActionBarLeftMouseHold( Item & ) in ActionBarLeftMouseHold() argument
333 virtual bool ActionBarLeftMouseHold( Item &, Item & ) in ActionBarLeftMouseHold() argument
348 virtual bool ActionBarRightMouseSingleClick( Item &, Item & ) in ActionBarRightMouseSingleClick() argument
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/scene/resources/
H A Dmesh_library.h50 struct Item { struct
59 Map<int, Item> item_map; argument
/dports/devel/godot/godot-3.2.3-stable/scene/resources/
H A Dmesh_library.h50 struct Item { struct
59 Map<int, Item> item_map; argument
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/
H A DYamlSNIConfig.h76 struct Item { struct
99 std::vector<YamlSNIConfig::Item> items; argument
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/rayon/src/iter/
H A Dextend.rs13 F: FnOnce(&mut C, &LinkedList<Vec<I::Item>>), in extend()
14 C: Extend<I::Item> in extend()
58 where I: IntoParallelIterator<Item = T> in par_extend()
69 where I: IntoParallelIterator<Item = &'a T> in par_extend()
82 where I: IntoParallelIterator<Item = (K, V)> in par_extend()
106 where I: IntoParallelIterator<Item = T> in par_extend()
117 where I: IntoParallelIterator<Item = &'a T> in par_extend()
158 where I: IntoParallelIterator<Item = T> in par_extend()
182 where I: IntoParallelIterator<Item = T> in par_extend()
214 where I: IntoParallelIterator<Item = char> in par_extend()
[all …]
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/cargo-crates/rayon-1.1.0/src/iter/
H A Dextend.rs14 F: FnOnce(&mut C, &LinkedList<Vec<I::Item>>), in extend()
15 C: Extend<I::Item>, in extend()
61 I: IntoParallelIterator<Item = T>, in par_extend()
74 I: IntoParallelIterator<Item = &'a T>, in par_extend()
88 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
115 I: IntoParallelIterator<Item = T>, in par_extend()
128 I: IntoParallelIterator<Item = &'a T>, in par_extend()
173 I: IntoParallelIterator<Item = T>, in par_extend()
200 I: IntoParallelIterator<Item = T>, in par_extend()
233 I: IntoParallelIterator<Item = char>, in par_extend()
[all …]
/dports/games/dose-response/dose-response-179c326/cargo-crates/rayon-1.0.3/src/iter/
H A Dextend.rs13 F: FnOnce(&mut C, &LinkedList<Vec<I::Item>>), in extend()
14 C: Extend<I::Item> in extend()
58 where I: IntoParallelIterator<Item = T> in par_extend()
69 where I: IntoParallelIterator<Item = &'a T> in par_extend()
82 where I: IntoParallelIterator<Item = (K, V)> in par_extend()
106 where I: IntoParallelIterator<Item = T> in par_extend()
117 where I: IntoParallelIterator<Item = &'a T> in par_extend()
158 where I: IntoParallelIterator<Item = T> in par_extend()
182 where I: IntoParallelIterator<Item = T> in par_extend()
214 where I: IntoParallelIterator<Item = char> in par_extend()
[all …]
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/menus/
H A Djuce_PopupMenu.h110 struct JUCE_API Item struct
125 Item& operator= (const Item&); argument
127 Item& operator= (Item&&); argument
130 String text;
137 int itemID = 0;
140 std::function<void()> action;
143 std::unique_ptr<PopupMenu> subMenu;
146 std::unique_ptr<Drawable> image;
152 ReferenceCountedObjectPtr<CustomCallback> customCallback;
155 ApplicationCommandManager* commandManager = nullptr;
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/associated-types/
H A Dassociated-types-impl-redirect.rs18 type Item; typedef
20 fn next(&mut self) -> Option<Self::Item>; in next()
34 type Item = I::Item; typedef
36 fn next(&mut self) -> Option< <I as Iterator>::Item > { in next()
41 fn is_iterator_of<A, I: Iterator<Item=A>>(_: &I) {} in is_iterator_of()
43 fn test<A, I: Iterator<Item=A>>(mut it: I) { in test()
47 fn test2<A, I1: Iterator<Item=A>, I2: Iterator<Item=I1::Item>>(mut it: I2) { in test2()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/menus/
H A Djuce_PopupMenu.h110 struct JUCE_API Item struct
125 Item& operator= (const Item&); argument
127 Item& operator= (Item&&); argument
130 String text;
137 int itemID = 0;
140 std::function<void()> action;
143 std::unique_ptr<PopupMenu> subMenu;
146 std::unique_ptr<Drawable> image;
152 ReferenceCountedObjectPtr<CustomCallback> customCallback;
155 ApplicationCommandManager* commandManager = nullptr;
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/mmcdole/gofeed/
H A Dfeed.go45 type Item struct { struct
46 Title string `json:"title,omitempty"`
48 Content string `json:"content,omitempty"`
49 Link string `json:"link,omitempty"`
50 Updated string `json:"updated,omitempty"`
52 Published string `json:"published,omitempty"`
54 Author *Person `json:"author,omitempty"`
55 GUID string `json:"guid,omitempty"`
56 Image *Image `json:"image,omitempty"`
59 DublinCoreExt *ext.DublinCoreExtension `json:"dcExt,omitempty"`
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/mmcdole/gofeed/gofeed-0e68beaf6fdf/
H A Dfeed.go45 type Item struct { struct
46 Title string `json:"title,omitempty"`
48 Content string `json:"content,omitempty"`
49 Link string `json:"link,omitempty"`
50 Updated string `json:"updated,omitempty"`
52 Published string `json:"published,omitempty"`
54 Author *Person `json:"author,omitempty"`
55 GUID string `json:"guid,omitempty"`
56 Image *Image `json:"image,omitempty"`
59 DublinCoreExt *ext.DublinCoreExtension `json:"dcExt,omitempty"`
[all …]
/dports/audio/musicpd/mpd-0.23.6/src/
H A DRemoteTagCache.hxx47 struct Item final struct in RemoteTagCache
52 RemoteTagCache &parent;
54 const std::string uri;
56 std::unique_ptr<RemoteTagScanner> scanner;
58 Tag tag;
61 Item(RemoteTagCache &_parent, U &&_uri) noexcept in Item() argument
68 struct Hash : std::hash<std::string> {
77 struct Equal {
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/kube-openapi/kube-openapi-743ec37842bf/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/sysutils/chaoskube/chaoskube-0.22.0/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/misc/concourse/concourse-6.7.2/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/sysutils/helm/helm-3.5.2/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/sysutils/istio/istio-1.6.7/vendor/k8s.io/kube-openapi/test/integration/testdata/listtype/
H A Dmap-list.go11 type Item struct { struct
12 Protocol string
13 Port int
15 A int `json:"a"`
17 B int `json:"b,omitempty"`
19 C int `json:"c,omitEmpty"`
/dports/graphics/scantailor/scantailor-advanced-1.0.16/
H A DDebugImages.h64 struct Item : public ref_countable { struct
69 Item(AutoRemovingFile f, const QString& l, const boost::function<QWidget*(const QImage&)>& imf) in Item() argument

12345678910>>...1412