Home
last modified time | relevance | path

Searched refs:ToKey (Results 1 – 21 of 21) sorted by relevance

/third_party/rust/crates/log/src/kv/
Dkey.rs9 pub trait ToKey { trait
14 impl<'a, T> ToKey for &'a T impl
16 T: ToKey + ?Sized,
23 impl<'k> ToKey for Key<'k> {
29 impl ToKey for str {
118 impl ToKey for String {
124 impl<'a> ToKey for Cow<'a, str> {
Dmod.rs22 pub use self::key::{Key, ToKey};
Dsource.rs9 use kv::{Error, Key, ToKey, ToValue, Value};
124 K: ToKey,
288 K: ToKey + Borrow<str> + Eq + Hash,
310 K: ToKey + Borrow<str> + Ord,
/third_party/node/deps/v8/src/objects/
Dswiss-name-dictionary.cc62 if (table->ToKey(roots, entry, &key)) { in Rehash()
230 if (!ToKey(roots, entry, &key)) continue; in Rehash()
259 if (!this->ToKey(roots, i, &k)) continue; in NumberOfEnumerableProperties()
275 if (!ToKey(roots, i, &k)) continue; in SlowReverseLookup()
Dsymbol-table.cc14 if (!this->ToKey(roots, i, &k)) continue; in SlowReverseLookup()
Dswiss-name-dictionary.h100 inline bool ToKey(ReadOnlyRoots roots, InternalIndex entry, Object* out_key);
288 inline bool ToKey(ReadOnlyRoots roots, int entry, Object* out_key);
Dswiss-name-dictionary-inl.h493 bool SwissNameDictionary::ToKey(ReadOnlyRoots roots, int entry, in ToKey() function
501 bool SwissNameDictionary::ToKey(ReadOnlyRoots roots, InternalIndex entry, in ToKey() function
503 return ToKey(roots, entry.as_int(), out_key); in ToKey()
Dhash-table-inl.h198 bool HashTable<Derived, Shape>::ToKey(ReadOnlyRoots roots, InternalIndex entry, in ToKey() function
207 bool HashTable<Derived, Shape>::ToKey(PtrComprCageBase cage_base, in ToKey() function
Dhash-table.h157 inline bool ToKey(ReadOnlyRoots roots, InternalIndex entry, Object* out_k); in EXPORT_TEMPLATE_DECLARE()
158 inline bool ToKey(PtrComprCageBase cage_base, InternalIndex entry, in EXPORT_TEMPLATE_DECLARE()
Dordered-hash-table-inl.h124 bool OrderedHashTable<Derived, entrysize>::ToKey(ReadOnlyRoots roots, in ToKey() function
Dmodule.cc318 if (!exports->ToKey(roots, i, &key)) continue; in GetModuleNamespace()
Dkeys.cc815 if (!dictionary->ToKey(roots, i, &key)) continue; in CommonCopyEnumKeysTo()
924 if (!raw_dictionary.ToKey(roots, i, &key)) continue; in CollectKeysFromDictionary()
Dordered-hash-table.h128 inline bool ToKey(ReadOnlyRoots roots, InternalIndex entry, Object* out_key);
Dcall-site-info.cc352 if (!dictionary.ToKey(roots, i, &key)) continue; in InferMethodNameFromDictionary()
Dsource-text-module.cc581 if (!requested_exports->ToKey(roots, index, &key)) continue; in FetchStarExports()
Dobjects.cc6207 if (this->ToKey(roots, i, &k)) { in CopyValuesTo()
6220 if (!this->ToKey(roots, i, &k)) continue; in NumberOfEnumerableProperties()
6241 if (!raw_dictionary.ToKey(roots, i, &k)) continue; in IterationIndices()
6269 if (!dictionary.ToKey(roots, i, &k)) continue; in SlowReverseLookup()
6562 if (table->ToKey(roots, InternalIndex(i), &key)) { in GetEntries()
Djs-objects.cc4015 if (!dict.ToKey(roots, i, &key)) continue; in TestDictionaryPropertiesIntegrityLevel()
4194 if (!dictionary->ToKey(roots, i, &k)) continue; in ApplyAttributesToDictionary()
4765 if (!dict.ToKey(roots, index, &k)) continue; in OptimizeAsPrototype()
Delements.cc1875 if (!dictionary.ToKey(roots, i, &k)) continue; in ValidateContents()
/third_party/rust/crates/log/rfcs/
D0296-structured-logging.md33 - [`ToKey`](#tokey)
272 Q: ToKey,
1046 impl ToKey for String {
1089 ### `ToKey`
1091 The `ToKey` trait represents a type that can be converted into a `Key`:
1094 pub trait ToKey {
1101 The `ToKey` trait is object-safe.
1105 The `ToKey` trait is implemented for common string containers in the standard library:
1108 impl<'a, T: ?Sized> ToKey for &'a T
1110 T: ToKey,
[all …]
/third_party/node/deps/v8/src/diagnostics/
Dobjects-printer.cc90 if (!dict.ToKey(roots, i, &k)) continue; in PrintDictionaryContents()
888 if (!dict.ToKey(roots, i, &k)) continue; in PrintTableContentsGeneric()
1081 if (!this->ToKey(this->GetReadOnlyRoots(), bucket, &k)) continue; in SwissNameDictionaryPrint()
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc6180 if (!properties->ToKey(roots, entry, &raw_key)) continue; in TransferNamedProperties()