Home
last modified time | relevance | path

Searched refs:Key_t (Results 1 – 25 of 70) sorted by relevance

123

/dports/math/clasp/clasp-3.3.5/libpotassco/potassco/
H A Dclingo.h197 typedef uint64_t Key_t; typedef
202 virtual Key_t root() const = 0;
204 virtual Statistics_t type(Key_t key) const = 0;
206 virtual size_t size(Key_t key) const = 0;
219 virtual Key_t at(Key_t arr, size_t index) const = 0;
229 virtual Key_t push(Key_t arr, Statistics_t type) = 0;
246 virtual Key_t get(Key_t mapK, const char* at) const = 0;
256 virtual bool find(Key_t mapK, const char* element, Key_t* outKey) const = 0;
271 virtual Key_t add(Key_t mapK, const char* name, Statistics_t type) = 0;
279 virtual double value(Key_t key) const = 0;
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/libpotassco/potassco/
H A Dclingo.h216 typedef uint64_t Key_t; typedef
221 virtual Key_t root() const = 0;
223 virtual Statistics_t type(Key_t key) const = 0;
225 virtual size_t size(Key_t key) const = 0;
238 virtual Key_t at(Key_t arr, size_t index) const = 0;
248 virtual Key_t push(Key_t arr, Statistics_t type) = 0;
265 virtual Key_t get(Key_t mapK, const char* at) const = 0;
275 virtual bool find(Key_t mapK, const char* element, Key_t* outKey) const = 0;
290 virtual Key_t add(Key_t mapK, const char* name, Statistics_t type) = 0;
298 virtual double value(Key_t key) const = 0;
[all …]
/dports/games/warmux/warmux-11.04/src/interface/
H A Dman_machine_interface.h94 } Key_t; typedef
111 std::map<int, std::vector<Key_t> > layout;
117 void HandleKeyPressed(const Key_t &action_key);
118 void HandleKeyReleased(const Key_t &action_key);
120 void SetKeyAction(int key, Key_t at) { layout[key].push_back(at); }; in SetKeyAction()
121 void ClearKeyAction(Key_t at);
127 Key_t GetActionFromActionName(const std::string &name) const;
128 std::string GetActionNameFromAction(Key_t) const;
129 std::string GetHumanReadableActionName(Key_t) const;
139 int GetKeyAssociatedToAction(Key_t at) const;
H A Dkeyboard.cpp66 ManMachineInterface::Key_t
73 std::map<int, std::vector<Key_t> >::const_iterator it = layout.find(key_code); in GetRegisteredAction()
82 bool Keyboard::SaveKeyEvent(Key_t at, int raw_key_code, in SaveKeyEvent()
132 Key_t action; in SetConfig()
160 std::map<int, std::vector<Key_t> >::const_iterator it; in SaveConfig()
163 const std::vector<Key_t>& actions = it->second; in SaveConfig()
206 std::map<int, std::vector<Key_t> >::iterator it = layout.find(key_code); in HandleKeyComboEvent()
212 const std::vector<Key_t>& keys = it->second; in HandleKeyComboEvent()
213 std::vector<Key_t>::const_iterator itv; in HandleKeyComboEvent()
/dports/math/clasp/clasp-3.3.5/clasp/
H A Dstatistics.h261 virtual Key_t root() const;
262 virtual Type type(Key_t key) const;
265 virtual Key_t at(Key_t arrK, size_t index) const;
266 virtual Key_t push(Key_t arr, Type type);
268 virtual Key_t get(Key_t mapK, const char* key) const;
269 virtual bool find(Key_t mapK, const char* element, Key_t* outKey) const;
270 virtual Key_t add(Key_t mapK, const char* name, Type type);
274 Key_t changeRoot(Key_t newRoot);
276 bool removeStat(Key_t k, bool recurse);
280 StatisticObject findObject(Key_t root, const char* path, Key_t* track = 0) const;
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/clasp/
H A Dstatistics.h261 virtual Key_t root() const;
262 virtual Type type(Key_t key) const;
265 virtual Key_t at(Key_t arrK, size_t index) const;
266 virtual Key_t push(Key_t arr, Type type);
268 virtual Key_t get(Key_t mapK, const char* key) const;
269 virtual bool find(Key_t mapK, const char* element, Key_t* outKey) const;
270 virtual Key_t add(Key_t mapK, const char* name, Type type);
274 Key_t changeRoot(Key_t newRoot);
276 bool removeStat(Key_t k, bool recurse);
280 StatisticObject findObject(Key_t root, const char* path, Key_t* track = 0) const;
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/clasp-da10954/clasp/
H A Dstatistics.h261 virtual Key_t root() const;
262 virtual Type type(Key_t key) const;
265 virtual Key_t at(Key_t arrK, size_t index) const;
266 virtual Key_t push(Key_t arr, Type type);
268 virtual Key_t get(Key_t mapK, const char* key) const;
269 virtual bool find(Key_t mapK, const char* element, Key_t* outKey) const;
270 virtual Key_t add(Key_t mapK, const char* name, Type type);
274 Key_t changeRoot(Key_t newRoot);
276 bool removeStat(Key_t k, bool recurse);
280 StatisticObject findObject(Key_t root, const char* path, Key_t* track = 0) const;
[all …]
/dports/math/clasp/clasp-3.3.5/src/
H A Dstatistics.cpp181 bool writable(Key_t k) const { in writable()
203 T* writable(Key_t k) const { in writable()
243 static Key_t key(const StatisticObject& obj) { return static_cast<Key_t>(obj.toRep()); } in key()
248 Key_t root_;
279 ClaspStatistics::Key_t ClaspStatistics::at(Key_t arrK, size_t index) const { in at()
285 ClaspStatistics::Key_t ClaspStatistics::get(Key_t key, const char* path) const { in get()
290 bool ClaspStatistics::find(Key_t mapK, const char* element, Key_t* outKey) const { in find()
307 ClaspStatistics::Key_t ClaspStatistics::changeRoot(Key_t k) { in changeRoot()
308 Key_t old = impl_->root_; in changeRoot()
364 ClaspStatistics::Key_t ClaspStatistics::push(Key_t key, Type type) { in push()
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/clasp-da10954/src/
H A Dstatistics.cpp181 bool writable(Key_t k) const { in writable()
203 T* writable(Key_t k) const { in writable()
243 static Key_t key(const StatisticObject& obj) { return static_cast<Key_t>(obj.toRep()); } in key()
248 Key_t root_;
279 ClaspStatistics::Key_t ClaspStatistics::at(Key_t arrK, size_t index) const { in at()
285 ClaspStatistics::Key_t ClaspStatistics::get(Key_t key, const char* path) const { in get()
290 bool ClaspStatistics::find(Key_t mapK, const char* element, Key_t* outKey) const { in find()
307 ClaspStatistics::Key_t ClaspStatistics::changeRoot(Key_t k) { in changeRoot()
308 Key_t old = impl_->root_; in changeRoot()
364 ClaspStatistics::Key_t ClaspStatistics::push(Key_t key, Type type) { in push()
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/src/
H A Dstatistics.cpp181 bool writable(Key_t k) const { in writable()
203 T* writable(Key_t k) const { in writable()
243 static Key_t key(const StatisticObject& obj) { return static_cast<Key_t>(obj.toRep()); } in key()
248 Key_t root_;
279 ClaspStatistics::Key_t ClaspStatistics::at(Key_t arrK, size_t index) const { in at()
285 ClaspStatistics::Key_t ClaspStatistics::get(Key_t key, const char* path) const { in get()
290 bool ClaspStatistics::find(Key_t mapK, const char* element, Key_t* outKey) const { in find()
307 ClaspStatistics::Key_t ClaspStatistics::changeRoot(Key_t k) { in changeRoot()
308 Key_t old = impl_->root_; in changeRoot()
364 ClaspStatistics::Key_t ClaspStatistics::push(Key_t key, Type type) { in push()
[all …]
/dports/math/mfem/mfem-4.3/fem/tmop/
H A Dtmop_pa.hpp50 using Key_t = typename K::Key_t; typedef in mfem::kernels::KernelMap
53 using map_t = std::unordered_map<Key_t, Kernel_t>;
60 bool Find(const Key_t id) { return map.find(id) != map.end(); } in Find()
62 Kernel_t At(const Key_t id) { return map.at(id); } in At()
66 constexpr Key_t key = K::template GetKey<N>(); in Emplace()
162 using Key_t = int;\
165 template<Key_t I> static constexpr Key_t GetKey() noexcept { return \
170 template<Key_t K> static constexpr Kernel_t GetKer() noexcept\
/dports/x11/xcape/xcape-1.2-9-g6ded5b4/
H A Dxcape.c43 } Key_t; typedef
50 Key_t *to_keys;
68 Key_t *generated;
83 Key_t *key_add_key (Key_t *keys, KeyCode key);
85 void delete_keys (Key_t *keys);
278 Key_t *key_add_key (Key_t *keys, KeyCode key) in key_add_key()
280 Key_t *rval = keys; in key_add_key()
302 Key_t *k; in handle_key()
364 Key_t *g, *g_prev = NULL; in intercept()
562 void delete_keys (Key_t *keys) in delete_keys()
[all …]
/dports/math/clingo/clingo-5.5.1/libclingo/clingo/
H A Dclingocontrol.hh236 Key_t root() const override { return root_; } in root()
238 size_t size(Key_t key) const override { return stats_->size(key); } in size()
239 bool writable(Key_t key) const override { return stats_->writable(key); } in writable()
241 Key_t at(Key_t arr, size_t index) const override { return stats_->at(arr, index); } in at()
242 Key_t push(Key_t arr, Potassco::Statistics_t type) override { return stats_->push(arr, type); } in push()
245 Key_t get(Key_t mapK, const char* at) const override { return stats_->get(mapK, at); } in get()
246 …bool find(Key_t mapK, const char* element, Key_t* outKey) const override { return stats_->find(map… in find()
248Key_t add(Key_t mapK, const char* name, Potassco::Statistics_t type) override { return stats_->add… in add()
249 double value(Key_t key) const override { return stats_->value(key); } in value()
250 void set(Key_t key, double value) override { return stats_->set(key, value); } in set()
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/dsslib/merge/
H A Dmerge.c38 struct Key_s; typedef struct Key_s Key_t; typedef
51 Key_t* next;
64 Key_t* keys;
77 Key_t* kp; in ordercmp()
110 register Key_t* kp; in enter()
145 Key_t* key; in merge_beg()
146 Key_t* lastkey; in merge_beg()
147 Key_t* keys; in merge_beg()
169 if (!(key = vmnewof(vm, 0, Key_t, 1, 0))) in merge_beg()
/dports/shells/ksh93/ast-93u/src/cmd/dsslib/merge/
H A Dmerge.c38 struct Key_s; typedef struct Key_s Key_t; typedef
51 Key_t* next;
64 Key_t* keys;
77 Key_t* kp; in ordercmp()
110 register Key_t* kp; in enter()
145 Key_t* key; in merge_beg()
146 Key_t* lastkey; in merge_beg()
147 Key_t* keys; in merge_beg()
169 if (!(key = vmnewof(vm, 0, Key_t, 1, 0))) in merge_beg()
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/dsslib/merge/
H A Dmerge.c38 struct Key_s; typedef struct Key_s Key_t; typedef
51 Key_t* next;
64 Key_t* keys;
77 Key_t* kp; in ordercmp()
110 register Key_t* kp; in enter()
145 Key_t* key; in merge_beg()
146 Key_t* lastkey; in merge_beg()
147 Key_t* keys; in merge_beg()
169 if (!(key = vmnewof(vm, 0, Key_t, 1, 0))) in merge_beg()
/dports/math/clasp/clasp-3.3.5/tests/
H A Dfacade_test.cpp752 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1020 typedef Potassco::AbstractStatistics::Key_t Key_t; in addExternalStats() typedef
1059 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1092 Key_t result;
1104 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1156 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1173 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1192 typedef ClaspStatistics::Key_t Key_t; typedef
1205 Key_t found;
1219 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/clasp-da10954/tests/
H A Dfacade_test.cpp913 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1259 typedef Potassco::AbstractStatistics::Key_t Key_t; in addExternalStats() typedef
1299 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1338 Key_t result;
1350 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1406 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1423 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1442 typedef ClaspStatistics::Key_t Key_t; typedef
1455 Key_t found;
1469 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
[all …]
/dports/math/clingo/clingo-5.5.1/clasp/tests/
H A Dfacade_test.cpp913 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1259 typedef Potassco::AbstractStatistics::Key_t Key_t; in addExternalStats() typedef
1299 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1338 Key_t result;
1350 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1406 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1423 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
1442 typedef ClaspStatistics::Key_t Key_t; typedef
1455 Key_t found;
1469 typedef Potassco::AbstractStatistics::Key_t Key_t; typedef
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libast/regex/
H A Dregcache.c35 typedef unsigned long Key_t; typedef
87 Key_t key; in regcache()
145 …else if (*(Key_t*)matchstate.cache[i]->pattern == key && !strcmp(matchstate.cache[i]->pattern, pat… in regcache()
180 while (++i < sizeof(Key_t)) in regcache()
/dports/shells/ksh93/ast-93u/src/lib/libast/regex/
H A Dregcache.c35 typedef unsigned long Key_t; typedef
87 Key_t key; in regcache()
145 …else if (*(Key_t*)matchstate.cache[i]->pattern == key && !strcmp(matchstate.cache[i]->pattern, pat… in regcache()
180 while (++i < sizeof(Key_t)) in regcache()
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libast/regex/
H A Dregcache.c35 typedef unsigned long Key_t; typedef
87 Key_t key; in regcache()
145 …else if (*(Key_t*)matchstate.cache[i]->pattern == key && !strcmp(matchstate.cache[i]->pattern, pat… in regcache()
180 while (++i < sizeof(Key_t)) in regcache()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/utils/
H A Dfsm.cpp47 Key_t key( state1, event ); in addTransition()
75 Key_t key( m_currentState, event ); in handleTransition()
76 std::map<Key_t, Data_t>::const_iterator it; in handleTransition()
/dports/shells/ksh2020/ast-ksh2020/src/lib/libast/regex/
H A Dregcache.c42 } Key_t; typedef
88 Key_t key; in regcache()
136 } else if (((Key_t *)matchstate.cache[i]->pattern)->uint == key.uint && in regcache()
171 while (++i < sizeof(Key_t)) cp->pattern[i] = 0; in regcache()
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libcmd/
H A Dchgrp.c128 } Key_t; typedef
133 Key_t key; /* key */
134 Key_t to; /* map to these */
157 getids(register char* s, char** e, Key_t* key, int options) in getids()
239 Key_t keys[3]; in b_chgrp()
240 Key_t key; in b_chgrp()
287 mapdisc.size = sizeof(Key_t); in b_chgrp()

123