HomeSort by relevance Sort by last modified time
    Searched refs:co_name (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
stacktest.py 13 if not (a.co_name == "?" or a.co_name.startswith('<lambda')):
14 assert a.co_name == b.co_name, (a, b)
16 print "stack mismatch %s: %d vs. %d" % (a.co_name,
dumppyc.py 22 if match is None or co.co_name == match:
  /external/python/cpython2/Tools/compiler/
stacktest.py 13 if not (a.co_name == "?" or a.co_name.startswith('<lambda')):
14 assert a.co_name == b.co_name, (a, b)
16 print "stack mismatch %s: %d vs. %d" % (a.co_name,
dumppyc.py 22 if match is None or co.co_name == match:
  /tools/test/connectivity/acts/tests/google/bt/power/
A2dpPowerTest.py 355 current_test_case = func_name = sys._getframe().f_code.co_name
390 current_test_case = func_name = sys._getframe().f_code.co_name
429 current_test_case = func_name = sys._getframe().f_code.co_name
452 current_test_case = func_name = sys._getframe().f_code.co_name
475 current_test_case = func_name = sys._getframe().f_code.co_name
498 current_test_case = func_name = sys._getframe().f_code.co_name
521 current_test_case = func_name = sys._getframe().f_code.co_name
544 current_test_case = func_name = sys._getframe().f_code.co_name
567 current_test_case = func_name = sys._getframe().f_code.co_name
590 current_test_case = func_name = sys._getframe().f_code.co_name
    [all...]
  /tools/test/connectivity/acts/tests/google/wifi/
WifiSoftApAcsTest.py 250 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
259 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
268 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
277 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
286 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
295 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
304 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
313 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
322 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1])
331 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
110 self.assertEqual(co.co_name, "funcname")
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
110 self.assertEqual(co.co_name, "funcname")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
110 self.assertEqual(co.co_name, "funcname")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
110 self.assertEqual(co.co_name, "funcname")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
110 self.assertEqual(co.co_name, "funcname")
  /external/libnl/include/netlink-private/
cache-api.h 30 * .co_name = "route/link",
168 char * co_name; member in struct:nl_cache_ops
  /tools/test/connectivity/acts/tests/google/ble/power/
BleScanPowerTest.py 154 current_test_case = func_name = sys._getframe().f_code.co_name
182 current_test_case = func_name = sys._getframe().f_code.co_name
210 current_test_case = func_name = sys._getframe().f_code.co_name
238 current_test_case = func_name = sys._getframe().f_code.co_name
266 current_test_case = func_name = sys._getframe().f_code.co_name
294 current_test_case = func_name = sys._getframe().f_code.co_name
  /external/libnl/lib/
cache_mngt.c 46 if (!strcmp(ops->co_name, name))
254 if (!ops->co_name || !ops->co_obj_ops)
258 if (__nl_cache_ops_lookup(ops->co_name)) {
268 NL_DBG(1, "Registered cache operations %s\n", ops->co_name);
305 NL_DBG(1, "Unregistered cache operations %s\n", ops->co_name);
  /external/python/cpython2/Lib/test/
test_code.py 93 yield "<code object %s>" % elt.co_name
112 self.assertEqual(co.co_name, "funcname")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
codeobject.c 101 co->co_name = name;
172 {"co_name", T_OBJECT, OFF(co_name), READONLY},
314 Py_XDECREF(co->co_name);
335 if (co->co_name && PyString_Check(co->co_name))
336 name = PyString_AS_STRING(co->co_name);
347 cmp = PyObject_Compare(co->co_name, cp->co_name);
404 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
codeobject.c 101 co->co_name = name;
172 {"co_name", T_OBJECT, OFF(co_name), READONLY},
314 Py_XDECREF(co->co_name);
335 if (co->co_name && PyString_Check(co->co_name))
336 name = PyString_AS_STRING(co->co_name);
347 cmp = PyObject_Compare(co->co_name, cp->co_name);
404 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
    [all...]
  /external/python/cpython2/Objects/
codeobject.c 141 co->co_name = name;
212 {"co_name", T_OBJECT, OFF(co_name), READONLY},
354 Py_XDECREF(co->co_name);
375 if (co->co_name && PyString_Check(co->co_name))
376 name = PyString_AS_STRING(co->co_name);
387 cmp = PyObject_Compare(co->co_name, cp->co_name);
573 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon4310
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon4617
  /prebuilts/gdb/darwin-x86/include/python2.7/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon66449
  /prebuilts/gdb/linux-x86/include/python2.7/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon66571
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon964
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
code.h 24 PyObject *co_name; /* string (name, for reference) */ member in struct:__anon1087
  /external/python/cpython3/Lib/test/
test_code.py 116 yield "<code object %s>" % elt.co_name
135 self.assertEqual(co.co_name, "funcname")

Completed in 1299 milliseconds

1 2 3 4 5 6 7 8 910