Searched refs:method_name (Results 1 - 25 of 63) sorted by relevance

123

/netbsd-current/external/gpl3/gcc.old/dist/libcc1/
H A Dconnection.cc135 argument_wrapper<char *> method_name; local
137 if (!method_name.unmarshall (this))
141 = m_callbacks.find_callback (method_name);
/netbsd-current/external/gpl3/gcc/dist/libcc1/
H A Dconnection.cc126 argument_wrapper<char *> method_name; local
128 if (!method_name.unmarshall (this))
132 = m_callbacks.find_callback (method_name.get ());
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
H A Dpy-xmethods.py96 def match(self, class_type, method_name):
100 if not re.match('^method$', method_name):
166 def match(self, class_type, method_name):
176 if re.match('^size_diff<[ ]*[_a-zA-Z][ _a-zA-Z0-9]*>$', method_name):
179 t1_name = method_name[10:-1]
185 if re.match('^size_mul<[ ]*[0-9]+[ ]*>$', method_name):
188 m_val = int(method_name[9:-1])
190 if re.match('^mul<[ ]*[_a-zA-Z][ _a-zA-Z0-9]*>$', method_name):
193 t1_name = method_name[4:-1]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-xmethods.py99 def match(self, class_type, method_name):
103 if not re.match("^method$", method_name):
167 def match(self, class_type, method_name):
176 if re.match("^size_diff<[ ]*[_a-zA-Z][ _a-zA-Z0-9]*>$", method_name):
179 t1_name = method_name[10:-1]
185 if re.match("^size_mul<[ ]*[0-9]+[ ]*>$", method_name):
188 m_val = int(method_name[9:-1])
190 if re.match("^mul<[ ]*[_a-zA-Z][ _a-zA-Z0-9]*>$", method_name):
193 t1_name = method_name[4:-1]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.h157 char* method_name; member in struct:_iJIT_Method_NIDS
182 char* method_name; member in struct:_iJIT_Method_Load
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
H A Dxmethod.py82 def match(self, class_type, method_name):
92 method_name: The name (string) of the method to match.
204 def match(self, class_type, method_name):
206 mm = re.match(self._method_matcher, method_name)
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/
H A Dxmethod.py76 def match(self, class_type, method_name):
86 method_name: The name (string) of the method to match.
199 def match(self, class_type, method_name):
201 mm = re.match(self._method_matcher, method_name)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dxmethods.py150 def match(self, class_type, method_name):
153 method = self._method_dict.get(method_name)
267 def match(self, class_type, method_name):
270 method = self._method_dict.get(method_name)
311 def match(self, class_type, method_name):
314 method = self._method_dict.get(method_name)
392 def match(self, class_type, method_name):
395 method = self._method_dict.get(method_name)
507 def match(self, class_type, method_name):
510 method = self._method_dict.get(method_name)
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dxmethods.py150 def match(self, class_type, method_name):
153 method = self._method_dict.get(method_name)
267 def match(self, class_type, method_name):
270 method = self._method_dict.get(method_name)
311 def match(self, class_type, method_name):
314 method = self._method_dict.get(method_name)
392 def match(self, class_type, method_name):
395 method = self._method_dict.get(method_name)
507 def match(self, class_type, method_name):
510 method = self._method_dict.get(method_name)
[all...]
/netbsd-current/external/mit/isl/dist/interface/
H A Dgenerator.h24 * "method_name" is the the name of the method that sets this value.
29 string method_name; member in struct:set_enum
30 set_enum(int value, string name, string method_name) : argument
31 value(value), name(name), method_name(method_name) {}
123 string method_name(FunctionDecl *fd) const;
130 return method_name(fd).substr(strlen(set_callback_prefix));
H A Dgenerator.cc262 string method_name; local
266 method_name = prefix + name.substr(4);
267 c->set_enums[fd].push_back(set_enum(val, name, method_name));
302 fd_name = c->method_name(fd);
340 return prefixcmp(c->method_name(fd).c_str(),
432 string name = c->method_name(method);
882 string isl_class::method_name(FunctionDecl *fd) const function in class:isl_class
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/
H A Dsendmsg.c551 (sidx) method->method_name->sel_id,
664 const char *method_name; local
670 method_name = sel_getName (selector);
671 if (method_name == NULL)
680 registered yet, ie, the method_name of each of them is still
693 if (method->method_name
694 && strcmp ((char *)method->method_name, method_name) == 0)
717 method->method_name = objc_malloc (strlen (method_name)
[all...]
H A Dmethods.c38 return method->method_name;
H A Dselector.c116 if (method->method_name)
118 method->method_name
119 = __sel_register_typed_name ((const char *) method->method_name,
181 if (mth->method_name
183 mth->method_name))
H A Dclass.c679 objc_free ((char *)method->method_name);
714 objc_free ((char *)method->method_name);
831 (sidx) method_a->method_name->sel_id,
838 (sidx) method_b->method_name->sel_id,
/netbsd-current/external/gpl3/gcc/dist/libobjc/
H A Dsendmsg.c551 (sidx) method->method_name->sel_id,
664 const char *method_name; local
670 method_name = sel_getName (selector);
671 if (method_name == NULL)
680 registered yet, ie, the method_name of each of them is still
693 if (method->method_name
694 && strcmp ((char *)method->method_name, method_name) == 0)
717 method->method_name = objc_malloc (strlen (method_name)
[all...]
H A Dmethods.c38 return method->method_name;
H A Dselector.c116 if (method->method_name)
118 method->method_name
119 = __sel_register_typed_name ((const char *) method->method_name,
181 if (mth->method_name
183 mth->method_name))
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dmeth-typedefs.exp24 set method_name "${name}<$expected>"
26 set method_name "$name"
29 set expect ".*// ${method_name}\\($expected\\)"
30 lappend result [list "${method_name}($params)" $expect]
/netbsd-current/external/gpl3/gdb.old/dist/sim/common/
H A Dhw-instances.c158 const char *method_name,
172 hw_abort (me, "no methods (want %s)", method_name);
176 if (strcmp (method->name, method_name) == 0)
184 hw_abort (me, "no %s method", method_name);
157 hw_instance_call_method(struct hw_instance *instance, const char *method_name, int n_stack_args, unsigned_cell stack_args[ ], int n_stack_returns, unsigned_cell stack_returns[ ]) argument
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dhw-instances.c160 const char *method_name,
174 hw_abort (me, "no methods (want %s)", method_name);
178 if (strcmp (method->name, method_name) == 0)
186 hw_abort (me, "no %s method", method_name);
159 hw_instance_call_method(struct hw_instance *instance, const char *method_name, int n_stack_args, unsigned_cell stack_args[ ], int n_stack_returns, unsigned_cell stack_returns[ ]) argument
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dmeth-typedefs.exp24 set method_name "${name}<$expected>"
26 set method_name "$name"
29 set expect ".*// ${method_name}\\($expected\\)"
30 lappend result [list "${method_name}($params)" $expect]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dextension-priv.h250 const char *method_name,
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dextension-priv.h251 const char *method_name,
/netbsd-current/external/gpl3/binutils/dist/binutils/
H A Dprdbg.c2269 char *method_name;
2286 method_name = strdup (context ? info->stack->next->next->method
2290 if (! substitute_type (info, method_name))
2292 free (method_name);
2300 free (method_name);
2313 free (method_name);
2322 free (method_name);
2328 method_name, info->filename, method_type, info->stack->type);
2330 free (method_name);
2346 char *method_name;
2263 char *method_name; local
2340 char *method_name; local
[all...]

Completed in 614 milliseconds

123