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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/cython/src/Cython/Plex/
Timing.py 13 elif hasattr(os, 'times'):
  /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'):
benchmark.py 45 if hasattr(cls, 'tag'):
47 if hasattr(cls, 'page_set'):
55 if hasattr(cls, 'AddTestCommandLineArgs'):
82 if hasattr(self, '_disabled_strings'):
84 if hasattr(self, '_enabled_strings'):
171 if not hasattr(cls, 'test'):
183 if not hasattr(cls, 'page_set'):
  /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'):
  /external/chromium_org/build/android/pylib/utils/
parallelizer.py 197 assert(not hasattr(self._objs, '_assertNoShadow'))
198 assert(not hasattr(self._objs, 'pGet'))
200 assert(not any(hasattr(o, '_assertNoShadow') for o in self._objs))
201 assert(not any(hasattr(o, 'pGet') for o in self._objs))
  /external/chromium_org/third_party/cython/src/Cython/Tempita/
compat3.py 41 if hasattr(v, attr):
  /external/chromium_org/tools/telemetry/telemetry/util/
global_hooks.py 27 if not hasattr(signal, 'SIGUSR1'):
  /external/clang/bindings/python/tests/cindex/
test_token_kind.py 28 ok_(hasattr(TokenKind, 'LITERAL'))
  /external/fonttools/Lib/fontTools/
inspect.py 44 if hasattr(value, '__dict__'):
47 if hasattr(value, 'items'):
96 if hasattr(value, 'offsets'):
118 if hasattr(self, '_children'):
120 if hasattr(self, '_items'):
125 if hasattr(self, '_children'):
136 if not hasattr(self, '_children'):
158 if hasattr(self,'_value_str'):
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_F_F_.py 24 if hasattr(self.cff[self.cff.fontNames[0]], "ROS"):
45 if not hasattr(self, "cff"):
otBase.py 112 if not hasattr(self, "table"):
244 if hasattr(item, "getData") or hasattr(item, "getCountData"):
261 if hasattr(item, "getData"):
279 if hasattr(table, "getDataLength"):
288 if hasattr(self, "sortCoverageLast") and item.name == "Coverage":
330 if hasattr(self, "Extension"):
336 if hasattr(item, "getCountData"):
338 elif hasattr(item, "getData"):
369 if hasattr(self, "Extension")
    [all...]
_g_l_y_f.py 62 if not hasattr(self, "glyphOrder"):
117 if not hasattr(self, "glyphs"):
119 if not hasattr(self, "glyphOrder"):
223 if not hasattr(self, "data"):
238 if hasattr(self, "data"):
262 if hasattr(self, "program"):
303 if not hasattr(self, "coordinates"):
315 if not hasattr(self, "components"):
468 haveInstructions = hasattr(self, "program")
612 if hasattr(self, "data")
    [all...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialposix.py 241 TIOCMGET = hasattr(TERMIOS, 'TIOCMGET') and TERMIOS.TIOCMGET or 0x5415
242 TIOCMBIS = hasattr(TERMIOS, 'TIOCMBIS') and TERMIOS.TIOCMBIS or 0x5416
243 TIOCMBIC = hasattr(TERMIOS, 'TIOCMBIC') and TERMIOS.TIOCMBIC or 0x5417
244 TIOCMSET = hasattr(TERMIOS, 'TIOCMSET') and TERMIOS.TIOCMSET or 0x5418
246 #TIOCM_LE = hasattr(TERMIOS, 'TIOCM_LE') and TERMIOS.TIOCM_LE or 0x001
247 TIOCM_DTR = hasattr(TERMIOS, 'TIOCM_DTR') and TERMIOS.TIOCM_DTR or 0x002
248 TIOCM_RTS = hasattr(TERMIOS, 'TIOCM_RTS') and TERMIOS.TIOCM_RTS or 0x004
249 #TIOCM_ST = hasattr(TERMIOS, 'TIOCM_ST') and TERMIOS.TIOCM_ST or 0x008
250 #TIOCM_SR = hasattr(TERMIOS, 'TIOCM_SR') and TERMIOS.TIOCM_SR or 0x010
252 TIOCM_CTS = hasattr(TERMIOS, 'TIOCM_CTS') and TERMIOS.TIOCM_CTS or 0x02
    [all...]
  /external/chromium_org/mojo/python/tests/
bindings_serialization_deserialization_unittest.py 34 if hasattr(x, '__len__'):
43 if (hasattr(x, '__metaclass__') and
49 if not hasattr(p1, '__call__') and not _TestEquality(p1, p2):
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_file.py 73 return (not hasattr(arg, "strip")
74 and hasattr(arg, "__getitem__")
75 or hasattr(arg, "__iter__"))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
codeunit.py 50 if hasattr(morf, '__file__'):
59 if hasattr(morf, '__name__'):
  /external/llvm/bindings/python/llvm/
common.py 65 if not hasattr(self, '_self_owned') or not hasattr(self, '_disposer'):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_mock_unittest.py 49 if hasattr(test, '__iter__'):
outputcapture.py 52 if hasattr(self, '_logs_handler'):
98 if hasattr(testcase, 'assertMultiLineEqual'):
  /external/chromium_org/third_party/pexpect/
fdpexpect.py 43 if type(fd) != type(0) and hasattr(fd, 'fileno'):
  /external/lldb/test/pexpect-2.4/
fdpexpect.py 27 if type(fd) != type(0) and hasattr(fd, 'fileno'):
  /external/chromium_org/tools/cr/cr/targets/
target.py 50 if hasattr(self, 'CONFIG'):
127 elif hasattr(target_names, 'swapcase'):
  /external/chromium_org/tools/perf/benchmarks/
dromaeo.py 103 if not hasattr(self, 'query_param') or not hasattr(self, 'tag'):
  /external/chromium_org/tools/telemetry/telemetry/unittest/
progress_reporter.py 49 if hasattr(result, 'startTestSuite'):
52 if hasattr(result, 'stopTestSuite'):

Completed in 2070 milliseconds

1 2 3 4 5 6 7 8 910