/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | targets.js | 12 // Container for the signed part of targets metadata. 20 this.targets = options.targets || {}; 24 this.targets[target.path] = target; 31 util_1.default.isDeepStrictEqual(this.targets, other.targets) && 40 targets: targetsToJSON(this.targets), 50 const { targets, delegations, ...rest } = unrecognizedFields; 53 targets [all...] |
/third_party/gn/src/gn/ |
H A D | compile_commands_writer_unittest.cc | 36 // Returns true if the two target vectors contain the same targets, order 54 std::vector<const Target*> targets; in TEST_F() local 66 targets.push_back(&target); in TEST_F() 71 std::string out = writer.RenderJSON(build_settings(), targets); in TEST_F() 116 targets.push_back(&shlib_target); in TEST_F() 120 std::string out = writer.RenderJSON(build_settings(), targets); in TEST_F() 177 targets.push_back(&stlib_target); in TEST_F() 181 std::string out = writer.RenderJSON(build_settings(), targets); in TEST_F() 247 std::vector<const Target*> targets; in TEST_F() local 255 targets in TEST_F() 304 std::vector<const Target*> targets; TEST_F() local 357 std::vector<const Target*> targets; TEST_F() local 453 std::vector<const Target*> targets; TEST_F() local 506 std::vector<const Target*> targets; TEST_F() local 566 std::vector<const Target*> targets; TEST_F() local 613 std::vector<const Target*> targets; TEST_F() local [all...] |
H A D | commands.cc | 36 // targets. If the input does not parse as a pattern, prints and error and 86 // For now, only match patterns against targets. It might be nice in the in ResolveStringFromCommandLineInput() 88 // match, but it should probably only match targets by default. in ResolveStringFromCommandLineInput() 158 bool ApplyTestonlyFilter(std::vector<const Target*>* targets) { in ApplyTestonlyFilter() argument 162 if (targets->empty() || testonly_mode == CommandSwitches::TESTONLY_NONE) in ApplyTestonlyFilter() 169 result.reserve(targets->size()); in ApplyTestonlyFilter() 171 for (const Target* target : *targets) { in ApplyTestonlyFilter() 176 *targets = std::move(result); in ApplyTestonlyFilter() 182 bool ApplyTypeFilter(std::vector<const Target*>* targets) { in ApplyTypeFilter() argument 186 if (targets in ApplyTypeFilter() 229 PrintTargetsAsBuildfiles(const std::vector<const Target*>& targets, base::ListValue* out) PrintTargetsAsBuildfiles() argument 241 PrintTargetsAsLabels(const std::vector<const Target*>& targets, base::ListValue* out) PrintTargetsAsLabels() argument 258 PrintTargetsAsOutputs(const std::vector<const Target*>& targets, base::ListValue* out) PrintTargetsAsOutputs() argument 682 FilterAndPrintTargets(std::vector<const Target*>* targets, base::ListValue* out) FilterAndPrintTargets() argument 709 FilterAndPrintTargets(bool indent, std::vector<const Target*>* targets) FilterAndPrintTargets() argument 722 FilterAndPrintTargetSet(bool indent, const TargetSet& targets) FilterAndPrintTargetSet() argument 727 FilterAndPrintTargetSet(const TargetSet& targets, base::ListValue* out) FilterAndPrintTargetSet() argument [all...] |
H A D | rust_project_writer_unittest.cc | 45 std::vector<const Target*> targets; in TEST_F() local 46 targets.push_back(&target); in TEST_F() 47 RustProjectWriter::RenderJSON(setup.build_settings(), targets, stream); in TEST_F() 110 std::vector<const Target*> targets; in TEST_F() local 111 targets.push_back(&target); in TEST_F() 112 RustProjectWriter::RenderJSON(setup.build_settings(), targets, stream); in TEST_F() 208 std::vector<const Target*> targets; in TEST_F() local 209 targets.push_back(&target); in TEST_F() 210 RustProjectWriter::RenderJSON(setup.build_settings(), targets, stream); in TEST_F() 345 std::vector<const Target*> targets; in TEST_F() local 448 std::vector<const Target*> targets; TEST_F() local 503 std::vector<const Target*> targets; TEST_F() local 558 std::vector<const Target*> targets; TEST_F() local 614 std::vector<const Target*> targets; TEST_F() local [all...] |
H A D | json_project_writer_unittest.cc | 41 std::vector<const Target*> targets; in TEST_F() local 42 targets.push_back(&target); in TEST_F() 56 JSONProjectWriter::RenderJSON(setup.build_settings(), targets); in TEST_F() 73 "targets": { in TEST_F() 280 std::vector<const Target*> targets; 281 targets.push_back(&target); 283 JSONProjectWriter::RenderJSON(setup.build_settings(), targets); 295 "targets": { 514 std::vector<const Target*> targets; 515 targets [all...] |
H A D | metadata_walk_unittest.cc | 42 UniqueVector<const Target*> targets; in TEST() local 43 targets.push_back(&one); in TEST() 44 targets.push_back(&two); in TEST() 54 std::vector<Value> result = WalkMetadata(targets, data_keys, walk_keys, in TEST() 93 UniqueVector<const Target*> targets; in TEST() local 94 targets.push_back(&one); in TEST() 104 std::vector<Value> result = WalkMetadata(targets, data_keys, walk_keys, in TEST() 150 UniqueVector<const Target*> targets; in TEST() local 151 targets.push_back(&one); in TEST() 161 std::vector<Value> result = WalkMetadata(targets, data_key in TEST() 190 UniqueVector<const Target*> targets; TEST() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | TargetRegistry.cpp | 20 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { in targets() function in TargetRegistry 32 auto I = find_if(targets(), in lookupTarget() 35 if (I == targets().end()) { in lookupTarget() 64 // Provide special warning when no targets are initialized. in lookupTarget() 65 if (targets().begin() == targets().end()) { in lookupTarget() 66 Error = "Unable to find target for this triple (no targets are registered)"; in lookupTarget() 71 auto I = find_if(targets(), ArchMatch); in lookupTarget() 73 if (I == targets().end()) { in lookupTarget() 74 Error = "No available targets ar in lookupTarget() [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 32 # A list of sections that contain links to other targets. 86 # Sections that must exist inside targets and not configurations. 108 # Sections that can be found inside targets or configurations, but that 109 # should not be propagated from targets into their configurations. 323 # Processes toolsets in all the targets. This recurses into condition entries 326 if "targets" in data: 327 target_list = data["targets"] 350 data["targets"] = new_target_list 360 # a build file that contains targets and is expected to provide a targets dic [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 32 # A list of sections that contain links to other targets. 86 # Sections that must exist inside targets and not configurations. 108 # Sections that can be found inside targets or configurations, but that 109 # should not be propagated from targets into their configurations. 323 # Processes toolsets in all the targets. This recurses into condition entries 326 if "targets" in data: 327 target_list = data["targets"] 350 data["targets"] = new_target_list 360 # a build file that contains targets and is expected to provide a targets dic [all...] |
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | test_data_generation.py | 124 to as file targets. These indicate where test cases will be written to for 155 # Update `targets` with an entry for each child class of BaseTarget. 158 self.targets.update({ 177 # Note that targets whose names contain 'test_format' have their content 179 targets = {} # type: Dict[str, Callable[..., Iterable[test_case.TestCase]]] variable in TestGenerator 187 test_cases = self.targets[name](*target_args) 194 help='List available targets and exit') 196 help='Print \';\'-separated list of available targets and exit') 203 parser.add_argument('targets', nargs='*', metavar='TARGET', 217 for name in sorted(generator.targets) [all...] |
/third_party/node/deps/v8/tools/ |
H A D | bash-completion.sh | 64 local targets 65 targets=$(_get_v8_flags ; _get_d8_flags) 66 COMPREPLY=($(compgen -W "$targets" -- "${COMP_WORDS[COMP_CWORD]}")) 71 local targets 72 targets=$(_get_v8_flags) 73 COMPREPLY=($(compgen -W "$targets" -- "${COMP_WORDS[COMP_CWORD]}")) 132 local targets=$(_get_gm_flags) 133 COMPREPLY=($(compgen -W "$targets" -- "${COMP_WORDS[COMP_CWORD]}"))
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fSampleVariableTests.cpp | 467 << " 1) 0 with non-multisample targets.\n" 633 << " 1) With non-multisample targets: Expect the center of the pixel.\n" 634 << " 2) With multisample targets:\n" 645 << " 1) With non-multisample targets: Expect the center of the pixel.\n" 646 << " 2) With multisample targets:\n" 1173 << " 1) With multisample targets: gl_SampleMaskIn AND ~(SAMPLE_MASK) should be zero.\n" 1174 << " 2) With non-multisample targets: SAMPLE_MASK state is only ANDed as a multisample operation. gl_SampleMaskIn should only have its last bit set regardless of SAMPLE_MASK state.\n" 1255 // non-multisample targets don't get multisample operations like ANDing with mask 2040 << " 1) half intensity on multisample targets (numSamples > 1)\n" 2041 << " 2) full discard on multisample targets (numSample [all...] |
H A D | es31fShaderMultisampleInterpolationTests.cpp | 1688 } targets[] = 1730 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) 1731 sampleQualifierGroup->addChild(new SampleQualifierRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNdx].numSamples, targets[targetNdx].target)); 1744 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) 1745 group->addChild(new InterpolateAtSampleRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd [all...] |
/third_party/ninja/misc/ |
H A D | write_fake_manifests.py | 177 def write_master_ninja(master_ninja, targets): 200 for target in targets: 204 master_ninja.comment('Short names for targets.') 205 for target in targets: 210 master_ninja.build('all', 'phony', [target.output for target in targets]) 230 targets = [Target(gen, LIB) for i in range(num_targets - 1)] 231 for i in range(len(targets)): 232 targets[i].deps = [t for t in targets[0:i] if random.random() < 0.05] 235 last_target.deps = targets[ [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
H A D | vktMemoryBindingTests.cpp | 520 void createBindingTargets (std::vector<de::SharedPtr<Move<TTarget> > >& targets); 523 void createMemory (std::vector<de::SharedPtr<Move<TTarget> > >& targets, 527 void makeBinding (std::vector<de::SharedPtr<Move<TTarget> > >& targets, 562 void BaseTestInstance::createBindingTargets<VkBuffer> (BuffersList& targets) in createBindingTargets() argument 568 targets.reserve(count); in createBindingTargets() 572 targets.push_back(BufferPtr(new Move<VkBuffer>(vk::createBuffer(vk, vkDevice, &bufferParams)))); in createBindingTargets() 577 void BaseTestInstance::createBindingTargets<VkImage> (ImagesList& targets) in createBindingTargets() argument 583 targets.reserve(count); in createBindingTargets() 587 targets.push_back(ImagePtr(new Move<VkImage>(createImage(vk, vkDevice, &imageParams)))); in createBindingTargets() 592 void BaseTestInstance::createMemory<VkBuffer, DE_FALSE> (BuffersList& targets, in createMemory() argument 626 createMemory(ImagesList& targets, MemoryRegionsList& memory) createMemory() argument 660 createMemory(BuffersList& targets, MemoryRegionsList& memory) createMemory() argument 696 createMemory(ImagesList& targets, MemoryRegionsList& memory) createMemory() argument 732 makeBinding(BuffersList& targets, MemoryRegionsList& memory) makeBinding() argument 749 makeBinding(ImagesList& targets, MemoryRegionsList& memory) makeBinding() argument 954 targets; iterate() local 1003 targets[2]; iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryBindingTests.cpp | 520 void createBindingTargets (std::vector<de::SharedPtr<Move<TTarget> > >& targets); 523 void createMemory (std::vector<de::SharedPtr<Move<TTarget> > >& targets, 527 void makeBinding (std::vector<de::SharedPtr<Move<TTarget> > >& targets, 562 void BaseTestInstance::createBindingTargets<VkBuffer> (BuffersList& targets) in createBindingTargets() argument 568 targets.reserve(count); in createBindingTargets() 572 targets.push_back(BufferPtr(new Move<VkBuffer>(vk::createBuffer(vk, vkDevice, &bufferParams)))); in createBindingTargets() 577 void BaseTestInstance::createBindingTargets<VkImage> (ImagesList& targets) in createBindingTargets() argument 583 targets.reserve(count); in createBindingTargets() 587 targets.push_back(ImagePtr(new Move<VkImage>(createImage(vk, vkDevice, &imageParams)))); in createBindingTargets() 592 void BaseTestInstance::createMemory<VkBuffer, DE_FALSE> (BuffersList& targets, in createMemory() argument 626 createMemory(ImagesList& targets, MemoryRegionsList& memory) createMemory() argument 660 createMemory(BuffersList& targets, MemoryRegionsList& memory) createMemory() argument 696 createMemory(ImagesList& targets, MemoryRegionsList& memory) createMemory() argument 732 makeBinding(BuffersList& targets, MemoryRegionsList& memory) makeBinding() argument 749 makeBinding(ImagesList& targets, MemoryRegionsList& memory) makeBinding() argument 954 targets; iterate() local 1003 targets[2]; iterate() local [all...] |
/third_party/node/deps/v8/tools/dev/ |
H A D | gm.py | 51 # Build targets that can be manually specified. 55 # Build targets that get built when you don't specify any (and specified tests 56 # don't imply any other targets). 66 "targets": BUILD_TARGETS_ALL, 71 "targets": BUILD_TARGETS_TEST, 76 "targets": BUILD_TARGETS_TEST, 81 "targets": BUILD_TARGETS_ALL, 86 "targets": [], 95 - %(targets)s (build respective binary) 102 "targets" [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-printer.cc | 118 std::ostream& os, const std::vector<BasicBlock*>& targets, in PrintVerticalArrows() 123 for (size_t i = 0; i < targets.size(); ++i) { 129 targets_starting_here.find(targets[i]) != targets_starting_here.end()) { 136 if (c.connected == 0 && targets[i] != nullptr) { 145 size_t AddTarget(std::vector<BasicBlock*>& targets, BasicBlock* target) { in AddTarget() argument 146 if (targets.size() == 0 || targets.back() != nullptr) { in AddTarget() 147 targets.push_back(target); in AddTarget() 148 return targets.size() - 1; in AddTarget() 151 size_t i = targets in AddTarget() 117 PrintVerticalArrows( std::ostream& os, const std::vector<BasicBlock*>& targets, const std::set<size_t>& arrows_starting_here = {}, const std::set<BasicBlock*>& targets_starting_here = {}, bool is_loop = false) PrintVerticalArrows() argument 164 AddTargetIfNotNext(std::vector<BasicBlock*>& targets, BasicBlock* target, BasicBlock* next_block, std::set<size_t>* arrows_starting_here = nullptr) AddTargetIfNotNext() argument 176 MaglevPrintingVisitorOstream(std::ostream& os, std::vector<BasicBlock*>* targets) MaglevPrintingVisitorOstream() argument 307 PrintEagerDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeT* node, const ProcessingState& state) PrintEagerDeopt() argument 332 MaybePrintEagerDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeBase* node, const ProcessingState& state) MaybePrintEagerDeopt() argument 347 PrintLazyDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeT* node, const ProcessingState& state) PrintLazyDeopt() argument 377 MaybePrintLazyDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeBase* node, const ProcessingState& state) MaybePrintLazyDeopt() argument [all...] |
/third_party/python/Python/ |
H A D | makeopcodetargets.py | 34 targets = ['_unknown_opcode'] * 256 35 targets[255] = "TARGET_DO_TRACING" 37 targets[op] = "TARGET_%s" % opname 40 while targets[next_op] != '_unknown_opcode': 42 targets[next_op] = "TARGET_%s" % opname 44 f.write(",\n".join([" &&%s" % s for s in targets]))
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state_streamout.c | 78 struct pipe_stream_output_target **targets, in si_set_streamout_targets() 98 if (sctx->streamout.targets[i]) in si_set_streamout_targets() 99 si_resource(sctx->streamout.targets[i]->b.buffer)->TC_L2_dirty = true; in si_set_streamout_targets() 129 /* All readers of the streamout targets need to be finished before we can in si_set_streamout_targets() 130 * start writing to the targets. in si_set_streamout_targets() 146 /* Set the new targets. */ in si_set_streamout_targets() 149 si_so_target_reference(&sctx->streamout.targets[i], targets[i]); in si_set_streamout_targets() 150 if (!targets[i]) in si_set_streamout_targets() 153 si_context_add_resource_size(sctx, targets[ in si_set_streamout_targets() 77 si_set_streamout_targets(struct pipe_context *ctx, unsigned num_targets, struct pipe_stream_output_target **targets, const unsigned *offsets) si_set_streamout_targets() argument [all...] |
/third_party/node/tools/gyp/tools/ |
H A D | graphviz.py | 9 targets.""" 23 def LoadEdges(filename, targets): 25 show targets in |targets| and their depedendents.""" 33 to_visit = targets[:] 46 |edges| is a map of target to a list of other targets it depends on.""" 48 # Bucket targets by file. 61 for filename, targets in files.items(): 62 if len(targets) == 1: 65 target = targets[ [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_so.c | 73 struct pipe_stream_output_target **targets, in llvmpipe_set_so_targets() 85 if (targets[i] && targets[i]->context != pipe) { in llvmpipe_set_so_targets() 89 pipe_so_target_reference((struct pipe_stream_output_target **)&llvmpipe->so_targets[i], targets[i]); in llvmpipe_set_so_targets() 96 if (targets[i]) { in llvmpipe_set_so_targets() 97 void *buf = llvmpipe_resource(targets[i]->buffer)->data; in llvmpipe_set_so_targets() 71 llvmpipe_set_so_targets(struct pipe_context *pipe, unsigned num_targets, struct pipe_stream_output_target **targets, const unsigned *offsets) llvmpipe_set_so_targets() argument
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
H A D | Makefile | 11 targets := help macro 12 targets += html 13 targets += man 19 # route all targets to Sphinx using the new "make mode" option. 20 $(targets): conf.py Makefile
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
H A D | LanguageTestFmwk.java | 240 String[] targets = data.getFullPluralizedFormTargets(); in testFullPluralizedForms() 261 xAssertEquals(u.toString() + c, targets, n++, string); in testFullPluralizedForms() 269 String[] targets = data.getMediumFormTargets(); in testMediumForms() 284 xAssertEquals(u.toString(), targets, n++, string); in testMediumForms() 291 String[] targets = data.getShortFormTargets(); in testShortForms() 306 xAssertEquals(u.toString(), targets, n++, string); in testShortForms() 313 String[] targets = data.getCustomMinuteTargets(); in testCustomMinutes() 327 xAssertEquals(targets, n++, pf.format(p)); in testCustomMinutes() 329 xAssertEquals(targets, n++, pf.format(p)); in testCustomMinutes() 336 String[] targets in testLimitedUnits() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/ |
H A D | LanguageTestFmwk.java | 241 String[] targets = data.getFullPluralizedFormTargets(); in testFullPluralizedForms() 262 xAssertEquals(u.toString() + c, targets, n++, string); in testFullPluralizedForms() 270 String[] targets = data.getMediumFormTargets(); in testMediumForms() 285 xAssertEquals(u.toString(), targets, n++, string); in testMediumForms() 292 String[] targets = data.getShortFormTargets(); in testShortForms() 307 xAssertEquals(u.toString(), targets, n++, string); in testShortForms() 314 String[] targets = data.getCustomMinuteTargets(); in testCustomMinutes() 328 xAssertEquals(targets, n++, pf.format(p)); in testCustomMinutes() 330 xAssertEquals(targets, n++, pf.format(p)); in testCustomMinutes() 337 String[] targets in testLimitedUnits() [all...] |