Searched refs:already_seen (Results 1 – 8 of 8) sorted by relevance
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
D | javamicro_message.cc | 98 hash_set<const Descriptor*>* already_seen) { in HasRequiredFields() argument 99 if (already_seen->count(type) > 0) { in HasRequiredFields() 110 already_seen->insert(type); in HasRequiredFields() 123 if (HasRequiredFields(field->message_type(), already_seen)) { in HasRequiredFields() 133 hash_set<const Descriptor*> already_seen; in HasRequiredFields() local 134 return HasRequiredFields(type, &already_seen); in HasRequiredFields()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_helpers.cc | 705 hash_set<const Descriptor*>* already_seen) { in HasRequiredFields() argument 706 if (already_seen->count(type) > 0) { in HasRequiredFields() 717 already_seen->insert(type); in HasRequiredFields() 730 if (HasRequiredFields(field->message_type(), already_seen)) { in HasRequiredFields() 740 hash_set<const Descriptor*> already_seen; in HasRequiredFields() local 741 return HasRequiredFields(type, &already_seen); in HasRequiredFields()
|
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
D | structured_loop_to_selection_reduction_opportunity.cpp | 75 std::set<uint32_t> already_seen; in RedirectToClosestMergeBlock() local 77 if (already_seen.find(pred) != already_seen.end()) { in RedirectToClosestMergeBlock() 82 already_seen.insert(pred); in RedirectToClosestMergeBlock()
|
/external/deqp-deps/SPIRV-Tools/source/reduce/ |
D | structured_loop_to_selection_reduction_opportunity.cpp | 73 std::set<uint32_t> already_seen; in RedirectToClosestMergeBlock() local 75 if (already_seen.find(pred) != already_seen.end()) { in RedirectToClosestMergeBlock() 80 already_seen.insert(pred); in RedirectToClosestMergeBlock()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | command_line_interface.cc | 1472 set<const FileDescriptor*> already_seen; in GenerateDependencyManifestFile() local 1477 &already_seen, in GenerateDependencyManifestFile() 1552 set<const FileDescriptor*> already_seen; in GeneratePluginOutput() local 1558 &already_seen, request.mutable_proto_file()); in GeneratePluginOutput() 1686 set<const FileDescriptor*> already_seen; in WriteDescriptorSet() local 1691 &already_seen, file_set.mutable_file()); in WriteDescriptorSet() 1694 set<const FileDescriptor*> already_seen; in WriteDescriptorSet() local 1696 if (!already_seen.insert(parsed_files[i]).second) { in WriteDescriptorSet() 1739 set<const FileDescriptor*>* already_seen, in GetTransitiveDependencies() argument 1741 if (!already_seen->insert(file).second) { in GetTransitiveDependencies() [all …]
|
D | command_line_interface.h | 272 set<const FileDescriptor*>* already_seen,
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | ssa_rewrite_pass.cpp | 438 std::unordered_map<uint32_t, uint32_t> already_seen; in ApplyReplacements() local 441 if (already_seen.count(pred_label) == 0) { in ApplyReplacements() 446 already_seen[pred_label] = op_val_id; in ApplyReplacements() 451 assert(already_seen[pred_label] == op_val_id && in ApplyReplacements()
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_message.cc | 120 hash_set<const Descriptor*>* already_seen) { in HasRequiredFields() argument 121 if (already_seen->count(type) > 0) { in HasRequiredFields() 127 already_seen->insert(type); in HasRequiredFields() 141 if (HasRequiredFields(field->message_type(), options, already_seen)) { in HasRequiredFields() 151 hash_set<const Descriptor*> already_seen; in HasRequiredFields() local 152 return HasRequiredFields(type, options, &already_seen); in HasRequiredFields()
|