| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/ |
| H A D | Object.pm | 143 for my $method_name (@methods) { 144 my $method = "${class}::$method_name"; 148 $self->{$method_name} = shift if @_; 149 return $self->{$method_name};
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | typeck.c | 726 lookup_argument_method (searched_class, method_name, method_signature) in lookup_argument_method() argument 727 tree searched_class, method_name, method_signature; in lookup_argument_method() 729 return lookup_do (searched_class, NULL_TREE, method_name, method_signature, 740 lookup_argument_method2 (searched_class, method_name, method_signature) in lookup_argument_method2() argument 741 tree searched_class, method_name, method_signature; in lookup_argument_method2() 744 method_name, method_signature, 755 lookup_java_method (searched_class, method_name, method_signature) in lookup_java_method() argument 756 tree searched_class, method_name, method_signature; in lookup_java_method() 766 return lookup_do (searched_class, searched_interface, method_name, 773 has_method (class, method_name) in has_method() argument [all …]
|
| H A D | builtins.c | 98 union string_or_tree GTY ((desc ("1"))) method_name; 274 tree m = get_identifier (java_builtins[i].method_name.s); in initialize_builtins() 277 java_builtins[i].method_name.t = m; in initialize_builtins() 338 tree method_name = DECL_NAME (method); local 344 && method_name == java_builtins[i].method_name.t)
|
| H A D | mangle.c | 139 tree method_name = DECL_NAME (mdecl); local 150 if (ID_INIT_P (method_name)) 153 mangle_member_name (method_name);
|
| H A D | gjavah.c | 109 struct method_name struct 115 struct method_name *next; argument 119 static struct method_name *method_name_list; 618 struct method_name *p; 637 struct method_name *p; 849 struct method_name *nn; 851 nn = xmalloc (sizeof (struct method_name));
|
| H A D | parse-scan.y | 105 const char *method_name; member 112 (D)->method_name = (N); \ 1324 && !strcmp (declarator->method_name, "main")
|
| H A D | verify.c | 1013 tree sig, method_name, method_type, self_type; local 1038 method_name = COMPONENT_REF_NAME (¤t_jcf->cpool, index); 1051 if (ID_CLINIT_P (method_name)) 1054 if (op_code != OPCODE_invokespecial && ID_INIT_P (method_name))
|
| H A D | parse-scan.c | 347 const char *method_name; member 354 (D)->method_name = (N); \ 3305 && !strcmp (declarator->method_name, "main")
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedPythonInterface.h | 42 T Dispatch(llvm::StringRef method_name, Status &error, Args &&...args) { in Dispatch() argument 48 llvm::Twine(method_name) + llvm::Twine(")")) in Dispatch() 71 [&implementor, &method_name, &expected_return_object](auto &&...args) { in Dispatch() 74 implementor.CallMethod(method_name.data(), args...); in Dispatch() 104 Status GetStatusFromMethod(llvm::StringRef method_name, Args &&...args) { in GetStatusFromMethod() argument 106 Dispatch<Status>(method_name, error, std::forward<Args>(args)...); in GetStatusFromMethod()
|
| H A D | SWIGPythonBridge.h | 141 bool LLDBSWIGPythonCallThreadPlan(void *implementor, const char *method_name, 150 LLDBSwigPythonCallBreakpointResolver(void *implementor, const char *method_name,
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | jitprofiling.h | 157 char* method_name; member 182 char* method_name; member
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | init.c | 1384 tree method_name; local 1394 method_name = TREE_OPERAND (name, 0); 1399 if (TREE_CODE (method_name) == LOOKUP_EXPR) 1401 method_name = lookup_namespace_name 1402 (type, TREE_OPERAND (method_name, 0)); 1403 TREE_OPERAND (name, 0) = method_name; 1405 my_friendly_assert (is_overloaded_fn (method_name), 980519); 1419 method_name = TREE_OPERAND (name, 0); 1420 if (TREE_CODE (method_name) == COMPONENT_REF) 1421 method_name = TREE_OPERAND (method_name, 1); [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | jv-typeprint.c | 210 char *method_name; in java_type_print_base() local 217 method_name = TYPE_FN_FIELDLIST_NAME (type, i); in java_type_print_base() 219 is_constructor = name && strcmp (method_name, name) == 0; in java_type_print_base()
|
| H A D | linespec.c | 224 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter); in find_methods() local 227 if (strncmp (method_name, "__", 2) == 0 || in find_methods() 228 strncmp (method_name, "op", 2) == 0 || in find_methods() 229 strncmp (method_name, "type", 4) == 0) in find_methods() 231 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI)) in find_methods() 232 method_name = dem_opname; in find_methods() 233 else if (cplus_demangle_opname (method_name, dem_opname, 0)) in find_methods() 234 method_name = dem_opname; in find_methods() 237 if (strcmp_iw (name, method_name) == 0) in find_methods()
|
| H A D | c-typeprint.c | 943 char *method_name = TYPE_FN_FIELDLIST_NAME (type, i); in c_type_print_base() local 945 int is_constructor = name && strcmp (method_name, name) == 0; in c_type_print_base() 952 || method_name[0] == '~'; in c_type_print_base() 1027 method_name, in c_type_print_base()
|
| H A D | p-typeprint.c | 631 char *method_name = TYPE_FN_FIELDLIST_NAME (type, i); in pascal_type_print_base() local 701 method_name, in pascal_type_print_base()
|
| /openbsd-src/usr.sbin/pppd/ |
| H A D | ccp.c | 100 static char *method_name(ccp_options *, ccp_options *); 837 method_name(ccp_options *opt, ccp_options *opt2) 888 method_name(go, ho)); 890 strncpy(method1, method_name(go, NULL), sizeof method1); 892 method1, method_name(ho, NULL)); 896 method_name(go, NULL)); 899 method_name(ho, NULL)); 869 method_name(opt, opt2) method_name() function
|
| /openbsd-src/usr.sbin/httpd/ |
| H A D | http.h | 82 const char *method_name; member
|
| H A D | server_http.c | 1697 method.method_name = name; in server_httpmethod_byname() 1713 for (i = 0; http_methods[i].method_name != NULL; i++) { in server_httpmethod_byid() 1715 name = http_methods[i].method_name; in server_httpmethod_byid() 1733 return (strcmp(ma->method_name, mb->method_name)); in server_httperror_byid()
|
| /openbsd-src/usr.sbin/relayd/ |
| H A D | http.h | 84 const char *method_name; member
|
| /openbsd-src/gnu/llvm/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 333 void *implementor, const char *method_name, lldb_private::Event *event, 339 auto pfunc = self.ResolveName<PythonCallable>(method_name); 354 method_name); 366 printf("Wrong return value type for call to %s.\n", method_name); 404 void *implementor, const char *method_name, 408 auto pfunc = self.ResolveName<PythonCallable>(method_name); 424 if (strcmp(method_name, "__callback__") == 0) {
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/binutils/ |
| H A D | prdbg.c | 2263 char *method_name; in tg_class_method_variant() local 2280 method_name = strdup (context ? info->stack->next->next->method in tg_class_method_variant() 2284 if (! substitute_type (info, method_name)) in tg_class_method_variant() 2307 method_name, info->filename, method_type, info->stack->type); in tg_class_method_variant() 2309 free (method_name); in tg_class_method_variant() 2325 char *method_name; in tg_class_static_method_variant() local 2347 method_name = strdup (info->stack->next->method); in tg_class_static_method_variant() 2362 method_name, info->filename, method_type, info->stack->type, in tg_class_static_method_variant() 2365 free (method_name); in tg_class_static_method_variant()
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | prdbg.c | 2262 char *method_name; in tg_class_method_variant() local 2279 method_name = strdup (context ? info->stack->next->next->method in tg_class_method_variant() 2283 if (! substitute_type (info, method_name)) in tg_class_method_variant() 2306 method_name, info->filename, method_type, info->stack->type); in tg_class_method_variant() 2308 free (method_name); in tg_class_method_variant() 2324 char *method_name; in tg_class_static_method_variant() local 2346 method_name = strdup (info->stack->next->method); in tg_class_static_method_variant() 2361 method_name, info->filename, method_type, info->stack->type, in tg_class_static_method_variant() 2364 free (method_name); in tg_class_static_method_variant()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 105 GetMethodNameVariants(ConstString method_name) const override;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-jitlistener/ |
| H A D | llvm-jitlistener.cpp | 54 outs() << "Method load [" << msg->method_id << "]: " << msg->method_name in NotifyEvent()
|