HomeSort by relevance Sort by last modified time
    Searched defs:funcname (Results 26 - 50 of 51) sorted by null

12 3

  /external/python/cpython3/Objects/
classobject.c 80 PyObject *funcname; local
83 funcname = _PyObject_GetAttrId(func, &PyId___name__);
84 if (funcname == NULL) {
89 return Py_BuildValue("O(ON)", getattr, self, funcname);
247 PyObject *funcname = NULL, *result = NULL; local
250 funcname = _PyObject_GetAttrId(func, &PyId___qualname__);
251 if (funcname == NULL) {
256 funcname = _PyObject_GetAttrId(func, &PyId___name__);
257 if (funcname == NULL) {
264 if (funcname != NULL && !PyUnicode_Check(funcname))
543 PyObject *funcname = NULL , *result = NULL; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
symtab.go 275 Function: funcname(ex.funcInfo),
289 if arg.file == nil && arg.funcName == nil {
299 Function: gostring(arg.funcName),
551 f2name = funcname(f2)
553 println("function symbol table not sorted by program counter:", hex(datap.ftab[i].entry), funcname(f1), ">", hex(datap.ftab[i+1].entry), f2name)
555 print("\t", hex(datap.ftab[j].entry), " ", funcname(funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[j].funcoff])), datap}), "\n")
588 return funcname(f.funcInfo())
749 print("runtime: invalid pc-encoded table f=", funcname(f), " pc=", hex(pc), " targetpc=", hex(targetpc), " tab=", p, "\n")
774 func funcname(f funcInfo) string { func
803 // print("looking for ", hex(targetpc), " in ", funcname(f), " got file=", fileno, " line=", lineno, "\n"
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
symtab.go 275 Function: funcname(ex.funcInfo),
289 if arg.file == nil && arg.funcName == nil {
299 Function: gostring(arg.funcName),
551 f2name = funcname(f2)
553 println("function symbol table not sorted by program counter:", hex(datap.ftab[i].entry), funcname(f1), ">", hex(datap.ftab[i+1].entry), f2name)
555 print("\t", hex(datap.ftab[j].entry), " ", funcname(funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[j].funcoff])), datap}), "\n")
588 return funcname(f.funcInfo())
749 print("runtime: invalid pc-encoded table f=", funcname(f), " pc=", hex(pc), " targetpc=", hex(targetpc), " tab=", p, "\n")
774 func funcname(f funcInfo) string { func
803 // print("looking for ", hex(targetpc), " in ", funcname(f), " got file=", fileno, " line=", lineno, "\n"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
loadlib.c 420 const char *funcname; local
426 funcname = lua_pushlstring(L, modname, mark - modname);
427 funcname = lua_pushfstring(L, LUA_POF"%s", funcname);
428 stat = ll_loadfunc(L, filename, funcname);
432 funcname = lua_pushfstring(L, LUA_POF"%s", modname);
433 return ll_loadfunc(L, filename, funcname);
lparser.c 1454 static int funcname (LexState *ls, expdesc *v) { function
    [all...]
  /external/compiler-rt/lib/interception/
interception_win.cc 882 const char *funcname = &import_by_name->Name[0]; local
883 if (strcmp(funcname, function_name) == 0)
  /external/syslinux/com32/lua/src/
loadlib.c 469 const char *funcname; local
475 funcname = lua_pushlstring(L, modname, mark - modname);
476 funcname = lua_pushfstring(L, LUA_POF"%s", funcname);
477 stat = ll_loadfunc(L, filename, funcname);
481 funcname = lua_pushfstring(L, LUA_POF"%s", modname);
482 return ll_loadfunc(L, filename, funcname);
lparser.c 1454 static int funcname (LexState *ls, expdesc *v) { function
    [all...]
  /frameworks/base/core/java/android/app/
NativeActivity.java 88 private native long loadNativeCode(String path, String funcname, MessageQueue queue,
125 String funcname = "ANativeActivity_onCreate"; local
150 if (ln != null) funcname = ln;
167 mNativeHandle = loadNativeCode(path, funcname, Looper.myQueue(),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
classobject.c 2422 PyObject *funcname = NULL, *klassname = NULL, *result = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 1612 const char *funcname; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
classobject.c 2398 PyObject *funcname = NULL, *klassname = NULL, *result = NULL; local
    [all...]
  /external/python/cpython2/Modules/
_testcapimodule.c 2199 const char *funcname; local
    [all...]
  /external/python/cpython2/Objects/
classobject.c 2422 PyObject *funcname = NULL, *klassname = NULL, *result = NULL; local
    [all...]
  /external/python/cpython3/Modules/
_cursesmodule.c 602 const char *funcname; local
610 funcname = "add_wch";
624 funcname = "addch";
634 return PyCursesCheckERR(rtn, funcname);
650 const char *funcname; local
691 funcname = "addwstr";
702 funcname = "addstr";
711 return PyCursesCheckERR(rtn, funcname);
726 const char *funcname; local
768 funcname = "addnwstr"
1439 const char *funcname; local
1517 const char *funcname; local
    [all...]
_testcapimodule.c 2808 const char *funcname; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
syntax.go 223 // funcname returns the name of the function n.
224 func (n *Node) funcname() string { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
syntax.go 223 // funcname returns the name of the function n.
224 func (n *Node) funcname() string { func
    [all...]
  /external/python/cpython3/Python/
ceval.c 5444 char* funcname; local
5458 char* funcname; local
    [all...]
  /external/valgrind/perf/
tinycc.c 2364 static char *funcname; variable
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 

Completed in 524 milliseconds

12 3