Home
last modified time | relevance | path

Searched refs:thing (Results 1 – 25 of 30) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcontextlib.py149 def __init__(self, thing): argument
150 self.thing = thing
152 return self.thing
154 self.thing.close()
Dpydoc.py1418 def describe(thing): argument
1420 if inspect.ismodule(thing):
1421 if thing.__name__ in sys.builtin_module_names:
1422 return 'built-in module ' + thing.__name__
1423 if hasattr(thing, '__path__'):
1424 return 'package ' + thing.__name__
1426 return 'module ' + thing.__name__
1427 if inspect.isbuiltin(thing):
1428 return 'built-in function ' + thing.__name__
1429 if inspect.isgetsetdescriptor(thing):
[all …]
Ddoctest.py1438 for thing in notests:
1439 print " ", thing
1443 for thing, count in passed:
1444 print " %3d tests in %s" % (count, thing)
1449 for thing, (f, t) in failed:
1450 print " %3d of %3d in %s" % (f, t, thing)
/device/google/contexthub/firmware/os/core/
DosApi.c280 union OsApiSlabItem *thing = slabAllocatorAlloc(mSlabAllocator); in osExpApiI2cCbkInfoAlloc() local
282 if (thing) { in osExpApiI2cCbkInfoAlloc()
283 thing->i2cAppCbkInfo.toTid = osGetCurrentTid(); in osExpApiI2cCbkInfoAlloc()
284 thing->i2cAppCbkInfo.cookie = cookie; in osExpApiI2cCbkInfoAlloc()
287 return thing; in osExpApiI2cCbkInfoAlloc()
297 union OsApiSlabItem *thing = (union OsApiSlabItem*)cookie; in osExpApiI2cInternalCbk() local
300 tid = thing->i2cAppCbkInfo.toTid; in osExpApiI2cInternalCbk()
301 cookie = thing->i2cAppCbkInfo.cookie; in osExpApiI2cInternalCbk()
304 thing->i2cAppCbkEvt.cookie = cookie; in osExpApiI2cInternalCbk()
305 thing->i2cAppCbkEvt.tx = tx; in osExpApiI2cInternalCbk()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
Dpydoc.py1422 def describe(thing): argument
1424 if inspect.ismodule(thing):
1425 if thing.__name__ in sys.builtin_module_names:
1426 return 'built-in module ' + thing.__name__
1427 if hasattr(thing, '__path__'):
1428 return 'package ' + thing.__name__
1430 return 'module ' + thing.__name__
1431 if inspect.isbuiltin(thing):
1432 return 'built-in function ' + thing.__name__
1433 if inspect.isgetsetdescriptor(thing):
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
Dpydoc.py1500 def describe(thing): argument
1502 if inspect.ismodule(thing):
1503 if thing.__name__ in sys.builtin_module_names:
1504 return 'built-in module ' + thing.__name__
1505 if hasattr(thing, '__path__'):
1506 return 'package ' + thing.__name__
1508 return 'module ' + thing.__name__
1509 if inspect.isbuiltin(thing):
1510 return 'built-in function ' + thing.__name__
1511 if inspect.isgetsetdescriptor(thing):
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_case.py434 thing = object()
435 self.assertIs(thing, thing)
436 self.assertRaises(self.failureException, self.assertIs, thing, object())
439 thing = object()
440 self.assertIsNot(thing, object())
441 self.assertRaises(self.failureException, self.assertIsNot, thing, thing)
444 thing = []
445 self.assertIsInstance(thing, list)
447 thing, dict)
450 thing = []
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
DEnquire.c2144 #undef thing
2200 #define thing "float"
2288 #define thing "double"
2378 #define thing "long double"
2829 co, thing, "arithmetic has a different radix",
2841 if (F) i_define(D_MANT_DIG, thing, Fname, "_MANT_DIG",
2843 if (F) i_define(D_DIG, thing, Fname, "_DIG",
2911 co, thing, "arithmetic rounds differently",
2992 if (F) f_define(D_EPSILON, thing,
3058 i_define(D_MIN_EXP, thing, Fname, "_MIN_EXP",
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DKNOWN_PROBLEMS.txt171 This may not be the right thing to do for C++ objects that
DCHANGES_FROM_133_before_mr13.txt709 member function which does not modify its own object - the thing
2483 Note: This may not be the right thing to do for C++ objects that
2855 If a switch requiring arguments is the last thing on the
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c923 stmt_ty thing = NULL; in ast_for_decorated() local
936 thing = ast_for_funcdef(c, CHILD(n, 1), decorator_seq); in ast_for_decorated()
938 thing = ast_for_classdef(c, CHILD(n, 1), decorator_seq); in ast_for_decorated()
942 if (thing) { in ast_for_decorated()
943 thing->lineno = LINENO(n); in ast_for_decorated()
944 thing->col_offset = n->n_col_offset; in ast_for_decorated()
946 return thing; in ast_for_decorated()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c923 stmt_ty thing = NULL; in ast_for_decorated() local
936 thing = ast_for_funcdef(c, CHILD(n, 1), decorator_seq); in ast_for_decorated()
938 thing = ast_for_classdef(c, CHILD(n, 1), decorator_seq); in ast_for_decorated()
942 if (thing) { in ast_for_decorated()
943 thing->lineno = LINENO(n); in ast_for_decorated()
944 thing->col_offset = n->n_col_offset; in ast_for_decorated()
946 return thing; in ast_for_decorated()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
DREADME99 different customization file per FAQ. The easiest thing to do would
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dgc_weakref.txt40 The primary thing it missed is that when a weakref to a piece of cyclic
212 It's possible to do such a thing, so gc has to be robust against it, but
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DNOTES.msvc184 There is one other thing I might suggest to help you avoid a run-time
DKNOWN_PROBLEMS.txt228 This may not be the right thing to do for C++ objects that
DCHANGES_FROM_131.txt40 The exception handling thing was a bit wacko:
DCHANGES_FROM_133_BEFORE_MR13.txt709 member function which does not modify its own object - the thing
2483 Note: This may not be the right thing to do for C++ objects that
2855 If a switch requiring arguments is the last thing on the
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dmake_vms.com63 $! Build the thing plain or with mms
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlistsort.txt172 and we don't have an explanation for it. The only thing I can think of
394 that's exactly the same thing we need to do if we reach the end of B first,
422 whether the data is clustered or uniform, but a lovely thing about merging
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Dmeta-vladimir.txt15 Here's another try, expressing the same thing, but using the Python
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlistsort.txt175 and we don't have an explanation for it. The only thing I can think of
397 that's exactly the same thing we need to do if we reach the end of B first,
425 whether the data is clustered or uniform, but a lovely thing about merging
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dantlr1.txt92 bunch of #ifdef's to do the right thing depending on
/device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/
DEDKII_openssl-1.0.2e.patch694 * all the others that try to do the same thing Microsoft does...
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
DREADME177 When this occurs, the best thing to do is usually to rebuild Python

12