Home
last modified time | relevance | path

Searched refs:iteritems (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/tools/opt-viewer/
H A Doptrecord.py33 dict.iteritems
38 def iteritems(d): function
44 def iteritems(d): function
45 return d.iteritems()
93 for (k, v) in iteritems(old_dict):
315 for filename, d in iteritems(file_remarks_job):
316 for line, remarks in iteritems(d):
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py5 from six import iteritems
133 for index, name in iteritems(expected_stack):
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/wow64_minidump/
H A DTestWow64MiniDump.py10 from six import iteritems
/llvm-project-15.0.7/lldb/third_party/Python/module/six/
H A Dsix.py599 def iteritems(d, **kw): function
617 def iteritems(d, **kw): function
618 return d.iteritems(**kw)
631 _add_doc(iteritems,
/llvm-project-15.0.7/polly/lib/External/isl/imath/tools/
H A Dfindthreshold.py82 return list((p, h, t, tp) for p, (h, t, tp) in stats.iteritems())
/llvm-project-15.0.7/clang/tools/clang-format/
H A Dgit-clang-format402 def iteritems(container): function
404 return container.iteritems() # Python 2
408 for filename, line_ranges in iteritems(changed_lines):
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/
H A DTestMiniDumpNew.py5 from six import iteritems
330 for index, name in iteritems(expected_stack):
H A DTestMiniDumpUUID.py5 from six import iteritems
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py933 for key, value in expected.iteritems():