HomeSort by relevance Sort by last modified time
    Searched refs:hasattr (Results 1 - 25 of 841) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/cython/src/Cython/Plex/
Timing.py 13 elif hasattr(os, 'times'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
xmltests.py 12 if hasattr(module, "test_main"):
test_errno.py 17 self.assertTrue(hasattr(errno, error_code),
23 self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value)
test_posix.py 56 if hasattr(posix, 'getresuid'):
63 if hasattr(posix, 'getresgid'):
70 if hasattr(posix, 'setresuid'):
84 if hasattr(posix, 'setresgid'):
98 @unittest.skipUnless(hasattr(posix, 'initgroups'),
124 if hasattr(posix, 'statvfs'):
128 if hasattr(posix, 'fstatvfs'):
136 if hasattr(posix, 'ftruncate'):
147 if hasattr(posix, 'dup'):
157 if hasattr(posix, 'confstr')
    [all...]
test_openpty.py 6 if not hasattr(os, "openpty"):
test_setcomps.py 141 if verbose and hasattr(sys, "gettotalrefcount"):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
xmltests.py 12 if hasattr(module, "test_main"):
test_errno.py 17 self.assertTrue(hasattr(errno, error_code),
23 self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value)
test_posix.py 56 if hasattr(posix, 'getresuid'):
63 if hasattr(posix, 'getresgid'):
70 if hasattr(posix, 'setresuid'):
84 if hasattr(posix, 'setresgid'):
98 @unittest.skipUnless(hasattr(posix, 'initgroups'),
124 if hasattr(posix, 'statvfs'):
128 if hasattr(posix, 'fstatvfs'):
136 if hasattr(posix, 'ftruncate'):
147 if hasattr(posix, 'dup'):
157 if hasattr(posix, 'confstr')
    [all...]
test_openpty.py 6 if not hasattr(os, "openpty"):
test_setcomps.py 141 if verbose and hasattr(sys, "gettotalrefcount"):
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/
printing.py 105 if not hasattr(printer, "__name__") and not hasattr(printer, "name"):
107 if hasattr(printer, "name") and not hasattr(printer, "enabled"):
109 if not hasattr(printer, "__call__"):
121 if hasattr(printer, "name"):
135 if hasattr(p, "name") and p.name == printer.name:
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/
printing.py 105 if not hasattr(printer, "__name__") and not hasattr(printer, "name"):
107 if hasattr(printer, "name") and not hasattr(printer, "enabled"):
109 if not hasattr(printer, "__call__"):
121 if hasattr(printer, "name"):
135 if hasattr(p, "name") and p.name == printer.name:
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/
printing.py 105 if not hasattr(printer, "__name__") and not hasattr(printer, "name"):
107 if hasattr(printer, "name") and not hasattr(printer, "enabled"):
109 if not hasattr(printer, "__call__"):
121 if hasattr(printer, "name"):
135 if hasattr(p, "name") and p.name == printer.name:
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/
printing.py 105 if not hasattr(printer, "__name__") and not hasattr(printer, "name"):
107 if hasattr(printer, "name") and not hasattr(printer, "enabled"):
109 if not hasattr(printer, "__call__"):
121 if hasattr(printer, "name"):
135 if hasattr(p, "name") and p.name == printer.name:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 64 if hasattr(__builtin__, "unicode") and isinstance(encoding, unicode):
126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 64 if hasattr(__builtin__, "unicode") and isinstance(encoding, unicode):
126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
__init__.py 48 if hasattr(_curses, 'COLORS'):
50 if hasattr(_curses, 'COLOR_PAIRS'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
__init__.py 48 if hasattr(_curses, 'COLORS'):
50 if hasattr(_curses, 'COLOR_PAIRS'):
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-symlink.py 18 if not hasattr(os, 'symlink'):
  /external/chromium_org/tools/telemetry/telemetry/
decorators.py 28 cacher.__cache = cacher.__cache if hasattr(cacher, '__cache') else {}
113 if hasattr(test, '__name__'):
115 elif hasattr(test, '__class__'):
120 if hasattr(test, '_disabled_strings'):
133 if hasattr(test, '_enabled_strings'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 92 if hasattr(val, '__call__'):
142 if hasattr(thisobject, '__class__'):
148 if word[:n] == attr and hasattr(thisobject, word):
156 if hasattr(klass,'__bases__'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 92 if hasattr(val, '__call__'):
142 if hasattr(thisobject, '__class__'):
148 if word[:n] == attr and hasattr(thisobject, word):
156 if hasattr(klass,'__bases__'):
  /external/chromium_org/content/test/gpu/gpu_tests/
gpu_rasterization.py 41 if not hasattr(page, 'expectations') or not page.expectations:
52 if hasattr(page, 'test_rect'):
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
FrameDecorator.py 80 if hasattr(self._base, "elided"):
98 if hasattr(self._base, "function"):
125 if hasattr(self._base, "address"):
136 if hasattr(self._base, "filename"):
153 if hasattr(self._base, "frame_args"):
169 if hasattr(self._base, "frame_locals"):
184 if hasattr(self._base, "line"):
202 if hasattr(self._base, "inferior_frame"):

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>