/third_party/rust/crates/log/src/kv/ |
D | key.rs | 9 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> {
|
D | mod.rs | 22 pub use self::key::{Key, ToKey};
|
D | source.rs | 9 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/ |
D | swiss-name-dictionary.cc | 62 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()
|
D | symbol-table.cc | 14 if (!this->ToKey(roots, i, &k)) continue; in SlowReverseLookup()
|
D | swiss-name-dictionary.h | 100 inline bool ToKey(ReadOnlyRoots roots, InternalIndex entry, Object* out_key); 288 inline bool ToKey(ReadOnlyRoots roots, int entry, Object* out_key);
|
D | swiss-name-dictionary-inl.h | 493 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()
|
D | hash-table-inl.h | 198 bool HashTable<Derived, Shape>::ToKey(ReadOnlyRoots roots, InternalIndex entry, in ToKey() function 207 bool HashTable<Derived, Shape>::ToKey(PtrComprCageBase cage_base, in ToKey() function
|
D | hash-table.h | 157 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()
|
D | ordered-hash-table-inl.h | 124 bool OrderedHashTable<Derived, entrysize>::ToKey(ReadOnlyRoots roots, in ToKey() function
|
D | module.cc | 318 if (!exports->ToKey(roots, i, &key)) continue; in GetModuleNamespace()
|
D | keys.cc | 815 if (!dictionary->ToKey(roots, i, &key)) continue; in CommonCopyEnumKeysTo() 924 if (!raw_dictionary.ToKey(roots, i, &key)) continue; in CollectKeysFromDictionary()
|
D | ordered-hash-table.h | 128 inline bool ToKey(ReadOnlyRoots roots, InternalIndex entry, Object* out_key);
|
D | call-site-info.cc | 352 if (!dictionary.ToKey(roots, i, &key)) continue; in InferMethodNameFromDictionary()
|
D | source-text-module.cc | 581 if (!requested_exports->ToKey(roots, index, &key)) continue; in FetchStarExports()
|
D | objects.cc | 6207 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()
|
D | js-objects.cc | 4015 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()
|
D | elements.cc | 1875 if (!dictionary.ToKey(roots, i, &k)) continue; in ValidateContents()
|
/third_party/rust/crates/log/rfcs/ |
D | 0296-structured-logging.md | 33 - [`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/ |
D | objects-printer.cc | 90 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/ |
D | bootstrapper.cc | 6180 if (!properties->ToKey(roots, entry, &raw_key)) continue; in TransferNamedProperties()
|