Home
last modified time | relevance | path

Searched refs:target_names (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/tools/build/src/build/
Dtargets.py471 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)
Dproject.py1170 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/
Drules.cpp240 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()
Drules.h266 TARGETS * targetlist ( TARGETS *, LIST * target_names );
/third_party/grpc/tools/buildgen/
Dextract_metadata_from_bazel_xml.py362 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/
Dgl4cDirectStateAccessQueriesTests.cpp235 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()