Searched refs:exit_ (Results 1 – 9 of 9) sorted by relevance
/external/drm_hwcomposer/utils/ |
D | worker.cpp | 25 : name_(name), priority_(priority), exit_(false), initialized_(false) { in Worker() 40 exit_ = false; in InitWorker() 47 exit_ = true; in Exit()
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | control_flow.py | 142 name, check_shape, init, entry, exit_, shape_invariant): argument 148 if isinstance(exit_, (bool, int, float, str)): 149 exit_ = ops.convert_to_tensor_v2(exit_) 152 not tensor_util.is_tensor(exit_)): 157 not hasattr(exit_, 'dtype')): 160 not hasattr(exit_, 'shape')): 163 if entry.dtype != exit_.dtype: 170 exit_.dtype.name, 173 exit_shape = exit_.shape 216 exit_ = iter_exit_vars[i] [all …]
|
D | control_flow_deprecated_py2.py | 138 name, check_shape, init, entry, exit_, shape_invariant): argument 144 if isinstance(exit_, (bool, int, float, str)): 145 exit_ = ops.convert_to_tensor_v2(exit_) 148 not tensor_util.is_tensor(exit_)): 153 not hasattr(exit_, 'dtype')): 156 not hasattr(exit_, 'shape')): 159 if entry.dtype != exit_.dtype: 166 exit_.dtype.name, 169 exit_shape = exit_.shape 205 for name, init, entry, exit_, invariant in named_vars: [all …]
|
/external/drm_hwcomposer/include/ |
D | worker.h | 64 return exit_; in should_exit() 77 bool exit_; variable
|
/external/v8/src/interpreter/ |
D | control-flow-builders.cc | 124 builder()->Jump(&exit_); in EndTry() 133 void TryCatchBuilder::EndCatch() { builder()->Bind(&exit_); } in EndCatch()
|
D | control-flow-builders.h | 204 BytecodeLabel exit_; variable
|
/external/libchrome/base/debug/ |
D | activity_tracker_unittest.cc | 400 exit_(false), in SimpleActivityThread() 414 while (!exit_.load(std::memory_order_relaxed)) in Run() 423 exit_.store(true, std::memory_order_relaxed); in Exit() 437 std::atomic<bool> exit_; member in base::debug::__anon169bb6eb0311::SimpleActivityThread
|
/external/v8/src/compiler/backend/ |
D | code-generator-impl.h | 247 Label* exit() { return &exit_; } in exit() 254 Label exit_; variable
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | cfg.py | 471 for exit_ in self.exits[section_id]: 472 self.leaves |= self._connect_jump_to_finally_sections(exit_)
|