Home
last modified time | relevance | path

Searched refs:key_string (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Lib/idlelib/
Dconfig_key.py72 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/
Dh264_video_toolbox_encoder.cc63 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/
Dvalues_util.cc45 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/
Dxrt_state.cc274 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/
Dplatform_LibCBench.py75 key_string = re.sub('[^\w]', '_', benchmark)
76 perf_results[key_string] = average
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config_key.py53 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/
Dslice_hash_table_test.cc56 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/
Dmultistore_file.py118 def get_credential_storage_custom_string_key(filename, key_string, argument
135 key_dict = {'key': key_string}
/external/tensorflow/tensorflow/python/lib/core/
Dndarray_tensor.cc38 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/
Dmodels.py96 key_string = ','.join([base] + hashes)
97 return utils.hash('md5', key_string).hexdigest()
/external/tensorflow/tensorflow/python/client/
Dtf_session_helper.cc83 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/
Drngparser.c117 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/
Dtensor_bundle.cc415 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/
Djsregexp.cc6787 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 …]
Djsregexp.h1545 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/
Dbuiltins-collections-gen.cc664 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/
Dgui.py714 def match_func(self, completion, key_string, iter, func_data): argument
716 if self.application_liststore.get_value(iter, 0).find(key_string) != -1: