/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_pyclbr.py | 29 def assertListEq(self, l1, l2, ignore): argument 31 missing = (set(l1) ^ set(l2)) - set(ignore) 33 print >>sys.stderr, "l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore) 36 def assertHasattr(self, obj, attr, ignore): argument 38 if attr in ignore: return 44 def assertHaskey(self, obj, key, ignore): argument 46 if key in ignore: return 51 def assertEqualsOrIgnored(self, a, b, ignore): argument 53 if a not in ignore and b not in ignore: 56 def checkModule(self, moduleName, module=None, ignore=()): argument [all …]
|
D | cmath_testcases.txt | 32 -- ignore-real-sign : indicates that the sign of the real part of 37 -- ignore-imag-sign : indicates that the sign of the imaginary part 208 acos1018 acos inf nan -> nan inf ignore-imag-sign 209 acos1019 acos -inf nan -> nan inf ignore-imag-sign 534 asin1014 asin -inf nan -> nan inf ignore-imag-sign 543 asin1023 asin inf nan -> nan inf ignore-imag-sign 706 asinh1014 asinh nan inf -> inf nan ignore-real-sign 715 asinh1023 asinh nan -inf -> inf nan ignore-real-sign 863 atan1012 atan -inf nan -> -1.5707963267948966 0.0 ignore-imag-sign 874 atan1023 atan inf nan -> 1.5707963267948966 0.0 ignore-imag-sign [all …]
|
D | test_weakref.py | 409 wr = weakref.ref(c, lambda ignore: gc.collect()) 417 wr = weakref.ref(c1.i, lambda ignore: gc.collect()) 439 def acallback(self, ignore): argument 491 def acallback(self, ignore): argument 511 def cb(self, ignore): argument 536 def cb(self, ignore): argument 570 def acallback(self, ignore): argument 579 def C_went_away(ignore): argument 604 def safe_callback(ignore): argument 608 def cb(self, ignore): argument
|
D | test_opcodes.py | 30 def __init__(self, ignore): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | xxci.py | 46 ignore = [] variable 49 ignore[:] = badnames 51 ignore.append(p + '*') 53 ignore.append('*' + p) 58 ignore[:] = ignore + f.read().split() 61 for p in ignore:
|
D | objgraph.py | 31 ignore = 'Nntrgdsbavuc' variable 82 elif not type in ignore:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | filecmp.py | 110 def __init__(self, a, b, ignore=None, hide=None): # Initialize argument 117 if ignore is None: 118 self.ignore = ['RCS', 'CVS', 'tags'] # Names ignored in comparison 120 self.ignore = ignore 124 self.hide+self.ignore) 126 self.hide+self.ignore) 184 self.subdirs[x] = dircmp(a_x, b_x, self.ignore, self.hide)
|
D | bdb.py | 469 self.ignore = 0 510 if self.ignore: 511 print >>out, '\tignore next %d hits' % (self.ignore) 568 if b.ignore > 0: 569 b.ignore = b.ignore -1 583 if b.ignore > 0: 584 b.ignore = b.ignore -1
|
D | shutil.py | 142 def copytree(src, dst, symlinks=False, ignore=None): argument 169 if ignore is not None: 170 ignored_names = ignore(src, names) 186 copytree(srcname, dstname, symlinks, ignore)
|
D | pdb.doc | 109 ignore bpnumber count 110 Sets the ignore count for the given breakpoint number. If 111 count is omitted, the ignore count is set to 0. A breakpoint 112 becomes active when the ignore count is zero. When non-zero,
|
/device/linaro/bootloader/edk2/EdkShellPkg/ |
D | ShellR33.patch | 1 diff --ignore-file-name-case -Naur ShellR33/attrib/attrib.c GccShellR33/attrib/attrib.c 22 diff --ignore-file-name-case -Naur ShellR33/attrib/attrib.h GccShellR33/attrib/attrib.h 32 diff --ignore-file-name-case -Naur ShellR33/attrib/attrib.inf GccShellR33/attrib/attrib.inf 72 diff --ignore-file-name-case -Naur ShellR33/cls/cls.c GccShellR33/cls/cls.c 84 diff --ignore-file-name-case -Naur ShellR33/cls/cls.inf GccShellR33/cls/cls.inf 124 diff --ignore-file-name-case -Naur ShellR33/comp/comp.h GccShellR33/comp/comp.h 134 diff --ignore-file-name-case -Naur ShellR33/comp/comp.inf GccShellR33/comp/comp.inf 171 diff --ignore-file-name-case -Naur ShellR33/cp/cp.c GccShellR33/cp/cp.c 201 diff --ignore-file-name-case -Naur ShellR33/cp/cp.h GccShellR33/cp/cp.h 211 diff --ignore-file-name-case -Naur ShellR33/cp/cp.inf GccShellR33/cp/cp.inf [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
D | FSProxy.py | 51 ignore = [] 56 ignore.append(line) 58 return ignore 101 dir, ignore = self._dirstack[-1] 104 self._ignore = ignore
|
/device/linaro/bootloader/edk2/StdLib/LibC/Time/ |
D | gettimeofday.c | 58 gettimeofday (struct timeval *tp, void *ignore) in gettimeofday() argument
|
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/ |
D | PchXhci.asl | 244 … // bit[71:70]=b'00 Vertical Position ignore bit[73:72]=b'00 Horizontal Position ignore 285 … // bit[71:70]=b'00 Vertical Position ignore bit[73:72]=b'00 Horizontal Position ignore 328 … // bit[71:70]=b'00 Vertical Position ignore bit[73:72]=b'00 Horizontal Position ignore 369 … // bit[71:70]=b'00 Vertical Position ignore bit[73:72]=b'00 Horizontal Position ignore
|
/device/google/dragon/sepolicy/ |
D | init.te | 6 # userspace cannot create files in sys. ignore denial
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | shutil.py | 145 def copytree(src, dst, symlinks=False, ignore=None): argument 172 if ignore is not None: 173 ignored_names = ignore(src, names) 189 copytree(srcname, dstname, symlinks, ignore)
|
/device/google/marlin/sepolicy/ |
D | hal_camera.te | 36 # ignore spurious denial
|
D | hal_gnss_default.te | 24 # but it is safe to ignore.
|
/device/google/wahoo/sepolicy/vendor/ |
D | hal_camera.te | 40 # ignore spurious denial
|
D | hal_gnss_qti.te | 40 # but it is safe to ignore.
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | time.h | 193 int gettimeofday (struct timeval *tp, void *ignore);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | mactoolboxglue.c | 145 char *ignore; in PyMac_GetFullPathname() local 146 PyArg_ParseTuple(args, "is", &err, &ignore); in PyMac_GetFullPathname()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | dumpnode.c | 216 if (j->ignore) fprintf(stderr, " ignore/plus-block-bypass"); 392 if (j->p2 != NULL && !j->ignore) {
|
D | syn.h | 329 char ignore; /* used by FIRST computation to ignore variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | Setup.sample | 20 #everything you can, but you can ignore ones you don't have
|