/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pipes.py | 110 def append(self, cmd, kind): argument 115 if kind not in stepkinds: 117 'Template.append: bad kind %r' % (kind,) 118 if kind == SOURCE: 124 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 127 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 130 self.steps.append((cmd, kind)) 132 def prepend(self, cmd, kind): argument 137 if kind not in stepkinds: 139 'Template.prepend: bad kind %r' % (kind,) [all …]
|
D | symtable.py | 49 kind = "" 51 kind = "%s " % self.__class__.__name__ 54 return "<{0}SymbolTable for module {1}>".format(kind, self._filename) 56 return "<{0}SymbolTable for {1} in {2}>".format(kind,
|
D | inspect.py | 318 kind = "static method" 320 kind = "class method" 322 kind = "property" 325 kind = "method" 327 kind = "data" 329 result.append(Attribute(name, kind, homecls, obj)) 449 for suffix, mode, kind in imp.get_suffixes():
|
D | urllib2.py | 330 kind = meth[j+1:] 332 kind = int(kind) 338 kind = protocol 341 kind = protocol 344 kind = protocol 349 handlers = lookup.setdefault(kind, []) 364 def _call_chain(self, chain, kind, meth_name, *args): argument 368 handlers = chain.get(kind, ())
|
D | pydoc.py | 179 name, kind, cls, value = data 181 kind = 'data descriptor' 182 return name, kind, cls, value 254 kind = imp.PY_COMPILED 256 kind = imp.PY_SOURCE 262 module = imp.load_module(name, file, path, (ext, 'r', kind)) 742 for name, kind, homecls, value in ok: 753 for name, kind, homecls, value in ok: 762 for name, kind, homecls, value in ok: 782 for key, kind, homecls, value in attrs: [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
D | ldtoa.c | 70 int be, kind; in ldtoa() local 82 kind = STRTOG_Normal; in ldtoa() 88 kind = STRTOG_Zero; in ldtoa() 91 kind = STRTOG_Denormal; in ldtoa() 97 kind = STRTOG_Infinite; in ldtoa() 100 kind = STRTOG_NaN; in ldtoa() 106 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve); in ldtoa()
|
D | gdtoa.c | 168 int j, jj1, k, k0, k_check, kind, leftright, m2, m5, nbits; in gdtoa() local 186 kind = *kindp &= ~STRTOG_Inexact; in gdtoa() 187 switch(kind & STRTOG_Retmask) { in gdtoa() 336 if (kind & STRTOG_Neg) in gdtoa()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | future.c | 20 assert(s->kind == ImportFrom_kind); in future_check_features() 62 if (!(mod->kind == Module_kind || mod->kind == Interactive_kind)) in future_parse() 87 if (s->kind == ImportFrom_kind) { in future_parse() 105 else if (s->kind == Expr_kind && !found_docstring) { in future_parse() 107 if (e->kind != Str_kind) in future_parse()
|
D | Python-ast.c | 994 p->kind = Module_kind; in Module() 1006 p->kind = Interactive_kind; in Interactive() 1023 p->kind = Expression_kind; in Expression() 1035 p->kind = Suite_kind; in Suite() 1058 p->kind = FunctionDef_kind; in FunctionDef() 1081 p->kind = ClassDef_kind; in ClassDef() 1098 p->kind = Return_kind; in Return() 1112 p->kind = Delete_kind; in Delete() 1132 p->kind = Assign_kind; in Assign() 1163 p->kind = AugAssign_kind; in AugAssign() [all …]
|
D | compile.c | 1185 if (s->kind != Expr_kind) in compiler_isdocstring() 1187 return s->v.Expr.value->kind == Str_kind; in compiler_isdocstring() 1227 switch (mod->kind) { in compiler_mod() 1250 mod->kind); in compiler_mod() 1367 if (arg->kind == Tuple_kind) { in compiler_arguments() 1393 assert(s->kind == FunctionDef_kind); in compiler_function() 1508 assert(e->kind == IfExp_kind); in compiler_ifexp() 1531 assert(e->kind == Lambda_kind); in compiler_lambda() 1577 assert(s->kind == Print_kind); in compiler_print() 1613 assert(s->kind == If_kind); in compiler_if() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | future.c | 20 assert(s->kind == ImportFrom_kind); in future_check_features() 69 if (!(mod->kind == Module_kind || mod->kind == Interactive_kind)) in future_parse() 94 if (s->kind == ImportFrom_kind) { in future_parse() 110 else if (s->kind == Expr_kind && !found_docstring) { in future_parse() 112 if (e->kind != Str_kind) in future_parse()
|
D | Python-ast.c | 977 p->kind = Module_kind; in Module() 989 p->kind = Interactive_kind; in Interactive() 1006 p->kind = Expression_kind; in Expression() 1018 p->kind = Suite_kind; in Suite() 1041 p->kind = FunctionDef_kind; in FunctionDef() 1064 p->kind = ClassDef_kind; in ClassDef() 1081 p->kind = Return_kind; in Return() 1095 p->kind = Delete_kind; in Delete() 1115 p->kind = Assign_kind; in Assign() 1146 p->kind = AugAssign_kind; in AugAssign() [all …]
|
D | compile.c | 1162 if (s->kind != Expr_kind) in compiler_isdocstring() 1164 return s->v.Expr.value->kind == Str_kind; in compiler_isdocstring() 1204 switch (mod->kind) { in compiler_mod() 1227 mod->kind); in compiler_mod() 1344 if (arg->kind == Tuple_kind) { in compiler_arguments() 1370 assert(s->kind == FunctionDef_kind); in compiler_function() 1485 assert(e->kind == IfExp_kind); in compiler_ifexp() 1508 assert(e->kind == Lambda_kind); in compiler_lambda() 1554 assert(s->kind == Print_kind); in compiler_print() 1590 assert(s->kind == If_kind); in compiler_if() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/ArithChk/ |
D | arithchk.c | 48 int kind; member 180 a->name, a->kind); in main() 191 if (a->kind <= 2 && fzcheck()) in main()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/ |
D | msg_44.txt | 22 a simple kind of mirror 29 a simple kind of mirror
|
D | msg_04.txt | 24 a simple kind of mirror 33 a simple kind of mirror
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ast.py | 145 for input, output, kind in ((exec_tests, exec_results, "exec"), 149 ast_tree = compile(i, "?", kind, ast.PyCF_ONLY_AST) 321 for statements, kind in ((exec_tests, "exec"), (single_tests, "single"), 323 print kind+"_results = [" 325 print repr(to_tuple(compile(s, "?", kind, 0x400)))+","
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | inspect.py | 309 kind = "static method" 311 kind = "class method" 313 kind = "property" 315 kind = "method" 317 kind = "data" 322 kind = "method" 324 kind = "data" 327 result.append(Attribute(name, kind, homecls, obj)) 447 for suffix, mode, kind in imp.get_suffixes():
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | ldebug.c | 517 const char *kind = NULL; in luaG_typeerror() local 519 kind = getupvalname(ci, o, &name); /* check whether 'o' is an upvalue */ in luaG_typeerror() 520 if (!kind && isinstack(ci, o)) /* no? try a register */ in luaG_typeerror() 521 kind = getobjname(ci_func(ci)->p, currentpc(ci), in luaG_typeerror() 524 if (kind) in luaG_typeerror() 526 op, kind, name, t); in luaG_typeerror()
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | sysctl.h | 162 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) \ argument 164 nbr, kind, a1, a2, #name, handler, fmt }; \ 174 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) argument
|
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | README.md | 76 kind of context is for `gralloc`, and there is one of these contexts per guest 77 process. The second kind of context is per-thread, used by the EGL/GLES 78 implementation. This second kind of context can receive 3D commands, which are
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 41 enum _mod_kind kind; member 70 enum _stmt_kind kind; member 194 enum _expr_kind kind; member 317 enum _slice_kind kind; member 344 enum _excepthandler_kind kind; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 41 enum _mod_kind kind; member 70 enum _stmt_kind kind; member 194 enum _expr_kind kind; member 317 enum _slice_kind kind; member 344 enum _excepthandler_kind kind; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | pydoc.py | 194 name, kind, cls, value = data 196 kind = 'data descriptor' 197 return name, kind, cls, value 299 kind = imp.PY_COMPILED 301 kind = imp.PY_SOURCE 307 module = imp.load_module(name, file, path, (ext, 'r', kind)) 793 for name, kind, homecls, value in ok: 811 for name, kind, homecls, value in ok: 820 for name, kind, homecls, value in ok: 840 for key, kind, homecls, value in attrs: [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | pydoc.py | 179 name, kind, cls, value = data 181 kind = 'data descriptor' 182 return name, kind, cls, value 254 kind = imp.PY_COMPILED 256 kind = imp.PY_SOURCE 262 module = imp.load_module(name, file, path, (ext, 'r', kind)) 742 for name, kind, homecls, value in ok: 753 for name, kind, homecls, value in ok: 762 for name, kind, homecls, value in ok: 782 for key, kind, homecls, value in attrs: [all …]
|