/external/python/cpython3/Lib/idlelib/ |
D | config_key.py | 72 self.key_string = StringVar(self) 73 self.key_string.set('') 123 textvariable=self.key_string, relief='groove', 178 textvariable=self.key_string) 243 self.key_string.set(f"<{'-'.join(keylist)}>") 256 self.key_string.set('') 259 keys = self.key_string.get().strip()
|
/external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
D | h264_video_toolbox_encoder.cc | 63 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local 64 LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty() 74 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local 75 LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty() 86 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local 88 LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty()
|
/external/libchrome/dbus/ |
D | values_util.cc | 45 std::string key_string; in PopDictionaryEntries() local 48 if (!entry_reader.PopString(&key_string)) in PopDictionaryEntries() 56 base::JSONWriter::Write(*key, &key_string); in PopDictionaryEntries() 62 dictionary_value->SetWithoutPathExpansion(key_string, std::move(value)); in PopDictionaryEntries()
|
/external/tensorflow/tensorflow/compiler/xrt/ |
D | xrt_state.cc | 274 string key_string = absl::StrCat(key); in Lookup() local 275 TF_RETURN_IF_ERROR(rm->Lookup(kTupleContainer, key_string, allocation)); in Lookup() 281 string key_string = absl::StrCat(key); in DeleteFromResourceManager() local 282 return rm->Delete<XRTTupleAllocation>(kTupleContainer, key_string); in DeleteFromResourceManager() 488 string key_string = absl::StrCat(*key); in Intern() local 489 return rm->Create(kTupleContainer, key_string, this); in Intern()
|
/external/autotest/client/site_tests/platform_LibCBench/ |
D | platform_LibCBench.py | 75 key_string = re.sub('[^\w]', '_', benchmark) 76 perf_results[key_string] = average
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config_key.py | 53 self.dialog.key_string.set(' ') 59 self.dialog.key_string.set('<Key-F11>') 213 string = dialog.key_string.get 234 string = dialog.key_string.get
|
/external/grpc-grpc/test/core/slice/ |
D | slice_hash_table_test.cc | 56 void CheckNonExistentValue(const char* key_string, const TestHashTable& table) { in CheckNonExistentValue() argument 57 grpc_slice key = grpc_slice_from_static_string(key_string); in CheckNonExistentValue()
|
/external/python/oauth2client/oauth2client/contrib/ |
D | multistore_file.py | 118 def get_credential_storage_custom_string_key(filename, key_string, argument 135 key_dict = {'key': key_string}
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | ndarray_tensor.cc | 38 const char* key_string = in PyArrayDescr_to_TF_DataType() local 41 if (!key_string) { in PyArrayDescr_to_TF_DataType() 44 tensorflow::string key = key_string; in PyArrayDescr_to_TF_DataType()
|
/external/autotest/tko/ |
D | models.py | 96 key_string = ','.join([base] + hashes) 97 return utils.hash('md5', key_string).hexdigest()
|
/external/tensorflow/tensorflow/python/client/ |
D | tf_session_helper.cc | 83 char* key_string = PyBytes_AsString(key); in TF_Run_wrapper_helper() local 84 if (!key_string) { in TF_Run_wrapper_helper() 89 input_names.push_back(key_string); in TF_Run_wrapper_helper()
|
/external/libxml2/ |
D | rngparser.c | 117 const xmlChar *key_string; member 232 (str == ctxt->key_string) || in xmlCRNGIsKeyword() 839 if (token->token == ctxt->key_string) { in xmlParseCRNG_datatype() 1477 ctxt.key_string = xmlDictLookup(ctxt.dict, BAD_CAST "string", -1); in xmlConvertCRNG()
|
/external/tensorflow/tensorflow/core/util/tensor_bundle/ |
D | tensor_bundle.cc | 415 const string key_string(key); in Add() local 416 if (entries_.find(key_string) != entries_.end()) { in Add() 421 BundleEntryProto* entry = &entries_[key_string]; in Add()
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 6787 Object* RegExpResultsCache::Lookup(Heap* heap, String* key_string, in Lookup() argument 6792 if (!key_string->IsInternalizedString()) return Smi::kZero; in Lookup() 6803 uint32_t hash = key_string->Hash(); in Lookup() 6806 if (cache->get(index + kStringOffset) != key_string || in Lookup() 6810 if (cache->get(index + kStringOffset) != key_string || in Lookup() 6821 void RegExpResultsCache::Enter(Isolate* isolate, Handle<String> key_string, in Enter() argument 6828 if (!key_string->IsInternalizedString()) return; in Enter() 6839 uint32_t hash = key_string->Hash(); in Enter() 6843 cache->set(index + kStringOffset, *key_string); in Enter() 6851 cache->set(index2 + kStringOffset, *key_string); in Enter() [all …]
|
D | jsregexp.h | 1545 static Object* Lookup(Heap* heap, String* key_string, Object* key_pattern, 1549 static void Enter(Isolate* isolate, Handle<String> key_string,
|
/external/v8/src/builtins/ |
D | builtins-collections-gen.cc | 664 void SameValueZeroHeapNumber(Node* key_string, Node* candidate_key, 693 void SameValueZeroString(Node* context, Node* key_string, Node* candidate_key, 942 Node* key_string, in SameValueZeroString() argument 950 Branch(WordEqual(CallBuiltin(Builtins::kStringEqual, context, key_string, in SameValueZeroString()
|
/external/selinux/python/sepolicy/sepolicy/ |
D | gui.py | 714 def match_func(self, completion, key_string, iter, func_data): argument 716 if self.application_liststore.get_value(iter, 0).find(key_string) != -1:
|