Searched refs:cons (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | asdl_c.py | 176 def visitConstructor(self, cons, depth): argument 177 if cons.fields: 179 for f in cons.fields: 181 self.emit("} %s;" % cons.name, depth) 252 def visitConstructor(self, cons, type, attrs): argument 253 args = self.get_args(cons.fields) 256 self.emit_function(cons.name, ctype, args, attrs) 348 def visitConstructor(self, cons, name): argument 581 def visitConstructor(self, cons, name): argument 582 self.emit("static PyTypeObject *%s_type;" % cons.name, 0) [all …]
|
D | asdl.py | 333 self.cons = {} 348 def visitConstructor(self, cons, name): argument 349 key = str(cons.name) 350 conflict = self.cons.get(key) 352 self.cons[key] = name 357 for f in cons.fields:
|
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/MarvellYukonDxe/ |
D | if_msk.c | 1929 INTN cons; in msk_rxeof() local 1937 cons = sc_if->msk_cdata.msk_rx_cons; in msk_rxeof() 1947 msk_discard_rxbuf (sc_if, cons); in msk_rxeof() 1953 msk_discard_rxbuf (sc_if, cons); in msk_rxeof() 1958 rxd = &sc_if->msk_cdata.msk_rxdesc[(cons + 1) % MSK_RX_RING_CNT]; in msk_rxeof() 1960 rxd = &sc_if->msk_cdata.msk_rxdesc[cons]; in msk_rxeof() 1967 Status = msk_newbuf (sc_if, cons); in msk_rxeof() 1971 msk_discard_rxbuf (sc_if, cons); in msk_rxeof() 2015 INTN cons; in msk_txeof() local 2027 cons = sc_if->msk_cdata.msk_tx_cons; in msk_txeof() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_hashlib.py | 101 for cons in itertools.chain.from_iterable(constructors): 102 c = cons(a)
|
D | test_set.py | 1553 for cons in (set, frozenset): 1556 self.assertSetEqual(cons(g(s)), set(g(s))) 1557 self.assertRaises(TypeError, cons , X(s)) 1558 self.assertRaises(TypeError, cons , N(s)) 1559 self.assertRaises(ZeroDivisionError, cons , E(s))
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
D | regparse.h | 78 #define NCONS(node) (&((node)->u.cons)) 264 ConsAltNode cons; member
|