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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/util/
path_set_unittest.py 16 self.assertFalse(__file__ in ps)
20 ps = path_set.PathSet([__file__])
22 self.assertTrue(__file__ in ps)
23 self.assertEqual(ps.pop(), os.path.realpath(__file__))
27 ps.add(__file__)
29 self.assertTrue(__file__ in ps)
30 self.assertEqual(ps.pop(), os.path.realpath(__file__))
33 ps = path_set.PathSet([__file__])
34 ps.discard(__file__)
36 self.assertFalse(__file__ in ps
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
set_sys_path.py 42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
appletrawmain.py 41 __file__ = os.path.join(_dir, '__main__.py') variable
42 if os.path.exists(__file__):
46 sys.argv[0] = __file__
48 execfile(__file__)
50 __file__ = os.path.join(_dir, '__main__.pyc') variable
51 if os.path.exists(__file__):
55 sys.argv[0] = __file__
56 _fp = open(__file__, 'rb')
  /external/chromium_org/build/
gyp_chromium.py 17 path = os.path.abspath(os.path.split(__file__)[0])
  /external/chromium_org/third_party/libyuv/
gyp_libyuv.py 27 path = os.path.abspath(os.path.split(__file__)[0])
download_vs_toolchain.py 20 checkout_root = os.path.dirname(os.path.realpath(__file__))
  /external/chromium_org/third_party/skia/
gyp_skia.py 17 path = os.path.abspath(os.path.split(__file__)[0])
  /external/chromium_org/third_party/webrtc/build/
gyp_webrtc.py 23 path = os.path.abspath(os.path.split(__file__)[0])
  /external/chromium_org/tools/android/adb_profile_chrome/
__init__.py 6 sys.path.append(os.path.join(os.path.dirname(__file__),
  /external/chromium_org/tools/memory_inspector/memory_inspector/
constants.py 8 PROJECT_SRC = os.path.abspath(os.path.join(__file__, os.pardir, os.pardir))
  /external/chromium_org/v8/build/
gyp_v8.py 40 path = os.path.abspath(os.path.split(__file__)[0])
  /external/skia/
gyp_skia.py 17 path = os.path.abspath(os.path.split(__file__)[0])
  /external/chromium_org/content/test/gpu/
run_gpu_test.py 9 sys.path.append(os.path.join(os.path.dirname(__file__),
17 base_dir = os.path.dirname(os.path.realpath(__file__))
  /external/chromium_org/tools/perf/
run_benchmark 9 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'telemetry'))
16 base_dir = os.path.dirname(os.path.realpath(__file__))
  /external/chromium_org/chrome/test/telemetry/
telemetry_lib.py 9 path = os.path.join(os.path.dirname(__file__),
  /external/chromium_org/content/test/gpu/gpu_tests/
__init__.py 10 os.path.dirname(__file__),
  /external/chromium_org/content/test/gpu/page_sets/
page_set_unittest.py 13 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
  /external/chromium_org/mojo/spy/ui/
spy_project.py 13 spy_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
spy_shell_to_html 10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
tvcm_stub.py 8 _CHROME_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__),
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
collector.py 8 setupDir = os.path.abspath(os.path.dirname(__main__.__file__))
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
test_all.py 20 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
  /external/chromium_org/third_party/skia/platform_tools/android/tests/
run_all.py 16 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
test_variables.py 15 SCRIPT_DIR = os.path.dirname(__file__)
utils.py 14 EXPECTATIONS_DIR = os.path.join(os.path.dirname(__file__), 'expectations')

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>