Home
last modified time | relevance | path

Searched refs:_Action (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/include/
Dany141 enum class _Action {
191 if (__other.__h) __other.__call(_Action::_Copy, this);
197 if (__other.__h) __other.__call(_Action::_Move, this);
276 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); }
289 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo));
297 typedef __any_imp::_Action _Action;
298 using _HandleFuncPtr = void* (*)(_Action, any const *, any *, const type_info *,
308 void * __call(_Action __a, any * __other = nullptr,
316 void * __call(_Action __a, any * __other = nullptr,
346 static void* __handle(_Action __act, any const * __this, any * __other,
[all …]
/external/autotest/server/cros/
Dprovision_unittest.py24 self.assertEqual(got, provision._Action('cros-version', 'foo'))
28 self.assertEqual(got, provision._Action('webcam', None))
32 self.assertEqual(got, provision._Action('', None))
Dprovision.py41 _Action = collections.namedtuple('_Action', 'name, value') variable
56 return _Action(str_label, None)
58 return _Action(keyval_label.key, keyval_label.value)