Home
last modified time | relevance | path

Searched refs:run_order (Results 1 – 23 of 23) sorted by relevance

/external/libchrome/base/task/sequence_manager/
Dsequence_manager_impl_unittest.cc289 std::vector<EnqueueOrder> run_order; in TEST_P() local
290 runners_[0]->PostTask(FROM_HERE, BindOnce(&TestTask, 1, &run_order)); in TEST_P()
291 runners_[0]->PostTask(FROM_HERE, BindOnce(&TestTask, 2, &run_order)); in TEST_P()
292 runners_[0]->PostTask(FROM_HERE, BindOnce(&TestTask, 3, &run_order)); in TEST_P()
295 EXPECT_THAT(run_order, ElementsAre(1u, 2u, 3u)); in TEST_P()
301 std::vector<EnqueueOrder> run_order; in TEST_P() local
302 runners_[0]->PostTask(FROM_HERE, BindOnce(&TestTask, 1, &run_order)); in TEST_P()
303 runners_[0]->PostTask(FROM_HERE, BindOnce(&TestTask, 2, &run_order)); in TEST_P()
304 runners_[1]->PostTask(FROM_HERE, BindOnce(&TestTask, 3, &run_order)); in TEST_P()
305 runners_[1]->PostTask(FROM_HERE, BindOnce(&TestTask, 4, &run_order)); in TEST_P()
[all …]
/external/tensorflow/tensorflow/core/util/
Dstats_calculator_test.cc56 EXPECT_EQ(node1_run_order, detail.run_order); in TEST()
68 EXPECT_EQ(node1_run_order, detail.run_order); in TEST()
Dstats_calculator.cc108 stream << num_nodes - detail->run_order; in OrderNodesByMetric()
276 const std::string& type, int64_t run_order, in AddNodeStats() argument
285 detail->run_order = run_order; in AddNodeStats()
Dstats_calculator.h159 int64_t run_order; member
169 int64_t run_order, int64_t start_us, int64_t rel_end_us,
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_imports2.py14 run_order = 7 variable in FixImports2
Dfix_future.py17 run_order = 10 variable in FixFuture
Dfix_itertools.py26 run_order = 6 variable in FixItertools
Dfix_isinstance.py27 run_order = 6 variable in FixIsinstance
Dfix_imports.py94 run_order = 6 variable in FixImports
Dfix_tuple_params.py32 run_order = 4 #use a lower order since lambda is part of other variable in FixTupleParams
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_imports2.py14 run_order = 7 variable in FixImports2
Dfix_future.py17 run_order = 10 variable in FixFuture
Dfix_itertools.py26 run_order = 6 variable in FixItertools
Dfix_isinstance.py27 run_order = 6 variable in FixIsinstance
Dfix_imports.py94 run_order = 6 variable in FixImports
Dfix_tuple_params.py32 run_order = 4 #use a lower order since lambda is part of other variable in FixTupleParams
/external/python/cpython3/Lib/lib2to3/tests/data/fixers/myfixes/
Dfix_first.py4 run_order = 1 variable in FixFirst
Dfix_last.py5 run_order = 10 variable in FixLast
/external/python/cpython2/Lib/lib2to3/tests/data/fixers/myfixes/
Dfix_last.py5 run_order = 10 variable in FixLast
Dfix_first.py4 run_order = 1 variable in FixFirst
/external/python/cpython2/Lib/lib2to3/
Dfixer_base.py34 run_order = 5 # Fixers will be sorted by run order before execution variable in BaseFix
/external/python/cpython3/Lib/lib2to3/
Dfixer_base.py33 run_order = 5 # Fixers will be sorted by run order before execution variable in BaseFix
/external/tensorflow/tensorflow/lite/
Dinterpreter_test.cc921 CallReporting(int node_id, std::vector<int>* run_order) in CallReporting() argument
922 : node_id_(node_id), run_order_(run_order) {} in CallReporting()