Home
last modified time | relevance | path

Searched refs:classname (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h77 classname(classname &&) = default; \
78 classname &operator=(classname &&) = default; \
79 classname(const classname &) = delete; \
80 classname &operator=(const classname &) = delete
85 classname() = delete
90 struct classname { \
91 classname() {} \
92 classname(const classname &) {} \
93 classname(classname &&) {} \
94 classname &operator=(const classname &) { return *this; }; \
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dplain_cpp.cc538 string classname; in print_persistent_callback_prototype() local
549 classname = type2cpp(clazz) + "::"; in print_persistent_callback_prototype()
552 rettype.c_str(), classname.c_str(), in print_persistent_callback_prototype()
563 string classname, callback_name, cpptype; in print_persistent_callback_setter_prototype() local
567 classname = type2cpp(clazz) + "::"; in print_persistent_callback_setter_prototype()
572 classname.c_str(), callback_name.c_str(), cpptype.c_str(), in print_persistent_callback_setter_prototype()
1180 string classname = type2cpp(clazz); in print_persistent_callbacks() local
1187 cppname, classname.c_str(), cppname); in print_persistent_callbacks()
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dloader.py42 def _make_failed_test(classname, methodname, exception, suiteClass): argument
46 TestClass = type(classname, (case.TestCase,), attrs)
/llvm-project-15.0.7/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td36 class GICombinerHelper<string classname, list<GICombine> rules>
39 string Classname = classname;
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dtblgen.rst593 .. option:: -class=classname
/llvm-project-15.0.7/llvm/docs/TableGen/
H A DBackGuide.rst546 * ``getAllDerivedDefinitions(``\ *classname*\ ``)`` returns a vector of
/llvm-project-15.0.7/lldb/docs/use/
H A Dmap.rst908 … <b>(lldb)</b> target stop-hook add --classname MyClass --one-liner "frame variable *this"
/llvm-project-15.0.7/lldb/source/Commands/
H A DOptions.td1018 def target_stop_hook_add_classname : Option<"classname", "c">, Groups<[2,5]>,