Home
last modified time | relevance | path

Searched refs:firstKey (Results 1 – 25 of 700) sorted by relevance

12345678910>>...28

/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/libreallive/
H A Dgameexe.h160 GameexeInterpretObject operator()(const A& firstKey);
164 GameexeInterpretObject operator()(const A& firstKey, const B& secondKey);
168 GameexeInterpretObject operator()(const A& firstKey, const B& secondKey,
223 GameexeInterpretObject Gameexe::operator()(const A& firstKey) { in operator()
225 AddToStream(firstKey, ss); in operator()
232 inline GameexeInterpretObject Gameexe::operator()(const std::string& firstKey) { in operator()
233 return GameexeInterpretObject(firstKey, *this); in operator()
239 GameexeInterpretObject Gameexe::operator()(const A& firstKey, in operator()
242 AddToStream(firstKey, ss); in operator()
251 GameexeInterpretObject Gameexe::operator()(const A& firstKey, in operator()
[all …]
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/
H A DHasRelationships.php108 * @param string|null $firstKey
114 …public function hasOneThrough($related, $through, $firstKey = null, $secondKey = null, $localKey =… argument
118 $firstKey = $firstKey ?: $this->getForeignKey();
124 $firstKey, $secondKey, $localKey ?: $this->getKeyName(),
135 * @param string $firstKey
143 …return new HasOneThrough($query, $farParent, $throughParent, $firstKey, $secondKey, $localKey, $se…
380 * @param string|null $firstKey
390 $firstKey = $firstKey ?: $this->getForeignKey();
398 $firstKey,
411 * @param string $firstKey
[all …]
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/illuminate/database/Eloquent/Concerns/
H A DHasRelationships.php85 * @param string|null $firstKey
91 …public function hasOneThrough($related, $through, $firstKey = null, $secondKey = null, $localKey =… argument
95 $firstKey = $firstKey ?: $this->getForeignKey();
101 $firstKey, $secondKey, $localKey ?: $this->getKeyName(),
112 * @param string $firstKey
120 …return new HasOneThrough($query, $farParent, $throughParent, $firstKey, $secondKey, $localKey, $se…
357 * @param string|null $firstKey
367 $firstKey = $firstKey ?: $this->getForeignKey();
373 $firstKey, $secondKey, $localKey ?: $this->getKeyName(),
384 * @param string $firstKey
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/trie/
H A Dproof.go501 root, val, err := proofToPath(rootHash, nil, firstKey, proof, true)
505 if val != nil || hasRightElement(root, firstKey) {
508 return hasRightElement(root, firstKey), nil
512 if len(keys) == 1 && bytes.Equal(firstKey, lastKey) {
513 root, val, err := proofToPath(rootHash, nil, firstKey, proof, false)
517 if !bytes.Equal(firstKey, keys[0]) {
523 return hasRightElement(root, firstKey), nil
527 if bytes.Compare(firstKey, lastKey) >= 0 {
531 if len(firstKey) != len(lastKey) {
537 root, _, err := proofToPath(rootHash, nil, firstKey, proof, true)
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Data/Common/
H A DDbConnectionOptions.Common.cs429 … SplitConnectionString(string connectionString, Dictionary<string, string> synonyms, bool firstKey) in SplitConnectionString() argument
432 Regex parser = (firstKey ? s_connectionStringRegexOdbc : s_connectionStringRegex); in SplitConnectionString()
449 …string keyname = (firstKey ? keypair.Value : keypair.Value.Replace("==", "=")).ToLower(CultureInfo… in SplitConnectionString()
453 if (!firstKey) in SplitConnectionString()
481 if (!firstKey || !parsetable.ContainsKey(realkeyname)) in SplitConnectionString()
490 …rsetable, string connectionString, Dictionary<string, string> synonyms, bool firstKey, Exception e) in ParseComparison() argument
494 var parsedvalues = SplitConnectionString(connectionString, synonyms, firstKey); in ParseComparison()
558 …tartPosition = GetKeyValuePair(connectionString, startPosition, buffer, firstKey, out keyname, out… in ParseInternal()
578 if (!firstKey || !parsetable.ContainsKey(realkeyname)) in ParseInternal()
596 ParseComparison(parsetable, connectionString, synonyms, firstKey, e); in ParseInternal()
[all …]
/dports/deskutils/kalendar/kalendar-0.4.0/src/
H A Dinfinitecalendarviewmodel.cpp138 auto firstKey = m_models[i].liveKeysQueue->dequeue(); in data() local
141 && m_models[i].hourlyModels->contains(firstKey)) { in data()
142 delete m_models[i].hourlyModels->value(firstKey); in data()
143 m_models[i].hourlyModels->remove(firstKey); in data()
146 m_models[i].multiDayModels->remove(firstKey); in data()
151 auto firstKey = m_models[i].liveKeysQueue->dequeue(); in data() local
154 && m_models[i].hourlyModels->contains(firstKey)) { in data()
155 delete m_models[i].hourlyModels->value(firstKey); in data()
156 m_models[i].hourlyModels->remove(firstKey); in data()
158 delete m_models[i].multiDayModels->value(firstKey); in data()
[all …]
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/illuminate/database/Eloquent/Relations/
H A DHasManyThrough.php32 protected $firstKey; variable in Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough
68 * @param string $firstKey
74 …public function __construct(Builder $query, Model $farParent, Model $throughParent, $firstKey, $se… argument
77 $this->firstKey = $firstKey;
562 $parentQuery->getQuery()->from.'.'.$this->localKey, '=', $hash.'.'.$this->firstKey
593 return $this->firstKey;
603 return $this->throughParent->qualifyColumn($this->firstKey);
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/reservation/
H A DRLESparseResourceAllocation.java209 Long firstKey = overlapSet.firstKey(); in removeInterval() local
210 if (isSameAsPrevious(firstKey, overlapSet.get(firstKey))) { in removeInterval()
211 cumulativeCapacity.remove(firstKey); in removeInterval()
255 return cumulativeCapacity.firstKey(); in getEarliestStartTime()
308 .append(" earliest entry: ").append(cumulativeCapacity.firstKey()) in toString()
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Database/Eloquent/Relations/
H A DHasManyThrough.php36 protected $firstKey; variable in Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough
65 * @param string $firstKey
71 …public function __construct(Builder $query, Model $farParent, Model $throughParent, $firstKey, $se… argument
74 $this->firstKey = $firstKey;
619 $parentQuery->getQuery()->from.'.'.$this->localKey, '=', $hash.'.'.$this->firstKey
640 return $this->firstKey;
650 return $this->throughParent->qualifyColumn($this->firstKey);
/dports/x11-fm/dolphin/dolphin-21.12.3/src/kitemviews/private/
H A Dkitemlistkeyboardsearchmanager.cpp49 const QChar firstKey = m_searchedString.length() > 0 ? m_searchedString.at(0) : QChar(); in addKeys() local
50 …const bool sameKey = m_searchedString.length() > 1 && m_searchedString.count(firstKey) == m_search… in addKeys()
61 Q_EMIT changeCurrentItem(sameKey ? firstKey : m_searchedString, searchFromNextItem); in addKeys()
/dports/databases/fastdb/fastdb/src/
H A Dhashtab.cpp335 keylen = (unsigned)strlen(sc.firstKey); in find()
336 hashcode = sc.field->_hashcode(sc.firstKey, keylen); in find()
339 keylen = (unsigned)wcslen((wchar_t*)sc.firstKey); in find()
340 hashcode = sc.field->_hashcode(sc.firstKey, keylen); in find()
343 keylen = ((dbAnyArray*)sc.firstKey)->length(); in find()
344 … hashcode = sc.field->_hashcode(((dbAnyArray*)sc.firstKey)->base(), keylen*sc.field->elemSize); in find()
348 hashcode = sc.field->_hashcode(sc.firstKey, keylen); in find()
363 …equals = sc.field->_comparator(sc.firstKey, rec+((dbVarying*)(rec+sc.offs))->offs, MAX_STRING_LENG… in find()
368 equals = sc.field->_comparator(sc.firstKey, &a, sc.field->elemSize) == 0; in find()
372 equals = sc.field->_comparator(sc.firstKey, rec + sc.offs, keylen) == 0; in find()
/dports/databases/pear-Horde_Mongo/Horde_Mongo-1.1.0/bundle/vendor/mongodb/mongodb/src/
H A Dfunctions.php80 $firstKey = (string) key($document);
82 return (isset($firstKey[0]) && $firstKey[0] == '$');
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_utils/gui/
H A Djuce_MidiKeyboardComponent.cpp142 firstKey = jlimit ((float) rangeStart, (float) rangeEnd, firstKey); in setAvailableRange()
156 if (noteNumber != firstKey) in setLowestVisibleKeyFloat()
158 bool hasMoved = (((int) firstKey) != (int) noteNumber); in setLowestVisibleKeyFloat()
159 firstKey = noteNumber; in setLowestVisibleKeyFloat()
607 if ((int) firstKey != rangeStart) in resized()
613 firstKey = (float) rangeStart; in resized()
619 scrollDown->setVisible (canScroll && firstKey > (float) rangeStart); in resized()
650 if (lastStartKey >= 0 && ((int) firstKey) > lastStartKey) in resized()
656 xOffset = getKeyPos ((int) firstKey).getStart(); in resized()
660 firstKey = (float) rangeStart; in resized()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/
H A DHFileBlockIndex.java780 private byte[] firstKey = null;
1081 firstKey = curInlineChunk.getBlockKey(0);
1100 if (firstKey == null) {
1114 rootChunk.add(firstKey, offset, onDiskSize, totalNumEntries);
1115 firstKey = null;
1134 curInlineChunk.add(firstKey, blockOffset, blockDataSize);
1227 void add(byte[] firstKey, long blockOffset, int onDiskDataSize, in add() argument
1232 + firstKey.length; in add()
1235 + WritableUtils.getVIntSize(firstKey.length) + firstKey.length; in add()
1237 blockKeys.add(firstKey); in add()
[all …]
/dports/www/matomo/piwik/core/API/
H A DResponseBuilder.php199 $firstKey = null;
202 $firstKey = key($array);
205 …$isAssoc = !empty($firstArray) && is_numeric($firstKey) && is_array($firstArray) && count(array_fi…
207 if (is_numeric($firstKey)) {
/dports/audio/polyphone/polyphone-75a5e88/sources/core/input/grandorgue/
H A Dgrandorguestop.cpp43 delete _rankLinks.take(_rankLinks.firstKey()); in ~GrandOrgueStop()
92 int firstKey = 36; in preProcess() local
98 firstKey = val1 + 35; in preProcess()
104 link->preProcess(firstKey); in preProcess()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A DDbConnectionOptions.cs786 …tatic Hashtable SplitConnectionString(string connectionString, Hashtable synonyms, bool firstKey) { in SplitConnectionString() argument
788 Regex parser = (firstKey ? ConnectionStringRegexOdbc : ConnectionStringRegex); in SplitConnectionString()
802 …string keyname = (firstKey ? keypair.Value : keypair.Value.Replace("==", "=")).ToLower(CultureInfo… in SplitConnectionString()
805 if (!firstKey) { in SplitConnectionString()
827 if (!firstKey || !parsetable.ContainsKey(realkeyname)) { in SplitConnectionString()
835 …on(Hashtable parsetable, string connectionString, Hashtable synonyms, bool firstKey, Exception e) { in ParseComparison() argument
837 … Hashtable parsedvalues = SplitConnectionString(connectionString, synonyms, firstKey); in ParseComparison()
890 …tartPosition = GetKeyValuePair(connectionString, startPosition, buffer, firstKey, out keyname, out… in ParseInternal()
905 if (!firstKey || !parsetable.Contains(realkeyname)) { in ParseInternal()
919 ParseComparison(parsetable, connectionString, synonyms, firstKey, e); in ParseInternal()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/libkv/testutils/
H A Dutils.go469 firstKey := "testPutTTL"
476 err := otherConn.Put(firstKey, firstValue, &store.WriteOptions{TTL: 2 * time.Second})
484 pair, err := kv.Get(firstKey)
500 pair, err = kv.Get(firstKey)
513 firstKey := "testList/first"
520 err := kv.Put(firstKey, firstValue, nil)
537 if pair.Key == firstKey {
555 firstKey := "testDeleteTree/first"
562 err := kv.Put(firstKey, firstValue, nil)
570 pair, err := kv.Get(firstKey)
[all …]
/dports/www/phalcon4/cphalcon-4.1.1/tests/unit/Helper/Arr/
H A DFirstKeyCest.php36 $actual = Arr::firstKey($collection);
55 $actual = Arr::firstKey(
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/cleaner/
H A DFileSelectionTest.java310 int count = nextKey - firstKey - 4; in testBasic()
311 deleteData(firstKey, count); in testBasic()
314 firstKey = firstKeysInFiles.get(fileNum); in testBasic()
316 count = nextKey - firstKey - 4; in testBasic()
317 deleteData(firstKey, count); in testBasic()
412 int firstKey = firstKeysInFiles.get(1); in testRetry() local
414 int count = nextKey - firstKey - 1; in testRetry()
415 deleteData(firstKey, count); in testRetry()
484 deleteData(firstKey, count); in testMinFileUtilization()
1371 int nextKey = firstKey + i; in deleteData()
[all …]
/dports/www/privatebin/PrivateBin-1.3.5/lib/Data/
H A DFilesystem.php244 $firstKey = array_rand($firstLevel);
246 scandir($mainpath . DIRECTORY_SEPARATOR . $firstLevel[$firstKey]),
252 unset($firstLevel[$firstKey]);
258 $firstLevel[$firstKey] . DIRECTORY_SEPARATOR .
/dports/security/keybase/client-v5.7.1/go/libkb/
H A Dstream_classifier.go59 firstKey := "body"
60 dataBytes := len(firstKey) + 1
80 _ = codec.NewEncoderBytes(&encoded, &mh).Encode(firstKey)
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/unit/includes/libs/
H A DProcessCacheLRUTest.php44 $firstKey = 1;
47 $firstKey = 1 + $entryToFill - $cacheMaxEntries;
52 for ( $i = $firstKey; $i <= $lastKey; $i++ ) {
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/map/
H A DAbstractSortedMapDecorator.java74 public Object firstKey() { in firstKey() method in AbstractSortedMapDecorator
75 return getSortedMap().firstKey(); in firstKey()
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/bidimap/
H A DAbstractOrderedBidiMapDecorator.java66 public Object firstKey() { in firstKey() method in AbstractOrderedBidiMapDecorator
67 return getOrderedBidiMap().firstKey(); in firstKey()

12345678910>>...28