Home
last modified time | relevance | path

Searched refs:_NAME (Results 1 – 11 of 11) sorted by relevance

/external/eigen/bench/btl/cmake/
DFindPackageHandleStandardArgs.cmake22 MACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FAIL_MSG _VAR1 )
25 IF (${_NAME}_FIND_REQUIRED)
26 SET(_FAIL_MESSAGE "Could not find REQUIRED package ${_NAME}")
27 ELSE (${_NAME}_FIND_REQUIRED)
28 SET(_FAIL_MESSAGE "Could not find OPTIONAL package ${_NAME}")
29 ENDIF (${_NAME}_FIND_REQUIRED)
34 STRING(TOUPPER ${_NAME} _NAME_UPPER)
48 IF (NOT ${_NAME}_FIND_QUIETLY)
49 MESSAGE(STATUS "Found ${_NAME}: ${${_VAR1}}")
50 ENDIF (NOT ${_NAME}_FIND_QUIETLY)
[all …]
/external/pcre/dist2/cmake/
DFindPackageHandleStandardArgs.cmake20 MACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FAIL_MSG _VAR1 )
23 IF (${_NAME}_FIND_REQUIRED)
24 SET(_FAIL_MESSAGE "Could not find REQUIRED package ${_NAME}")
25 ELSE (${_NAME}_FIND_REQUIRED)
26 SET(_FAIL_MESSAGE "Could not find OPTIONAL package ${_NAME}")
27 ENDIF (${_NAME}_FIND_REQUIRED)
32 STRING(TOUPPER ${_NAME} _NAME_UPPER)
46 IF (NOT ${_NAME}_FIND_QUIETLY)
47 MESSAGE(STATUS "Found ${_NAME}: ${${_VAR1}}")
48 ENDIF (NOT ${_NAME}_FIND_QUIETLY)
[all …]
/external/autotest/server/hosts/
Dbase_label_unittest.py21 _NAME = 'base_label' variable in TestBaseLabel
36 _NAME = ['base_label_1' , 'base_label_2'] variable in TestBaseLabels
47 _NAME = 'prefix' variable in TestStringPrefixLabel
95 [self.test_base_label._NAME])
102 [self.test_base_label._NAME])
115 self.assertEqual(full_tbl, set([self.test_base_label._NAME]))
116 self.assertEqual(full_tbls, set(self.test_base_labels._NAME))
135 ['%s:%s' % (self.test_label._NAME,
142 self.assertEqual(prefix_labels, set(['%s:' % self.test_label._NAME]))
159 full_names = set([TestBaseLabel._NAME])
[all …]
Dcros_label.py43 _NAME = ds_constants.BOARD_PREFIX.rstrip(':') variable in BoardLabel
52 if label.startswith(self._NAME + ':'):
61 _NAME = ds_constants.MODEL_LABEL variable in ModelLabel
67 if label.startswith(self._NAME + ':'):
95 _NAME = 'lightsensor' variable in LightSensorLabel
120 _NAME = 'bluetooth' variable in BluetoothLabel
132 _NAME = 'ec:cros' variable in ECLabel
165 _NAME = 'accel:cros-ec' variable in AccelsLabel
194 _NAME = 'chameleon' variable in ChameleonLabel
203 _NAME = 'chameleon' variable in ChameleonConnectionLabel
[all …]
Dbase_label.py35 return (self._NAME in info.labels) or exists(self, host)
61 _NAME = None variable in BaseLabel
73 return [self._NAME]
112 full_labels_list = (self._NAME if isinstance(self._NAME, list) else
113 [self._NAME])
165 return ['%s:%s' % (self._NAME, label)
183 prefix_labels = set(['%s:' % self._NAME])
Dadb_label.py21 _NAME = constants.BOARD_PREFIX.rstrip(':') variable in BoardLabel
31 _NAME = 'camera-hal' variable in CameraHalLabel
40 _NAME = 'loopback-dongle' variable in LoopbackDongleLabel
Dcommon_label.py16 _NAME = constants.OS_PREFIX variable in OSLabel
/external/autotest/frontend/afe/
Drpc_interface_unittest.py1400 _NAME = 'name' variable in ExtraRpcInterfaceTest
1411 self._NAME)
1449 rpc_utils.create_job_common(mox.And(mox.StrContains(self._NAME),
1476 name=self._NAME,
1495 name=self._NAME,
1514 name=self._NAME,
1535 rpc_interface.create_suite_job(name=self._NAME,
1557 rpc_interface.create_suite_job(name=self._NAME,
1580 rpc_interface.create_suite_job(name=self._NAME,
1599 rpc_interface.create_suite_job(name='%s/%s' % (self._NAME,
/external/libevent/
Devent_rpcgen.py20 _NAME = "event_rpcgen.py" variable
1570 global _NAME
1580 ' */\n\n' ) % (name, _NAME, _VERSION)
/external/python/cpython3/Lib/test/test_importlib/
Dutil.py67 specialized._NAME = cls.__name__
Dtest_abc.py43 self.__test = getattr(self.abc, self._NAME)