HomeSort by relevance Sort by last modified time
    Searched full:bisect (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/tools/
OWNERS 3 per-file bisect-builds.py=rsesek@chromium.org
bisect_test.py 7 bisect_builds = __import__('bisect-builds')
35 def bisect(self, good_rev, bad_rev, evaluate): member in class:BisectTest
36 return bisect_builds.Bisect(good_rev=good_rev,
46 self.assertEqual(self.bisect(1000, 100, lambda *args: 'g'), (100, 101))
47 self.assertEqual(self.bisect(100, 1000, lambda *args: 'b'), (100, 101))
48 self.assertEqual(self.bisect(2000, 200, lambda *args: 'b'), (1999, 2000))
49 self.assertEqual(self.bisect(200, 2000, lambda *args: 'g'), (1999, 2000))
prepare-bisect-perf-regression.py 6 """Prepare Performance Test Bisect Tool
13 ./tools/prepare-bisect-perf-regressions.py --working_directory "~/builds"
16 Would result in creating ~/builds/bisect and then populating it with a copy of
38 'files will be placed in a subdirectory "bisect" under '
run-bisect-manual-test.py 6 """Run Manual Test Bisect Tool
9 tools/run-bisect-manual-test.py -g 201281 -b 201290
16 This script serves a similar function to bisect-builds.py, except it uses
36 """Attempts to execute the bisect script (bisect_perf_regression.py).
39 options: The configuration options to pass to the bisect script.
45 (os.path.join(_TOOLS_DIR, 'bisect-manual-test.py'),
94 """Does a bisect based on the command-line arguments passed in.
123 'bisect script will use this to override default behavior.')
run-bisect-perf-regression.py 6 """Run Performance Test Bisect Tool
8 This script is used by a try bot to run the bisect script with the parameters
9 specified in the bisect config file. It checks out a copy of the depot in
10 a subdirectory 'bisect' of the working directory provided, annd runs the
11 bisect scrip there.
30 BISECT_CONFIG_PATH = os.path.join(SCRIPT_DIR, 'auto_bisect', 'bisect.cfg')
137 This is used when we're doing a perf try job, rather than a bisect.
159 """Validates the bisect config file contents.
242 # Bisect script expects to be run from the src directory
368 """Attempts to execute the bisect script with the given parameters
    [all...]
bisect-manual-test.py 8 Typically used as by the run-bisect-manual-test.py script.
bisect-builds.py 6 """Snapshot Build Bisect Tool
380 'Eg: python tools/bisect-builds.py -g 280588 -b 280590' +
451 ' running the bisect-builds.py again.:\n'
612 # They are present here because this function is passed to Bisect which then
686 def Bisect(context,
739 # Get a list of revisions to bisect across.
740 if len(revlist) < 2: # Don't have enough builds to bisect.
741 msg = 'We don\'t have enough builds to bisect. revlist: %s' % revlist
    [all...]
run-perf-test.cfg 16 bisect-perf-regression.py script in order to execute the test.
  /external/chromium_org/tools/auto_bisect/
README 11 Overview of bisect-related files in src/tools:
12 run-bisect-perf-regression.py -- used to kick off a bisect job
13 prepare-bisect-perf-regression.py -- run before the above to prepare the repo
14 run-bisect-manual-test.py -- used to manually bisect
15 bisect-manual-test.py -- helper module used by run-bisect-manual-test.py
16 auto_bisect/bisect.cfg -- config parameters for a bisect jo
    [all...]
PRESUBMIT.py 5 """Top-level presubmit script for auto-bisect.
15 # Paths to bisect config files relative to src/tools.
30 """Does all presubmit checks for auto-bisect."""
39 """Checks all bisect config files and returns a list of presubmit results."""
49 """Checks one bisect config file and returns a list of presubmit results."""
76 """Runs unit tests for auto-bisect."""
82 message = 'Auto-bisect unit tests did not all pass.'
88 """Runs unit tests for auto-bisect."""
bisect_utils.py 5 """Utility functions used by the bisect tool.
151 """Creates a directory 'bisect' as a subdirectory of |working_directory|.
154 'bisect' directory.
157 working_directory: The directory to create the new 'bisect' directory in.
165 os.mkdir('bisect')
170 os.chdir('bisect')
360 The depot will be located in a subdirectory called 'bisect'.
403 """Checks if the bisect directory already exists.
411 path_to_dir = os.path.join(opts.working_directory, 'bisect', 'src')
447 """Sets up a subdirectory 'bisect' and then retrieves a copy of the depo
    [all...]
bisect.cfg 5 """Config file read by run-bisect-perf-regression.py.
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
memory_map.py 5 import bisect namespace
21 bisect.insort_right(self.entries, entry)
25 idx = bisect.bisect_right(self.entries, addr) - 1
95 """Comparison operator required for bisect."""
  /external/chromium_org/third_party/WebKit/Tools/
PRESUBMIT.py 5 """Top-level presubmit script for bisect/perf trybot.
run-perf-test.cfg 16 bisect-perf-regression.py script in order to execute the test.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /external/chromium_org/build/android/buildbot/
bb_host_steps.py 96 RunCmd([SrcPath('tools', 'prepare-bisect-perf-regression.py'),
98 RunCmd([SrcPath('tools', 'run-bisect-perf-regression.py'),
122 'bisect script will use it to override default behavior.')
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 9 import bisect namespace
109 map_idx = bisect.bisect(mem_map_keys, pc) - 1
  /external/tremolo/Tremolo/
vorbisfile.c 219 ogg_int64_t bisect; local
222 bisect=searched;
224 bisect=(searched+endsearched)/2;
227 _seek_helper(vf,bisect);
231 endsearched=bisect;
526 /* Chained bitstream. Bisect-search each logical bitstream
1196 ogg_int64_t bisect; local
    [all...]
  /build/tools/releasetools/
sparse_img.py 15 import bisect namespace
136 idx = bisect.bisect_right(self.offset_index, s) - 1
188 idx = bisect.bisect_right(self.offset_index, b) - 1
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
bisect_test_ordering.py 60 def bisect(self): member in class:Bisector
161 option_parser.add_option('--test-list', action='store', help='file that list tests to bisect. The last test in the list is the expected failure.', metavar='FILE'),
167 return bisector.bisect()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 28 import bisect namespace
217 igyrowindow0 = bisect.bisect(all_times, tcam0)
218 igyrowindow1 = bisect.bisect(all_times, tcam1)

Completed in 1082 milliseconds

1 2 3