Home
last modified time | relevance | path

Searched refs:getcode (Results 1 – 22 of 22) sorted by relevance

/external/syslinux/com32/lua/src/
Dlcode.c361 SETARG_C(getcode(fs, e), nresults+1); in luaK_setreturns()
364 SETARG_B(getcode(fs, e), nresults+1); in luaK_setreturns()
365 SETARG_A(getcode(fs, e), fs->freereg); in luaK_setreturns()
374 e->u.info = GETARG_A(getcode(fs, e)); in luaK_setoneret()
377 SETARG_B(getcode(fs, e), 2); in luaK_setoneret()
441 Instruction *pc = &getcode(fs, e); in discharge2reg()
608 Instruction ie = getcode(fs, e); in jumponcond()
832 if (e2->k == VRELOCABLE && GET_OPCODE(getcode(fs, e2)) == OP_CONCAT) { in luaK_posfix()
833 lua_assert(e1->u.info == GETARG_B(getcode(fs, e2))-1); in luaK_posfix()
835 SETARG_B(getcode(fs, e2), e1->u.info); in luaK_posfix()
Dlcode.h39 #define getcode(fs,e) ((fs)->f->code[(e)->u.info]) macro
Dlparser.c1491 SETARG_C(getcode(fs, &v.v), 1); /* call statement uses no results */ in exprstat()
1508 SET_OPCODE(getcode(fs,&e), OP_TAILCALL); in retstat()
1509 lua_assert(GETARG_A(getcode(fs,&e)) == fs->nactvar); in retstat()
/external/skia/third_party/lua/src/
Dlcode.c361 SETARG_C(getcode(fs, e), nresults+1); in luaK_setreturns()
364 SETARG_B(getcode(fs, e), nresults+1); in luaK_setreturns()
365 SETARG_A(getcode(fs, e), fs->freereg); in luaK_setreturns()
374 e->u.info = GETARG_A(getcode(fs, e)); in luaK_setoneret()
377 SETARG_B(getcode(fs, e), 2); in luaK_setoneret()
441 Instruction *pc = &getcode(fs, e); in discharge2reg()
608 Instruction ie = getcode(fs, e); in jumponcond()
832 if (e2->k == VRELOCABLE && GET_OPCODE(getcode(fs, e2)) == OP_CONCAT) { in luaK_posfix()
833 lua_assert(e1->u.info == GETARG_B(getcode(fs, e2))-1); in luaK_posfix()
835 SETARG_B(getcode(fs, e2), e1->u.info); in luaK_posfix()
Dlcode.h39 #define getcode(fs,e) ((fs)->f->code[(e)->u.info]) macro
Dlparser.c1491 SETARG_C(getcode(fs, &v.v), 1); /* call statement uses no results */ in exprstat()
1508 SET_OPCODE(getcode(fs,&e), OP_TAILCALL); in retstat()
1509 lua_assert(GETARG_A(getcode(fs,&e)) == fs->nactvar); in retstat()
/external/python/cpython2/Include/
Ducnhash.h26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code); member
/external/autotest/site_utils/rpm_control_system/
Ddli_urllib.py20 if web_file.getcode() != 200:
/external/autotest/client/cros/enterprise/
Denterprise_fake_dmserver.py64 if urllib2.urlopen('%stest/ping' % self.server_url).getcode() == 200:
/external/python/cpython2/Lib/distutils/tests/
Dtest_upload.py54 def getcode(self): member in FakeOpen
/external/python/cpython2/Lib/test/
Dtest_urllib.py134 self.assertEqual(self.returned_obj.getcode(), None)
245 self.assertEqual(fp.getcode(), 200)
344 self.assertEqual(fp.getcode(), 200)
362 self.assertEqual(fp.getcode(), 200)
Dtest_urllibnet.py117 code = open_url.getcode()
/external/python/cpython2/Lib/distutils/command/
Dupload.py176 status = result.getcode()
/external/python/cpython2/Modules/
Dpyexpat.c262 getcode(enum HandlerTypes slot, char* func_name, int lineno) in getcode() function
441 temp = call_with_frame(getcode(CharacterData, "CharacterData", __LINE__), in call_character_handler()
566 rv = call_with_frame(getcode(StartElement, "StartElement", __LINE__), in my_StartElementHandler()
593 rv = call_with_frame(getcode(NAME,#NAME,__LINE__), \
750 rv = call_with_frame(getcode(ElementDecl, "ElementDecl", __LINE__), in my_ElementDeclHandler()
/external/autotest/server/
Dlab_status_unittest.py102 def getcode(self): member in _FakeURLResponse
Dsite_utils.py270 if response.getcode() == 200:
/external/python/cpython2/Doc/library/
Durllib.rst48 :meth:`close`, :meth:`info`, :meth:`getcode` and :meth:`geturl`. It also
54 Except for the :meth:`info`, :meth:`getcode` and :meth:`geturl` methods,
80 The :meth:`getcode` method returns the HTTP status code that was sent with the
141 Added :meth:`getcode` to returned object and support for the
Durllib2.rst69 * :meth:`getcode` --- return the HTTP status code of the response.
/external/toolchain-utils/cros_utils/
Dbuildbot_json.py978 if channel.getcode() >= 400:
980 raise urllib2.HTTPError(url, channel.getcode(), '%s:\n%s' % (url, data),
/external/python/cpython2/Lib/
Durllib.py1026 def getcode(self): member in addinfourl
/external/python/cpython2/Objects/
Dunicodeobject.c2963 ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), &chr)) in PyUnicode_DecodeUnicodeEscape()
/external/python/cpython2/Misc/
DNEWS10987 - Issue #1178141: add a getcode() method to the addinfourls that