Searched refs:target_names (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/tools/build/src/build/ |
D | targets.py | 471 def mark_targets_as_explicit (self, target_names): argument 477 assert is_iterable_typed(target_names, basestring) 478 self.explicit_targets_.update(target_names) 480 def mark_targets_as_always(self, target_names): argument 481 assert is_iterable_typed(target_names, basestring) 482 self.always_targets_.update(target_names)
|
D | project.py | 1170 def explicit(self, target_names): argument 1171 assert is_iterable_typed(target_names, basestring) 1172 self.registry.current().mark_targets_as_explicit(target_names) 1174 def always(self, target_names): argument 1175 assert is_iterable_typed(target_names, basestring) 1176 self.registry.current().mark_targets_as_always(target_names)
|
/third_party/boost/tools/build/src/engine/ |
D | rules.cpp | 240 TARGETS * targetlist( TARGETS * chain, LIST * target_names ) in targetlist() argument 242 LISTITER iter = list_begin( target_names ); in targetlist() 243 LISTITER const end = list_end( target_names ); in targetlist()
|
D | rules.h | 266 TARGETS * targetlist ( TARGETS *, LIST * target_names );
|
/third_party/grpc/tools/buildgen/ |
D | extract_metadata_from_bazel_xml.py | 362 target_names = list( 373 target_list = list(map(lambda lib_name: lib_dict[lib_name], target_names))
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cDirectStateAccessQueriesTests.cpp | 235 static const glw::GLchar* target_names[] = { in iterate() local 249 is_ok &= testQueryParameter(GL_QUERY_RESULT, GL_FALSE, target_names[i]); in iterate() 250 is_ok &= testQueryParameter(GL_QUERY_RESULT_AVAILABLE, GL_TRUE, target_names[i]); in iterate()
|