Searched refs:dict (Results 51 - 75 of 81) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h55 size_t FindLongestCommandWord(std::map<std::string, ValueType> &dict) { argument
56 auto end = dict.end();
59 for (auto pos = dict.begin(); pos != end; ++pos) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp743 auto dict = object->GetAsDictionary();
744 if (!dict || !dict->IsValid())
749 if (!dict->GetValueForKeyAsInteger("signo", signo))
753 if (!dict->GetValueForKeyAsString("name", name))
758 auto object_sp = dict->GetValueForKey("suppress");
763 object_sp = dict->GetValueForKey("stop");
768 object_sp = dict->GetValueForKey("notify");
773 object_sp = dict->GetValueForKey("description");
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Duserspace.py63 """Return a dict("field": value) for this domain (string) + rid (int)"""
80 v = dict()
104 """Update the acct dict to incorporate the
214 # Due to -i, we need to keep a dict, so we can potentially add
216 acct = dict()
H A Ddataset.py71 proptable = dict()
107 props is the property settings dict from zfs.ioctl.next_dataset.
193 d is a dict specifying which permissions to add/remove:
202 Return a dict("whostr": { "perm" -> None })."""
209 Return a dict("tag": timestamp)."""
/freebsd-11-stable/lib/libc/db/test/
H A Drun.test15 if [ -f /usr/share/dict/words ]; then
16 DICT=/usr/share/dict/words
17 elif [ -f /usr/dict/words ]; then
18 DICT=/usr/dict/words
/freebsd-11-stable/tests/sys/opencrypto/
H A Ddpkt.py34 dict(zip(clsdict['__hdr_fields__'], [ x[2] for x in st ]))
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dnoderevs.c174 apr_hash_t *dict,
183 idx_void = apr_hash_get(dict, &id, sizeof(id));
189 apr_hash_set(dict, ids->elts + (idx-1) * ids->elt_size,
201 apr_hash_t *dict,
210 idx_void = apr_hash_get(dict, rep, sizeof(*rep));
216 apr_hash_set(dict, reps->elts + (idx-1) * reps->elt_size,
173 store_id(apr_array_header_t *ids, apr_hash_t *dict, const svn_fs_x__id_t *id) argument
200 store_representation(apr_array_header_t *reps, apr_hash_t *dict, const svn_fs_x__representation_t *rep) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp24 const lldb_private::StructuredData::Dictionary &dict,
26 SetRegisterInfo(dict, arch);
61 DynamicRegisterInfo::SetRegisterInfo(const StructuredData::Dictionary &dict, argument
65 if (dict.GetValueForKeyAsArray("sets", sets)) {
81 if (!dict.GetValueForKeyAsArray("registers", regs))
23 DynamicRegisterInfo( const lldb_private::StructuredData::Dictionary &dict, const lldb_private::ArchSpec &arch) argument
/freebsd-11-stable/share/mk/
H A Dmeta2deps.py71 def getv(dict, key, d=None):
72 """Lookup key in dict and return value or the supplied default."""
73 if key in dict:
74 return dict[key]
/freebsd-11-stable/contrib/bmake/mk/
H A Dmeta2deps.py70 def getv(dict, key, d=None):
71 """Lookup key in dict and return value or the supplied default."""
72 if key in dict:
73 return dict[key]
/freebsd-11-stable/sys/contrib/zlib/test/
H A Dinfcover.c392 unsigned char dict[257]; local
425 memset(dict, 0, 257);
426 ret = inflateSetDictionary(&strm, dict, 257);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp134 CFCReleaser<CFDictionaryRef> dict(
137 if (dict.get()) {
140 ::CFDictionaryGetValue(dict.get(), uuid_cfstr.get()));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h191 "key not in dict");
288 const PythonDictionary &dict);
292 const PythonDictionary &dict) {
293 return ResolveNameWithDictionary(name, dict).AsType<T>();
291 ResolveNameWithDictionary(llvm::StringRef name, const PythonDictionary &dict) argument
H A DPythonDataObjects.cpp141 const PythonDictionary &dict) {
144 PythonObject result = dict.GetItemForKey(PythonString(piece));
774 PyObject *dict = PyModule_GetDict(m_py_obj);
775 if (!dict)
777 PyObject *item = PyDict_GetItemString(dict, NullTerminated(name));
140 ResolveNameWithDictionary(llvm::StringRef name, const PythonDictionary &dict) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DXML.cpp411 plist.ForEachChildElementWithName("dict",
412 [this](const XMLNode &dict) -> bool {
413 this->m_dict_node = dict;
465 } else if (element_name == "dict" || element_name == "array")
488 } else if (element_name == "dict") {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp239 virtual void DoSerialization(StructuredData::Dictionary &dict) const = 0;
274 void DoSerialization(StructuredData::Dictionary &dict) const override {
275 dict.AddStringItem("regex", m_regex_text);
326 void DoSerialization(StructuredData::Dictionary &dict) const override {
327 dict.AddStringItem("exact_text", m_match_text);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-alpha.c2166 bfd_byte dict[4096];
2187 memset (dict, 0, sizeof dict);
2198 n = dict[h];
2203 dict[h] = n;
2214 h &= sizeof dict - 1;
2158 bfd_byte dict[4096]; local
/freebsd-11-stable/lib/libc/db/test/btree.tests/
H A Dmain.c113 char *dict = "words"; /* default dictionary */ variable
148 dict = optarg;
/freebsd-11-stable/targets/pseudo/userland/share/
H A DMakefile.depend9 share/dict \
/freebsd-11-stable/stand/ficl/
H A Dtools.c806 nWords, (long) (dp->here - dp->dict), dp->size);
833 nWords, (long) (dp->here - dp->dict), dp->size);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-pptp.c487 const struct tok *dict = local
495 if (dict != NULL)
496 ND_PRINT((ndo, ":%s", tok2str(dict, "?", *result_code)));
/freebsd-11-stable/sys/kern/
H A Dkern_rctl.c132 struct dict { struct
137 static struct dict subjectnames[] = {
144 static struct dict resourcenames[] = {
172 static struct dict actionnames[] = {
821 str2value(const char *str, int *value, struct dict *table)
/freebsd-11-stable/crypto/heimdal/base/
H A DMakefile.in123 dist_libheimbase_la_OBJECTS = array.lo bool.lo dict.lo heimbase.lo \
402 dict.c \
501 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict.Plo@am__quote@
/freebsd-11-stable/usr.bin/sed/tests/
H A Dmulti_test.sh49 DICT=/usr/share/dict/words
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp658 static void AddBoolConfigEntry(StructuredData::Dictionary &dict, argument
664 dict.AddItem(name, std::move(entry_up));
667 static void AddLLVMTargets(StructuredData::Dictionary &dict) { argument
675 dict.AddItem("targets", std::move(entry_up));

Completed in 383 milliseconds

1234