Searched refs:_Action (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/libcxx/include/ |
D | any | 142 enum class _Action { 192 if (__other.__h) __other.__call(_Action::_Copy, this); 198 if (__other.__h) __other.__call(_Action::_Move, this); 277 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); } 290 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo)); 298 typedef __any_imp::_Action _Action; 299 using _HandleFuncPtr = void* (*)(_Action, any const *, any *, const type_info *, 309 void * __call(_Action __a, any * __other = nullptr, 317 void * __call(_Action __a, any * __other = nullptr, 347 static void* __handle(_Action __act, any const * __this, any * __other, [all …]
|
/external/libcxx/include/ |
D | any | 143 enum class _Action { 193 if (__other.__h) __other.__call(_Action::_Copy, this); 199 if (__other.__h) __other.__call(_Action::_Move, this); 278 void reset() _NOEXCEPT { if (__h) this->__call(_Action::_Destroy); } 291 return *static_cast<type_info const *>(this->__call(_Action::_TypeInfo)); 299 typedef __any_imp::_Action _Action; 300 using _HandleFuncPtr = void* (*)(_Action, any const *, any *, const type_info *, 310 void * __call(_Action __a, any * __other = nullptr, 318 void * __call(_Action __a, any * __other = nullptr, 348 static void* __handle(_Action __act, any const * __this, any * __other, [all …]
|
/external/autotest/server/cros/ |
D | provision_unittest.py | 29 self.assertEqual(got, provision._Action('cros-version', 'foo')) 33 self.assertEqual(got, provision._Action('webcam', None)) 37 self.assertEqual(got, provision._Action('', None))
|
D | provision.py | 40 _Action = collections.namedtuple('_Action', 'name, value') variable 55 return _Action(str_label, None) 57 return _Action(keyval_label.key, keyval_label.value)
|
/external/pigweed/pw_env_setup/py/pw_env_setup/ |
D | environment.py | 66 class _Action(object): # pylint: disable=useless-object-inheritance class 82 class _VariableAction(_Action): 192 class Echo(_Action): 206 class Comment(_Action): 216 class Command(_Action): 241 class BlankLine(_Action): 247 class Function(_Action): 257 class Hash(_Action):
|