Home
last modified time | relevance | path

Searched refs:cons (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dasdl_c.py176 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 …]
Dasdl.py333 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/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_hashlib.py101 for cons in itertools.chain.from_iterable(constructors):
102 c = cons(a)
Dtest_set.py1553 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/
Dregparse.h78 #define NCONS(node) (&((node)->u.cons))
264 ConsAltNode cons; member