Home
last modified time | relevance | path

Searched refs:all_sources (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dmake.py657 def _ValidateSourcesForOSX(spec, all_sources): argument
667 for source in all_sources:
812 all_sources = spec.get('sources', []) + extra_sources
813 if all_sources:
817 _ValidateSourcesForOSX(spec, all_sources)
819 configs, deps, all_sources, extra_outputs,
824 sources = list(filter(Compilable, all_sources))
857 self.WriteAndroidNdkModuleRule(self.target, all_sources, link_deps)
1794 def WriteAndroidNdkModuleRule(self, module_name, all_sources, link_deps): argument
1831 for filename in all_sources:
[all …]
Dandroid.py519 all_sources = sources + extra_sources
521 for source in all_sources:
/third_party/boost/libs/graph_parallel/test/
Dalgorithm_performance.cpp219 std::vector<vertex_descriptor> all_sources, local_sources; in test_directed_csr_only_algorithms() local
233 all_gather(pg, local_sources.begin(), local_sources.end(), all_sources); in test_directed_csr_only_algorithms()
234 std::sort(all_sources.begin(), all_sources.end()); in test_directed_csr_only_algorithms()
235 for (typename std::vector<vertex_descriptor>::iterator iter = all_sources.begin(); in test_directed_csr_only_algorithms()
236 iter != all_sources.end(); ++iter) { in test_directed_csr_only_algorithms()
Dssca.cpp193 std::vector<vertex_descriptor> all_sources, local_sources; in generate_sources() local
207 all_gather(pg, local_sources.begin(), local_sources.end(), all_sources); in generate_sources()
208 std::sort(all_sources.begin(), all_sources.end()); in generate_sources()
209 for (typename std::vector<vertex_descriptor>::iterator iter = all_sources.begin(); in generate_sources()
210 iter != all_sources.end(); ++iter) in generate_sources()
/third_party/node/tools/gyp/pylib/gyp/generator/
Dmake.py829 all_sources = spec.get("sources", []) + extra_sources
830 if all_sources:
834 all_sources,
844 sources = [x for x in all_sources if Compilable(x)]
884 self.WriteAndroidNdkModuleRule(self.target, all_sources, link_deps)
2008 def WriteAndroidNdkModuleRule(self, module_name, all_sources, link_deps): argument
2047 for filename in all_sources:
2056 list(map(self.Absolutify, filter(Compilable, all_sources))),
Dandroid.py573 all_sources = sources + extra_sources
575 for source in all_sources:
Dninja.py873 all_sources = spec["sources"]
878 self.GypPathToNinja, filter(lambda x: x.endswith((".h")), all_sources)
/third_party/skia/gn/
Dgn_to_cmake.py499 all_sources = target.properties.get('sources', [])
503 if len(all_sources) == 0:
504 all_sources.append(posixpath.join(project.build_path, 'empty.cpp'))
507 for source in all_sources:
/third_party/flutter/skia/gn/
Dgn_to_cmake.py500 all_sources = target.properties.get('sources', [])
504 if len(all_sources) == 0:
505 all_sources.append(posixpath.join(project.build_path, 'empty.cpp'))
508 for source in all_sources: