/third_party/node/deps/v8/src/objects/ |
H A D | dictionary-inl.h | 29 Dictionary<Derived, Shape>::Dictionary(Address ptr) in Dictionary() function in v8::internal::Dictionary 33 Object Dictionary<Derived, Shape>::ValueAt(InternalIndex entry) { in ValueAt() 39 Object Dictionary<Derived, Shape>::ValueAt(PtrComprCageBase cage_base, in ValueAt() 46 base::Optional<Object> Dictionary<Derived, Shape>::TryValueAt( in TryValueAt() 64 void Dictionary<Derived, Shape>::ValueAtPut(InternalIndex entry, Object value) { in ValueAtPut() 70 PropertyDetails Dictionary<Derived, Shape>::DetailsAt(InternalIndex entry) { in DetailsAt() 75 void Dictionary<Derived, Shape>::DetailsAtPut(InternalIndex entry, in DetailsAtPut() 82 : Dictionary<Derived, Shape>(ptr) {} in BaseNameDictionary() 120 : Dictionary<NumberDictionar in NumberDictionary() [all...] |
H A D | dictionary.h | 35 class EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE) Dictionary 98 OBJECT_CONSTRUCTORS(Dictionary, HashTable<Derived, Shape>); 104 Dictionary<DERIVED, SHAPE>; 110 template <typename Dictionary> 111 static inline PropertyDetails DetailsAt(Dictionary dict, InternalIndex entry); 113 template <typename Dictionary> 114 static inline void DetailsAtPut(Dictionary dict, InternalIndex entry, 134 : public Dictionary<Derived, Shape> { 175 OBJECT_CONSTRUCTORS(BaseNameDictionary, Dictionary<Derived, Shape>); 215 template <typename Dictionary> [all...] |
H A D | literal-objects.cc | 125 template <typename Dictionary> 126 void DictionaryUpdateMaxNumberKey(Handle<Dictionary> dictionary, in DictionaryUpdateMaxNumberKey() 128 STATIC_ASSERT((std::is_same<Dictionary, SwissNameDictionary>::value || in DictionaryUpdateMaxNumberKey() 129 std::is_same<Dictionary, NameDictionary>::value)); in DictionaryUpdateMaxNumberKey() 154 template <typename IsolateT, typename Dictionary, typename Key> 155 void AddToDictionaryTemplate(IsolateT* isolate, Handle<Dictionary> dictionary, in AddToDictionaryTemplate() 162 std::is_same<Dictionary, NumberDictionary>::value; in AddToDictionaryTemplate() 164 (std::is_same<Dictionary, NameDictionary>::value || in AddToDictionaryTemplate() 165 std::is_same<Dictionary, SwissNameDictionary>::value)); in AddToDictionaryTemplate() 170 Dictionary in AddToDictionaryTemplate() [all...] |
H A D | literal-objects.h | 129 template <typename IsolateT, typename Dictionary> 131 Handle<Dictionary> dictionary,
|
H A D | keys.cc | 803 template <typename Dictionary> 804 void CommonCopyEnumKeysTo(Isolate* isolate, Handle<Dictionary> dictionary, in CommonCopyEnumKeysTo() 831 if (Dictionary::kIsOrderedDictionaryType) { in CommonCopyEnumKeysTo() 851 template <typename Dictionary> 852 void CopyEnumKeysTo(Isolate* isolate, Handle<Dictionary> dictionary, in CopyEnumKeysTo() 855 STATIC_ASSERT(!Dictionary::kIsOrderedDictionaryType); in CopyEnumKeysTo() 857 CommonCopyEnumKeysTo<Dictionary>(isolate, dictionary, storage, mode, in CopyEnumKeysTo() 863 Dictionary raw_dictionary = *dictionary; in CopyEnumKeysTo() 865 EnumIndexComparator<Dictionary> cmp(raw_dictionary); in CopyEnumKeysTo() 907 template <typename Dictionary> [all...] |
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
H A D | Dictionary.cs | 11 /// <p>Dictionary content is loaded from binary resource when
20 internal sealed class Dictionary
class 61 string[] chunks = new string[] { Org.Brotli.Dec.Dictionary.DataHolder0.GetData(), Org.Brotli.Dec.Dictionary.DataHolder1.GetData(), Org.Brotli.Dec.Dictionary.DataHolder2.GetData() };
in DataHolder() 84 return Org.Brotli.Dec.Dictionary.DataHolder.Data;
in GetData()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/common/ |
H A D | SetRfcDictionaryTest.java | 13 import org.brotli.dec.Dictionary; 32 System.err.println(Dictionary.getData().slice().remaining()); in testRfcDictionaryChecksums() 34 md5.update(Dictionary.getData().slice()); in testRfcDictionaryChecksums() 38 sha1.update(Dictionary.getData().slice()); in testRfcDictionaryChecksums() 42 sha256.update(Dictionary.getData().slice()); in testRfcDictionaryChecksums() 51 BrotliCommon.setDictionaryData(Dictionary.getData()); in testSetRfcDictionary()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
H A D | Dictionary.java | 14 * <p>Dictionary content is loaded from binary resource when {@link #getData()} is executed for the 20 public final class Dictionary { class 34 Class.forName(Dictionary.class.getPackage().getName() + ".DictionaryData"); 56 int[] dictionaryOffsets = Dictionary.offsets; in setData() 57 int[] dictionarySizeBits = Dictionary.sizeBits; in setData() 80 Dictionary.data = data; in setData()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | underscoreTest1.js | 4 interface Dictionary<T> { 117 groupBy(iterator?: Iterator_<T, any>, context?: any): Dictionary<T[]>; 118 groupBy(propertyName: string): Dictionary<T[]>; 119 countBy(iterator?: Iterator_<T, any>, context?: any): Dictionary<number>; 120 countBy(propertyName: string): Dictionary<number>; 166 export interface WrappedDictionary<T> extends WrappedObject<Dictionary<T>> { 200 groupBy(iterator?: Iterator_<T, any>, context?: any): Dictionary<T[]>; 201 groupBy(propertyName: string): Dictionary<T[]>; 202 countBy(iterator?: Iterator_<T, any>, context?: any): Dictionary<number>; 203 countBy(propertyName: string): Dictionary<numbe [all...] |
H A D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.js | 4 interface Dictionary<T> { 18 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>; 22 obj: Dictionary<T> | NumericDictionary<T> | null | undefined, 24 ): Dictionary<TResult> {
|
H A D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.js | 4 interface Dictionary<T> { 18 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>; 22 obj: Dictionary<T> | NumericDictionary<T> | null | undefined, 24 ): Dictionary<TResult> {
|
H A D | indexSignatureAndMappedType.js | 22 type Dictionary = { 28 properties: Dictionary; 64 type Dictionary = {
69 properties: Dictionary;
|
H A D | intersectionsAndEmptyObjects.js | 32 type Dictionary = { [name: string]: string }; 34 const intersectDictionaries = <F1 extends Dictionary, F2 extends Dictionary>( 39 const testDictionary = <T extends Dictionary>(_value: T) => { };
|
H A D | keyofAndIndexedAccessErrors.js | 9 type Dictionary<T> = { [x: string]: T }; 39 type T40 = Dictionary<string>[any]; 40 type T41 = Dictionary<string>[number]; 41 type T42 = Dictionary<string>[string]; 42 type T43 = Dictionary<string>[boolean]; // Error
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-classes.cc | 125 template <typename Dictionary> 127 STATIC_ASSERT((std::is_same<Dictionary, SwissNameDictionary>::value || in KeyToName() 128 std::is_same<Dictionary, NameDictionary>::value)); in KeyToName() 145 template <typename Dictionary> 165 Handle<Name> name = KeyToName<Dictionary>(isolate, key); in GetMethodAndSetName() 193 template <typename Dictionary> 194 Handle<Dictionary> ShallowCopyDictionaryTemplate( in ShallowCopyDictionaryTemplate() 195 Isolate* isolate, Handle<Dictionary> dictionary_template) { in ShallowCopyDictionaryTemplate() 196 Handle<Dictionary> dictionary = in ShallowCopyDictionaryTemplate() 197 Dictionary in ShallowCopyDictionaryTemplate() [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | TypeRegistry.cs | 45 public static TypeRegistry Empty { get; } = new TypeRegistry(new Dictionary<string, MessageDescriptor>()); 47 private readonly Dictionary<string, MessageDescriptor> fullNameToMessageMap; 49 private TypeRegistry(Dictionary<string, MessageDescriptor> fullNameToMessageMap) in TypeRegistry() 140 private readonly Dictionary<string, MessageDescriptor> types; 145 types = new Dictionary<string, MessageDescriptor>(); in Builder()
|
H A D | DescriptorPool.cs | 46 new Dictionary<string, IDescriptor>(); 49 new Dictionary<ObjectIntPair<IDescriptor>, FieldDescriptor>(); 52 new Dictionary<ObjectIntPair<IDescriptor>, EnumValueDescriptor>();
|
H A D | FileDescriptor.cs | 81 private readonly Lazy<Dictionary<IDescriptor, DescriptorDeclaration>> declarations; 108 declarations = new Lazy<Dictionary<IDescriptor, DescriptorDeclaration>>(CreateDeclarationMap, LazyThreadSafetyMode.ExecutionAndPublication); in FileDescriptor() 124 private Dictionary<IDescriptor, DescriptorDeclaration> CreateDeclarationMap() in CreateDeclarationMap() 126 var dictionary = new Dictionary<IDescriptor, DescriptorDeclaration>(); in CreateDeclarationMap() 492 var descriptorsByName = new Dictionary<string, FileDescriptor>(); in BuildFromByteStrings()
|
H A D | ExtensionCollection.cs | 105 Dictionary<MessageDescriptor, IList<FieldDescriptor>> declarationOrder = new Dictionary<MessageDescriptor, IList<FieldDescriptor>>(); in CrossLink()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
H A D | WriteRawPrimitivesBenchmark.cs | 50 Dictionary<int, uint[]> varint32Values; 51 Dictionary<int, ulong[]> varint64Values; 57 Dictionary<int, string[]> stringValues; 60 Dictionary<int, string[]> nonAsciiStringValues; 63 Dictionary<int, ByteString[]> byteStringValues; 79 varint32Values = new Dictionary<int, uint[]>(); in GlobalSetup() 80 varint64Values = new Dictionary<int, ulong[]>(); in GlobalSetup() 93 stringValues = new Dictionary<int, string[]>(); in GlobalSetup() 95 byteStringValues = new Dictionary<int, ByteString[]>(); in GlobalSetup() 102 nonAsciiStringValues = new Dictionary<in in GlobalSetup() [all...] |
H A D | ParseRawPrimitivesBenchmark.cs | 49 Dictionary<int, byte[]> varintInputBuffers; 56 Dictionary<int, byte[]> stringInputBuffers; 57 Dictionary<int, ReadOnlySequence<byte>> stringInputBuffersSegmented; 71 varintInputBuffers = new Dictionary<int, byte[]>(); in GlobalSetup() 82 stringInputBuffers = new Dictionary<int, byte[]>(); in GlobalSetup() 89 stringInputBuffersSegmented = new Dictionary<int, ReadOnlySequence<byte>>(); in GlobalSetup()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerMutate.h | 101 size_t AddWordFromDictionary(Dictionary &D, uint8_t *Data, size_t Size, 120 // Dictionary provided by the user via -dict=DICT_FILE. 121 Dictionary ManualDictionary; 124 Dictionary TempAutoDictionary; 127 Dictionary PersistentAutoDictionary;
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonFormatter.cs | 690 throw new ArgumentException("Dictionary has entry with null key"); in WriteDictionary() 879 private static readonly Dictionary<System.Type, Dictionary<object, string>> dictionaries 880 = new Dictionary<System.Type, Dictionary<object, string>>(); 885 Dictionary<object, string> nameMapping; in GetOriginalName() 903 private static Dictionary<object, string> GetNameMapping(System.Type enumType) => 914 private static Dictionary<object, string> GetNameMapping(System.Type enumType) =>
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | ZipRegistry.h | 83 UInt32 Dictionary;
member 119 BlockLogSize = NumThreads = Level = Dictionary = Order = (UInt32)(Int32)-1;
in ResetForLevelChange()
|
/third_party/lzma/CS/7zip/Compress/LzmaAlone/ |
H A D | LzmaAlone.cs | 67 Dictionary,
enumerator 172 if (parser[(int)Key.Dictionary].ThereIs)
in Main2() 175 if (!GetNumber((string)parser[(int)Key.Dictionary].PostStrings[0], out dicLog))
in Main2()
|