Home
last modified time | relevance | path

Searched refs:KeyValues (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch/test/eunit/
H A Dcouch_btree_tests.erl208 ?_assert(test_btree(Btree, KeyValues)).
220 should_remove_all_keys(KeyValues, Btree) ->
221 Keys = keys(KeyValues),
263 KeyValuesRev = lists:reverse(KeyValues),
447 ?_assert(test_btree(Btree, KeyValues)).
491 test_btree(Btree, KeyValues) ->
492 ok = test_key_access(Btree, KeyValues),
527 test_lookup_access(Btree, KeyValues) ->
534 end, KeyValues).
536 test_final_reductions(Btree, KeyValues) ->
[all …]
/dports/benchmarks/tsung/tsung-1.7.0/src/test/
H A Dts_test_dynvars_api.erl11 from_keyval_list(KeyValues) ->
16 KeyValues
48 KeyValues = [one,two,three,four],
49 DynVars = from_keyval_list([{K,K} || K <- KeyValues]),
50 ?assertEqual([{ok,K} || K <- KeyValues],
51 [ts_dynvars:lookup(Key, DynVars) || Key <- KeyValues]).
64 KeyValues = [{K,K} || K <- [one,two,three,four]],
65 ?assertEqual(lists:reverse(KeyValues),
66 ts_dynvars:entries(from_keyval_list(KeyValues))).
69 KeyValues = [{K,K} || K <- [one,two,three,four]],
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/unit/unittest/
H A Dsqlitealgorithms-test.cpp84 using KeyValues = std::vector<KeyValue>; typedef
145 KeyValues keyValues = {{"one", 1}, {"oneone", 11}}; in TEST_F()
154 KeyValues keyValues = {{"two", 2}, {"twotwo", 22}}; in TEST_F()
169 KeyValues keyValues = {{"one", 1}, {"two", 2}}; in TEST_F()
184 KeyValues keyValues = {{"one", 1}, {"oneone", 11}}; in TEST_F()
199 KeyValues keyValues = {{"one", 1}, {"oneone", 11}}; in TEST_F()
201 KeyValues changedKeyValues = {{"one", 2}, {"oneone", 22}}; in TEST_F()
227 KeyValues lessKeyValues = {{"two", 2}, {"twotwo", 22}}; in TEST_F()
238 KeyValues lessKeyValues = {{"one", 1}, {"oneone", 11}}; in TEST_F()
249 KeyValues lessKeyValues = {{"one", 1}, {"oneone", 11}}; in TEST_F()
[all …]
/dports/games/atr3d/atr3d/
H A Dinput.cpp100 KeyValues.zForwardKey=1; in KeyDown()
115 KeyValues.xFRotateKey=1; in KeyDown()
118 KeyValues.xBRotateKey=1; in KeyDown()
122 KeyValues.yFRotateKey=1; in KeyDown()
125 KeyValues.yBRotateKey=1; in KeyDown()
129 KeyValues.zFRotateKey=1; in KeyDown()
132 KeyValues.zBRotateKey=1; in KeyDown()
147 KeyValues.ShieldKey=1; in KeyDown()
152 KeyValues.WarpKey=1; in KeyDown()
157 KeyValues.NukeKey=1; in KeyDown()
[all …]
H A Dreadnetworkdata.cpp35 KeyValuesStruct KeyValues; in ReadNetworkData() local
66 memcpy(&KeyValues, readval, sizeof(KeyValuesStruct)); in ReadNetworkData()
83 if (KeyValues.zForwardKey && !KeyValues.zBackwardKey) { in ReadNetworkData()
85 } else if (KeyValues.zBackwardKey && !KeyValues.zForwardKey) { in ReadNetworkData()
91 if (KeyValues.xFRotateKey && !KeyValues.xBRotateKey) { in ReadNetworkData()
93 } else if (KeyValues.xBRotateKey && !KeyValues.xFRotateKey) { in ReadNetworkData()
98 if (KeyValues.yFRotateKey && !KeyValues.yBRotateKey) { in ReadNetworkData()
100 } else if (KeyValues.yBRotateKey && !KeyValues.yFRotateKey) { in ReadNetworkData()
105 if (KeyValues.zFRotateKey && !KeyValues.zBRotateKey) { in ReadNetworkData()
107 } else if (KeyValues.zBRotateKey && !KeyValues.zFRotateKey) { in ReadNetworkData()
[all …]
H A Dinit.cpp217 KeyValues.FireKey=0; in InitKeyValues()
218 KeyValues.ShieldKey=0; in InitKeyValues()
219 KeyValues.WarpKey=0; in InitKeyValues()
226 KeyValues.zForwardKey=0; in InitKeyValues()
227 KeyValues.zBackwardKey=0; in InitKeyValues()
228 KeyValues.xFRotateKey=0; in InitKeyValues()
229 KeyValues.xBRotateKey=0; in InitKeyValues()
230 KeyValues.yFRotateKey=0; in InitKeyValues()
231 KeyValues.yBRotateKey=0; in InitKeyValues()
232 KeyValues.zFRotateKey=0; in InitKeyValues()
[all …]
/dports/dns/cli53/cli53-0.8.18/
H A Dawsrr.go71 Parse(KeyValues) argument
82 var kvs KeyValues
102 func (f *FailoverRoute) Parse(kvs KeyValues) {
113 args := KeyValues{"routing", "GEOLOCATION"}
126 func (f *GeoLocationRoute) Parse(kvs KeyValues) {
137 return KeyValues{"routing", "LATENCY", "region", f.Region}.String()
140 func (f *LatencyRoute) Parse(kvs KeyValues) {
149 return KeyValues{"routing", "WEIGHTED", "weight", f.Weight}.String()
152 func (f *WeightedRoute) Parse(kvs KeyValues) {
160 return KeyValues{"routing", "MULTIVALUE"}.String()
[all …]
H A Dutil_test.go10 assert.Equal(t, "a=1", KeyValues{"a", 1}.String())
11 assert.Equal(t, `a=""`, KeyValues{"a", ""}.String())
12 assert.Equal(t, `a="1"`, KeyValues{"a", "1"}.String())
13 assert.Equal(t, `a="\""`, KeyValues{"a", `"`}.String())
32 assert.Equal(t, KeyValues{"a", 1, "b", 2}, mustParse("a=1 b=2"))
33 assert.Equal(t, KeyValues{"a", 1, "b", 2}, mustParse("a=1 b=2"))
34 assert.Equal(t, KeyValues{"a", 1, "b", "c"}, mustParse(`a=1 b="c"`))
35 assert.Equal(t, KeyValues{"a", 1, "b", "c d"}, mustParse(`a=1 b="c d"`))
36 assert.Equal(t, KeyValues{"a", 1, "b", `c"\d`}, mustParse(`a=1 b="c\"\\d"`))
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/libs/
H A Dentitylib.h430 typedef std::vector<KeyValuePair> KeyValues; typedef
432 KeyValues m_keyValues;
437 ObservedUndoableObject<KeyValues> m_undo;
473KeyValues::iterator i = m_keyValues.insert(m_keyValues.end(), KeyValues::value_type(key, keyValue)… in insert()
483 KeyValues::iterator i = find(key); in insert()
492 void erase (KeyValues::iterator i) in erase()
506 KeyValues::iterator i = find(key); in erase()
513 KeyValues::const_iterator find (const std::string& key) const in find()
524 KeyValues::iterator find (const std::string& key) in find()
567 void importState (const KeyValues& keyValues) in importState()
[all …]
/dports/games/gtkradiant/GPL/GtkRadiant/libs/
H A Dentitylib.h431 typedef UnsortedMap<CopiedString, KeyValuePtr > KeyValues; typedef
432 KeyValues m_keyValues;
437 ObservedUndoableObject<KeyValues> m_undo;
477 KeyValues::iterator i = m_keyValues.insert(KeyValues::value_type(key, keyValue)); in insert()
488 KeyValues::iterator i = m_keyValues.find(key); in insert()
500 void erase(KeyValues::iterator i) in erase()
515 KeyValues::iterator i = m_keyValues.find(key); in erase()
562 void importState(const KeyValues& keyValues) in importState()
564 for(KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end();) in importState()
569 for(KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i) in importState()
[all …]
/dports/games/netradiant/netradiant-20150621-src/libs/
H A Dentitylib.h395 typedef UnsortedMap<Key, KeyValuePtr> KeyValues; typedef
396 KeyValues m_keyValues;
401 ObservedUndoableObject<KeyValues> m_undo;
436 KeyValues::iterator i = m_keyValues.insert( KeyValues::value_type( key, keyValue ) ); in insert()
445 KeyValues::iterator i = m_keyValues.find( key ); in insert()
456 void erase( KeyValues::iterator i ){ in erase()
468 KeyValues::iterator i = m_keyValues.find( key ); in erase()
514 void importState( const KeyValues& keyValues ){ in importState()
515 for ( KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ) in importState()
520 for ( KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i ) in importState()
[all …]
/dports/www/gohugo/hugo-0.91.2/common/types/
H A Dtypes.go43 type KeyValues struct { struct
49 func (k KeyValues) KeyString() string { argument
53 func (k KeyValues) String() string { argument
59 func NewKeyValuesStrings(key string, values ...string) KeyValues {
64 return KeyValues{Key: key, Values: iv}
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/entity/
H A DNameKeys.h47 typedef std::map<std::string, EntityKeyValue*> KeyValues; typedef
48 KeyValues m_keyValues;
64 for (KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i) { in insertAll()
70 for (KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i) { in eraseAll()
92 m_keyValues.insert(KeyValues::value_type(key, &value)); in onKeyInsert()
/dports/games/gtkradiant/GPL/GtkRadiant/plugins/mapq3/
H A Dparse.cpp42 typedef std::list< std::pair<CopiedString, CopiedString> > KeyValues; typedef
47 …nce Entity_create(EntityCreator& entityTable, EntityClass* entityClass, const KeyValues& keyValues) in Entity_create()
50 for(KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i) in Entity_create()
60 KeyValues keyValues; in Entity_parseTokens()
119 keyValues.push_back(KeyValues::value_type(key, token)); in Entity_parseTokens()
/dports/games/netradiant/netradiant-20150621-src/plugins/mapq3/
H A Dparse.cpp41 typedef std::list< std::pair<CopiedString, CopiedString> > KeyValues; typedef
46 … Entity_create( EntityCreator& entityTable, EntityClass* entityClass, const KeyValues& keyValues ){ in Entity_create()
48 for ( KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i ) in Entity_create()
57 KeyValues keyValues; in Entity_parseTokens()
108 keyValues.push_back( KeyValues::value_type( key, token ) ); in Entity_parseTokens()
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/radiant/map/
H A Dparse.cpp44 typedef std::list<std::pair<std::string, std::string> > KeyValues; typedef
48 …ce Entity_create (EntityCreator& entityTable, EntityClass* entityClass, const KeyValues& keyValues) in Entity_create()
51 for (KeyValues::const_iterator i = keyValues.begin(); i != keyValues.end(); ++i) { in Entity_create()
61 KeyValues keyValues; in Entity_parseTokens()
107 keyValues.push_back(KeyValues::value_type(key, token)); in Entity_parseTokens()
/dports/games/gtkradiant/GPL/GtkRadiant/plugins/entity/
H A Dnamekeys.h63 typedef std::map<CopiedString, EntityKeyValues::Value*> KeyValues; typedef
64 KeyValues m_keyValues;
84 for(KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i) in insertAll()
91 for(KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i) in eraseAll()
119 m_keyValues.insert(KeyValues::value_type(key, &value)); in insert()
/dports/games/netradiant/netradiant-20150621-src/plugins/entity/
H A Dnamekeys.h61 typedef std::map<CopiedString, EntityKeyValue*> KeyValues; typedef
62 KeyValues m_keyValues;
77 for ( KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i ) in insertAll()
83 for ( KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i ) in eraseAll()
106 m_keyValues.insert( KeyValues::value_type( key, &value ) ); in insert()
/dports/www/grafana8/grafana-8.3.6/public/app/core/components/TransformersUI/extractFields/
H A DfieldExtractor.test.ts18 const extractor = fieldExtractors.get(FieldExtractorID.KeyValues);
32 const extractor = fieldExtractors.get(FieldExtractorID.KeyValues);
44 const extractor = fieldExtractors.get(FieldExtractorID.KeyValues);
/dports/science/cdo/cdo-2.0.0/src/
H A Dpmlist.h17 struct KeyValues struct
28 KVList : public std::list<KeyValues> argument
35 const KeyValues *search(const std::string &key) const;
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/parameters/
H A DkeyValues.go29 type KeyValues map[string]json.RawMessage type
32 func (keyValues KeyValues) Validate() error {
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/parameters/
H A DkeyValues.go29 type KeyValues map[string]json.RawMessage type
32 func (keyValues KeyValues) Validate() error {
/dports/games/gtkradiant/GPL/GtkRadiant/radiant/
H A Dentityinspector.cpp90 typedef std::map<CopiedString, CopiedString> KeyValues; typedef
91 KeyValues g_selectedKeyValues;
92 KeyValues g_selectedDefaultKeyValues;
98 KeyValues::const_iterator i = g_selectedKeyValues.find(key); in SelectedEntity_getValueForKey()
844 KeyValues& m_keyvalues;
846 GetKeyValueVisitor(KeyValues& keyvalues) in GetKeyValueVisitor()
858 void Entity_GetKeyValues(const Entity& entity, KeyValues& keyvalues, KeyValues& defaultValues) in Entity_GetKeyValues()
872 void Entity_GetKeyValues_Selected(KeyValues& keyvalues, KeyValues& defaultValues) in Entity_GetKeyValues_Selected()
876 KeyValues& m_keyvalues; in Entity_GetKeyValues_Selected()
877 KeyValues& m_defaultValues; in Entity_GetKeyValues_Selected()
[all …]
/dports/games/netradiant/netradiant-20150621-src/radiant/
H A Dentityinspector.cpp90 typedef std::map<CopiedString, CopiedString> KeyValues; typedef
91 KeyValues g_selectedKeyValues;
92 KeyValues g_selectedDefaultKeyValues;
97 KeyValues::const_iterator i = g_selectedKeyValues.find( key ); in SelectedEntity_getValueForKey()
762 KeyValues& m_keyvalues;
764 GetKeyValueVisitor( KeyValues& keyvalues ) in GetKeyValueVisitor()
774 void Entity_GetKeyValues( const Entity& entity, KeyValues& keyvalues, KeyValues& defaultValues ){ in Entity_GetKeyValues()
787 void Entity_GetKeyValues_Selected( KeyValues& keyvalues, KeyValues& defaultValues ){ in Entity_GetKeyValues_Selected()
790 KeyValues& m_keyvalues; in Entity_GetKeyValues_Selected()
791 KeyValues& m_defaultValues; in Entity_GetKeyValues_Selected()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/corelib/animation/
H A Dqvariantanimation.h71 typedef QVector<KeyValue> KeyValues; typedef
85 KeyValues keyValues() const;
86 void setKeyValues(const KeyValues &values);

12345678910>>...20