| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
| H A D | ScriptedPythonInterface.h | 65 #define SET_CASE_AND_CONTINUE(method_name, case) \ in CheckAbstractMethodImplementation() argument 67 checker[method_name] = {case, {}}; \ in CheckAbstractMethodImplementation() 73 llvm::StringLiteral method_name = requirement.name; in CheckAbstractMethodImplementation() local 74 if (!class_dict.HasKey(method_name)) in CheckAbstractMethodImplementation() 75 SET_CASE_AND_CONTINUE(method_name, in CheckAbstractMethodImplementation() 77 auto callable_or_err = class_dict.GetItem(method_name); in CheckAbstractMethodImplementation() 80 SET_CASE_AND_CONTINUE(method_name, in CheckAbstractMethodImplementation() 86 SET_CASE_AND_CONTINUE(method_name, in CheckAbstractMethodImplementation() 90 SET_CASE_AND_CONTINUE(method_name, AbstractMethodCheckerCases::eValid) in CheckAbstractMethodImplementation() 95 SET_CASE_AND_CONTINUE(method_name, in CheckAbstractMethodImplementation() [all …]
|
| /freebsd/tests/sys/netlink/ |
| H A D | test_rtnl_neigh.py | 14 method_name = method.__name__ 15 if "4" in method_name: 17 if "6" in method_name:
|
| H A D | test_rtnl_ifaddr.py | 34 method_name = method.__name__ 35 if "4" in method_name: 36 if "nofilter" in method_name: 40 if "6" in method_name:
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedPythonInterface.h | |
| H A D | SWIGPythonBridge.h | 160 const char *method_name,
|
| /freebsd/sys/dev/acpica/ |
| H A D | acpi_powerres.c | 302 char *method_name, *reslist_name = NULL; in acpi_pwr_switch_consumer() local 346 method_name = "_PS0"; in acpi_pwr_switch_consumer() 350 method_name = "_PS1"; in acpi_pwr_switch_consumer() 354 method_name = "_PS2"; in acpi_pwr_switch_consumer() 358 method_name = "_PS3"; in acpi_pwr_switch_consumer() 362 method_name = "_PS3"; in acpi_pwr_switch_consumer() 382 if (ACPI_FAILURE(AcpiGetHandle(consumer, method_name, &method_handle))) in acpi_pwr_switch_consumer()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITProfiling/ |
| H A D | jitprofiling.h | 157 char* method_name; member 182 char* method_name; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
| H A D | JITLoaderVTune.cpp | 40 MethodMessage.method_name = in registerJITLoaderVTuneRegisterImpl() 43 MethodMessage.method_name = NULL; in registerJITLoaderVTuneRegisterImpl() 131 outs() << "Method load [" << msg->method_id << "]: " << msg->method_name in NotifyEvent()
|
| /freebsd/contrib/googletest/docs/reference/ |
| H A D | mocking.md | 12 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`));` \ 13 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`), 16 Defines a mock method *`method_name`* with arguments `(`*`args...`*`)` and 60 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))` 63 method *`method_name`* of the object *`mock_object`* is called with arguments 69 correspond to each argument of the method *`method_name`*. The expectation will 70 apply only to calls of *`method_name`* whose arguments match all of the 79 EXPECT_CALL(mock_object, method_name(matchers...)) 322 `ON_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))` 324 Defines what happens when the method *`method_name`* of the object [all …]
|
| /freebsd/tests/sys/net/routing/ |
| H A D | test_rtsock_multipath.py | 11 method_name = method.__name__ 12 if "multipath4" in method_name: 15 elif "multipath6" in method_name:
|
| /freebsd/lib/libc/net/ |
| H A D | nsdispatch.c | 629 const char *method_name, const ns_src defaults[], ...) in _nsdispatch() argument 675 method_name, disp_tab, &mdata); in _nsdispatch() 695 method_name, disp_tab, &mdata); in _nsdispatch() 750 srclist[i].name, database, method_name); in _nsdispatch()
|
| /freebsd/tests/atf_python/ |
| H A D | atf_pytest.py | 154 method_name = nodeid_to_method_name(obj.nodeid) 155 cleanup_name = "cleanup_{}".format(method_name)
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 143 GetMethodNameVariants(ConstString method_name) const override;
|
| H A D | ObjCLanguage.cpp | 99 ObjCLanguage::ObjCMethodName method_name(name, type); in Create() local 100 return method_name; in Create() 180 ObjCLanguage::GetMethodNameVariants(ConstString method_name) const { in GetMethodNameVariants() 183 ObjCLanguage::ObjCMethodName::Create(method_name.GetStringRef(), false); in GetMethodNameVariants()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | LocalizationChecker.cpp | 604 #define LSM_INSERT_NULLARY(receiver, method_name) \ argument 606 &Ctx.Idents.get(method_name))}); 607 #define LSM_INSERT_UNARY(receiver, method_name) \ argument 609 Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(method_name))});
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 169 Result.method_name = const_cast<char*>(FnName); in FunctionDescToIntelJITFormat()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Language.h | 214 GetMethodNameVariants(ConstString method_name) const { in GetMethodNameVariants() argument
|
| /freebsd/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 266 void *implementor, const char *method_name, 270 auto pfunc = self.ResolveName<PythonCallable>(method_name); 286 if (strcmp(method_name, "__callback__") == 0) {
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 3898 uint32_t method_name; /* SEL, aka struct objc_selector * (32-bit pointer) */ member 4179 sys::swapByteOrder(method.method_name); in swapStruct() 4752 << format("0x%08" PRIx32, method.method_name); in print_method_list() 4754 name = get_pointer_32(method.method_name, offset, xleft, S, info, true); in print_method_list()
|