/external/cbor-java/src/main/java/co/nstant/in/cbor/builder/ |
D | MapBuilder.java | 17 public MapBuilder<T> put(DataItem key, DataItem value) { in put() 22 public MapBuilder<T> put(long key, long value) { in put() 27 public MapBuilder<T> put(long key, boolean value) { in put() 32 public MapBuilder<T> put(long key, float value) { in put() 37 public MapBuilder<T> put(long key, double value) { in put() 42 public MapBuilder<T> put(long key, byte[] value) { in put() 47 public MapBuilder<T> put(long key, String value) { in put() 52 public MapBuilder<T> put(String key, long value) { in put() 57 public MapBuilder<T> put(String key, boolean value) { in put() 62 public MapBuilder<T> put(String key, float value) { in put() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | OutputProperties.java | 118 public void setProperty(QName key, String value) in setProperty() 120 setProperty(key.toNamespacedString(), value); in setProperty() local 130 public void setProperty(String key, String value) in setProperty() 153 public String getProperty(QName key) in getProperty() 167 public String getProperty(String key) in getProperty() 182 public void setBooleanProperty(QName key, boolean value) in setBooleanProperty() 194 public void setBooleanProperty(String key, boolean value) in setBooleanProperty() 210 public boolean getBooleanProperty(QName key) in getBooleanProperty() 226 public boolean getBooleanProperty(String key) in getBooleanProperty() 238 public void setIntProperty(QName key, int value) in setIntProperty() [all …]
|
/external/llvm-project/lldb/source/Host/macosx/cfcpp/ |
D | CFCMutableDictionary.cpp | 72 CFCMutableDictionary::GetValueIfPresent(const void *key, in GetValueIfPresent() 91 bool CFCMutableDictionary::AddValue(CFStringRef key, const void *value, in AddValue() 102 bool CFCMutableDictionary::SetValue(CFStringRef key, const void *value, in SetValue() 113 bool CFCMutableDictionary::AddValueSInt8(CFStringRef key, int8_t value, in AddValueSInt8() 128 bool CFCMutableDictionary::SetValueSInt8(CFStringRef key, int8_t value, in SetValueSInt8() 143 bool CFCMutableDictionary::AddValueSInt16(CFStringRef key, int16_t value, in AddValueSInt16() 158 bool CFCMutableDictionary::SetValueSInt16(CFStringRef key, int16_t value, in SetValueSInt16() 173 bool CFCMutableDictionary::AddValueSInt32(CFStringRef key, int32_t value, in AddValueSInt32() 188 bool CFCMutableDictionary::SetValueSInt32(CFStringRef key, int32_t value, in SetValueSInt32() 203 bool CFCMutableDictionary::AddValueSInt64(CFStringRef key, int64_t value, in AddValueSInt64() [all …]
|
/external/bcc/src/cc/api/ |
D | BPFTable.h | 43 StatusTuple string_to_key(const std::string& key_str, KeyType* key) { in string_to_key() 47 StatusTuple string_to_leaf(const std::string& value_str, ValueType* value) { in string_to_leaf() 51 StatusTuple key_to_string(const KeyType* key, std::string& key_str) { in key_to_string() 59 StatusTuple leaf_to_string(const ValueType* value, std::string& value_str) { in leaf_to_string() 70 bool lookup(void* key, void* value) { in lookup() 74 bool first(void* key) { in first() 78 bool next(void* key, void* next_key) { in next() 82 bool update(void* key, void* value) { in update() 86 bool remove(void* key) { return bpf_delete_elem(desc.fd, key) >= 0; } in remove() 132 virtual StatusTuple get_value(const int& index, ValueType& value) { in get_value() [all …]
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffersBuilder.java | 178 public void putBoolean(String key, boolean val) { in putBoolean() 182 private int putKey(String key) { in putKey() 219 public void putInt(String key, int val) { in putInt() 228 public void putInt(String key, long val) { in putInt() 245 public void putInt(long value) { in putInt() 253 public void putUInt(int value) { in putUInt() 261 public void putUInt(long value) { in putUInt() 270 public void putUInt64(BigInteger value) { in putUInt64() 274 private void putUInt64(String key, long value) { in putUInt64() 275 stack.add(Value.uInt64(putKey(key), value)); in putUInt64() local [all …]
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | InMemorySharedPreferences.java | 40 public String getString(String key, String defValue) { in getString() 51 public Set<String> getStringSet(String key, Set<String> defValues) { in getStringSet() 61 public int getInt(String key, int defValue) { in getInt() 71 public long getLong(String key, long defValue) { in getLong() 81 public float getFloat(String key, float defValue) { in getFloat() 91 public boolean getBoolean(String key, boolean defValue) { in getBoolean() 101 public boolean contains(String key) { in contains() 133 public SharedPreferences.Editor putString(String key, String value) { in putString() 142 public SharedPreferences.Editor putStringSet(String key, Set<String> values) { in putStringSet() 151 public SharedPreferences.Editor putInt(String key, int value) { in putInt() [all …]
|
/external/openscreen/discovery/dnssd/public/ |
D | dns_sd_txt_record.cc | 14 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, in IsValidTxtValue() 15 const std::vector<uint8_t>& value) { in IsValidTxtValue() 25 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, uint8_t value) { in IsValidTxtValue() 30 bool DnsSdTxtRecord::IsValidTxtValue(const std::string& key, in IsValidTxtValue() 31 const std::string& value) { in IsValidTxtValue() 35 Error DnsSdTxtRecord::SetValue(const std::string& key, in SetValue() 36 std::vector<uint8_t> value) { in SetValue() 46 Error DnsSdTxtRecord::SetValue(const std::string& key, in SetValue() 47 const std::string& value) { in SetValue() 51 Error DnsSdTxtRecord::SetFlag(const std::string& key, bool value) { in SetFlag() [all …]
|
/external/guava/guava/src/com/google/common/graph/ |
D | MapRetrievalCache.java | 39 public V get(@Nullable Object key) { in get() 40 V value = getIfCached(key); in get() local 47 addToCache((K) key, value); in get() local 55 protected V getIfCached(@Nullable Object key) { in getIfCached() 56 V value = super.getIfCached(key); in getIfCached() local 87 private void addToCache(K key, V value) { in addToCache() 98 final K key; field in MapRetrievalCache.CacheEntry 99 final V value; field in MapRetrievalCache.CacheEntry 101 CacheEntry(K key, V value) { in CacheEntry()
|
/external/guava/android/guava/src/com/google/common/graph/ |
D | MapRetrievalCache.java | 39 public V get(@NullableDecl Object key) { in get() 40 V value = getIfCached(key); in get() local 47 addToCache((K) key, value); in get() local 55 protected V getIfCached(@NullableDecl Object key) { in getIfCached() 56 V value = super.getIfCached(key); in getIfCached() local 87 private void addToCache(K key, V value) { in addToCache() 98 final K key; field in MapRetrievalCache.CacheEntry 99 final V value; field in MapRetrievalCache.CacheEntry 101 CacheEntry(K key, V value) { in CacheEntry()
|
/external/perfetto/src/tracing/ |
D | traced_value.cc | 40 void TracedValue::WriteInt64(int64_t value) && { in WriteInt64() 45 void TracedValue::WriteUInt64(uint64_t value) && { in WriteUInt64() 50 void TracedValue::WriteDouble(double value) && { in WriteDouble() 55 void TracedValue::WriteBoolean(bool value) && { in WriteBoolean() 60 void TracedValue::WriteString(const char* value) && { in WriteString() 65 void TracedValue::WriteString(const char* value, size_t len) && { in WriteString() 70 void TracedValue::WriteString(const std::string& value) && { in WriteString() 75 void TracedValue::WritePointer(const void* value) && { in WritePointer() 115 TracedValue TracedDictionary::AddItem(StaticString key) { in AddItem() 122 TracedValue TracedDictionary::AddItem(DynamicString key) { in AddItem() [all …]
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | expiring_lru_cache.h | 46 void Insert(const string& key, const T& value) { in Insert() 57 bool Delete(const string& key) { in Delete() 65 bool Lookup(const string& key, T* value) { in Lookup() 78 Status LookupOrCompute(const string& key, T* value, in LookupOrCompute() 116 T value; member 122 bool LookupLocked(const string& key, T* value) in LookupLocked() 139 void InsertLocked(const string& key, const T& value) in InsertLocked() 153 bool DeleteLocked(const string& key) TF_EXCLUSIVE_LOCKS_REQUIRED(mu_) { in DeleteLocked()
|
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/ |
D | expiring_lru_cache.h | 50 void Insert(const std::string& key, const T& value) { in Insert() 61 bool Delete(const std::string& key) { in Delete() 69 bool Lookup(const std::string& key, T* value) { in Lookup() 83 void LookupOrCompute(const std::string& key, T* value, in LookupOrCompute() 120 T value; member 126 bool LookupLocked(const std::string& key, T* value) in LookupLocked() 143 void InsertLocked(const std::string& key, const T& value) in InsertLocked() 157 bool DeleteLocked(const std::string& key) ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_) { in DeleteLocked()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | UnicodeRelation.java | 55 public boolean containsKey(int key) { in containsKey() 59 public boolean containsKey(String key) { in containsKey() 63 public boolean containsValue(T value) { in containsValue() 72 public Set<T> get(int key) { in get() 76 public Set<T> get(String key) { in get() 80 public UnicodeSet getKeys(T value) { in getKeys() 90 public UnicodeRelation<T> add(String key, T value) { in add() 98 public UnicodeRelation<T> add(int key, T value) { in add() 106 public UnicodeRelation<T> addAll(String key, Collection<T> values) { in addAll() 132 public UnicodeRelation<T> addAll(UnicodeSet keys, T value) { in addAll() [all …]
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | test_attach_probe.c | 18 const int key = 0, value = 1; in handle_sys_nanosleep_entry() local 27 const int key = 1, value = 2; in handle_sys_getpid_return() local 36 const int key = 2, value = 3; in handle_uprobe_entry() local 45 const int key = 3, value = 4; in handle_uprobe_return() local
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/transport/ |
D | metadata.cc | 64 void grpc_mdelem_trace_ref(void* md, const grpc_slice& key, in grpc_mdelem_trace_ref() 65 const grpc_slice& value, intptr_t refcnt, in grpc_mdelem_trace_ref() 78 void grpc_mdelem_trace_unref(void* md, const grpc_slice& key, in grpc_mdelem_trace_unref() 79 const grpc_slice& value, intptr_t refcnt, in grpc_mdelem_trace_unref() 110 AllocatedMetadata::AllocatedMetadata(const grpc_slice& key, in AllocatedMetadata() 111 const grpc_slice& value) in AllocatedMetadata() 119 AllocatedMetadata::AllocatedMetadata(const grpc_slice& key, in AllocatedMetadata() 120 const grpc_slice& value, const NoRefKey*) in AllocatedMetadata() 128 const grpc_core::ManagedMemorySlice& key, in AllocatedMetadata() 129 const grpc_core::UnmanagedMemorySlice& value) in AllocatedMetadata() [all …]
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Multimap.java | 183 boolean containsKey(@CompatibleWith("K") @NullableDecl Object key); in containsKey() 189 boolean containsValue(@CompatibleWith("V") @NullableDecl Object value); in containsValue() 195 boolean containsEntry( in containsEntry() 197 @CompatibleWith("V") @NullableDecl Object value); in containsEntry() 212 boolean put(@NullableDecl K key, @NullableDecl V value); in put() 222 boolean remove( in remove() 224 @CompatibleWith("V") @NullableDecl Object value); in remove() 243 boolean putAll(@NullableDecl K key, Iterable<? extends V> values); in putAll() 264 Collection<V> replaceValues(@NullableDecl K key, Iterable<? extends V> values); in replaceValues() 276 Collection<V> removeAll(@CompatibleWith("K") @NullableDecl Object key); in removeAll() [all …]
|
D | ForwardingMultimap.java | 59 public boolean containsEntry(@NullableDecl Object key, @NullableDecl Object value) { in containsEntry() 64 public boolean containsKey(@NullableDecl Object key) { in containsKey() 69 public boolean containsValue(@NullableDecl Object value) { in containsValue() 79 public Collection<V> get(@NullableDecl K key) { in get() 100 public boolean put(K key, V value) { in put() 106 public boolean putAll(K key, Iterable<? extends V> values) { in putAll() 118 public boolean remove(@NullableDecl Object key, @NullableDecl Object value) { in remove() 124 public Collection<V> removeAll(@NullableDecl Object key) { in removeAll() 130 public Collection<V> replaceValues(K key, Iterable<? extends V> values) { in replaceValues()
|
/external/boringssl/src/crypto/test/ |
D | file_test.cc | 71 std::string key, value; in ParseKeyValue() local 84 for (const std::string &key : unused_attributes_) { in ReadNext() local 90 for (const std::string &key : unused_instructions_) { in ReadNext() local 186 std::string key, value; in ReadNext() local 203 std::string key, value; in ReadNext() local 250 bool FileTest::HasAttribute(const std::string &key) { in HasAttribute() 255 bool FileTest::GetAttribute(std::string *out_value, const std::string &key) { in GetAttribute() 266 const std::string &FileTest::GetAttributeOrDie(const std::string &key) { in GetAttributeOrDie() 273 bool FileTest::HasInstruction(const std::string &key) { in HasInstruction() 278 bool FileTest::GetInstruction(std::string *out_value, const std::string &key) { in GetInstruction() [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/test/ |
D | file_test.cc | 71 std::string key, value; in ParseKeyValue() local 84 for (const std::string &key : unused_attributes_) { in ReadNext() local 90 for (const std::string &key : unused_instructions_) { in ReadNext() local 186 std::string key, value; in ReadNext() local 203 std::string key, value; in ReadNext() local 251 bool FileTest::HasAttribute(const std::string &key) { in HasAttribute() 256 bool FileTest::GetAttribute(std::string *out_value, const std::string &key) { in GetAttribute() 267 const std::string &FileTest::GetAttributeOrDie(const std::string &key) { in GetAttributeOrDie() 274 bool FileTest::HasInstruction(const std::string &key) { in HasInstruction() 279 bool FileTest::GetInstruction(std::string *out_value, const std::string &key) { in GetInstruction() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingMultimap.java | 59 public boolean containsEntry(@Nullable Object key, @Nullable Object value) { in containsEntry() 64 public boolean containsKey(@Nullable Object key) { in containsKey() 69 public boolean containsValue(@Nullable Object value) { in containsValue() 79 public Collection<V> get(@Nullable K key) { in get() 100 public boolean put(K key, V value) { in put() 106 public boolean putAll(K key, Iterable<? extends V> values) { in putAll() 118 public boolean remove(@Nullable Object key, @Nullable Object value) { in remove() 124 public Collection<V> removeAll(@Nullable Object key) { in removeAll() 130 public Collection<V> replaceValues(K key, Iterable<? extends V> values) { in replaceValues()
|
D | Multimap.java | 186 boolean containsKey(@CompatibleWith("K") @Nullable Object key); in containsKey() 192 boolean containsValue(@CompatibleWith("V") @Nullable Object value); in containsValue() 198 boolean containsEntry( in containsEntry() 199 @CompatibleWith("K") @Nullable Object key, @CompatibleWith("V") @Nullable Object value); in containsEntry() 214 boolean put(@Nullable K key, @Nullable V value); in put() 224 boolean remove( in remove() 225 @CompatibleWith("K") @Nullable Object key, @CompatibleWith("V") @Nullable Object value); in remove() 244 boolean putAll(@Nullable K key, Iterable<? extends V> values); in putAll() 265 Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values); in replaceValues() 277 Collection<V> removeAll(@CompatibleWith("K") @Nullable Object key); in removeAll() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | ContextAttributes.java | 33 public abstract ContextAttributes withSharedAttribute(Object key, Object value); in withSharedAttribute() 37 public abstract ContextAttributes withoutSharedAttribute(Object key); in withoutSharedAttribute() 48 public abstract Object getAttribute(Object key); in getAttribute() 54 public abstract ContextAttributes withPerCallAttribute(Object key, Object value); in withPerCallAttribute() 113 public ContextAttributes withSharedAttribute(Object key, Object value) in withSharedAttribute() 132 public ContextAttributes withoutSharedAttribute(Object key) in withoutSharedAttribute() 158 public Object getAttribute(Object key) in getAttribute() 173 public ContextAttributes withPerCallAttribute(Object key, Object value) in withPerCallAttribute() 206 protected ContextAttributes nonSharedInstance(Object key, Object value) in nonSharedInstance()
|
/external/libchrome/base/test/ |
D | values_test_util.cc | 18 const DictionaryValue& value, in ExpectDictBooleanValue() 19 const std::string& key) { in ExpectDictBooleanValue() 26 const DictionaryValue& value, in ExpectDictDictionaryValue() 27 const std::string& key) { in ExpectDictDictionaryValue() 34 const DictionaryValue& value, in ExpectDictIntegerValue() 35 const std::string& key) { in ExpectDictIntegerValue() 42 const DictionaryValue& value, in ExpectDictListValue() 43 const std::string& key) { in ExpectDictListValue() 50 const DictionaryValue& value, in ExpectDictStringValue() 51 const std::string& key) { in ExpectDictStringValue()
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | shared_prefs.py | 57 def set(self, value): argument 80 def set(self, value): argument 134 def set(self, value): argument 159 def set(self, value): argument 339 def PropertyType(self, key): argument 343 def HasProperty(self, key): argument 350 def GetBoolean(self, key): argument 354 def SetBoolean(self, key, value): argument 358 def GetFloat(self, key): argument 362 def SetFloat(self, key, value): argument [all …]
|
/external/skia/src/pdf/ |
D | SkPDFTypes.cpp | 214 SkPDFUnion SkPDFUnion::Int(int32_t value) { in Int() 218 SkPDFUnion SkPDFUnion::ColorComponent(uint8_t value) { in ColorComponent() 222 SkPDFUnion SkPDFUnion::ColorComponentF(float value) { in ColorComponentF() 226 SkPDFUnion SkPDFUnion::Bool(bool value) { in Bool() 230 SkPDFUnion SkPDFUnion::Scalar(SkScalar value) { in Scalar() 234 SkPDFUnion SkPDFUnion::Name(const char* value) { in Name() 240 SkPDFUnion SkPDFUnion::String(const char* value) { in String() 294 void SkPDFArray::append(SkPDFUnion&& value) { in append() 298 void SkPDFArray::appendInt(int32_t value) { in appendInt() 302 void SkPDFArray::appendColorComponent(uint8_t value) { in appendColorComponent() [all …]
|