Home
last modified time | relevance | path

Searched refs:SetType (Results 1 – 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DPostOrderIterator.h56 template<class SetType, bool External>
58 SetType Visited;
72 template<class SetType>
73 class po_iterator_storage<SetType, true> {
74 SetType &Visited;
77 po_iterator_storage(SetType &VSet) : Visited(VSet) {} in po_iterator_storage()
92 class SetType =
97 public po_iterator_storage<SetType, ExtStorage> {
114 po_iterator(NodeRef BB, SetType &S) in po_iterator()
115 : po_iterator_storage<SetType, ExtStorage>(S) { in po_iterator()
[all …]
DDepthFirstIterator.h49 template<class SetType, bool External> // Non-external set
52 SetType Visited;
55 template<class SetType>
56 class df_iterator_storage<SetType, true> {
58 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage()
61 SetType &Visited;
82 class SetType =
87 public df_iterator_storage<SetType, ExtStorage> {
108 inline df_iterator(NodeRef Node, SetType &S) in df_iterator()
109 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator()
[all …]
DBreadthFirstIterator.h33 template <class SetType> class bf_iterator_storage {
35 SetType Visited;
44 class SetType =
49 public bf_iterator_storage<SetType> {
/third_party/boost/boost/icl/detail/
Dset_algo.hpp65 template<class SetType>
66 inline bool within(const SetType& sub, const SetType& super) in within()
72 typename SetType::const_iterator common_lwb_, common_upb_; in within()
76 typename SetType::const_iterator sub_ = common_lwb_, super_; in within()
86 template<class SetType>
87 bool intersects(const SetType& left, const SetType& right) in intersects()
89 typename SetType::const_iterator common_lwb_right_, common_upb_right_; in intersects()
93 typename SetType::const_iterator right_ = common_lwb_right_, found_; in intersects()
112 template<class SetType>
113 inline bool lexicographical_equal(const SetType& left, const SetType& right) in lexicographical_equal()
/third_party/boost/libs/container/test/
Dset_test.hpp814 template<typename SetType>
820 SetType expected(il.begin(), il.end()); in test_set_methods_with_initializer_list_as_argument_for()
821 SetType expectedu(ilu.begin(), ilu.end()); in test_set_methods_with_initializer_list_as_argument_for()
823 SetType sil((il)); in test_set_methods_with_initializer_list_as_argument_for()
827 SetType sila(il, typename SetType::allocator_type()); in test_set_methods_with_initializer_list_as_argument_for()
831 SetType silca(il, typename SetType::key_compare(), typename SetType::allocator_type()); in test_set_methods_with_initializer_list_as_argument_for()
835 SetType sil_ordered(ordered_unique_range, ilu); in test_set_methods_with_initializer_list_as_argument_for()
839 SetType sil_assign = { 99, 100, 101, 102, 103, 104, 105 }; in test_set_methods_with_initializer_list_as_argument_for()
845 SetType sil; in test_set_methods_with_initializer_list_as_argument_for()
855 template<typename SetType, typename MultisetType>
[all …]
/third_party/gptfdisk/
Dbsd.cc312 guid.SetType(0xa502); break; in AsGPT()
314 guid.SetType(0xa503); break; in AsGPT()
316 guid.SetType(0x0700); break; in AsGPT()
318 guid.SetType(0xa903); break; in AsGPT()
320 guid.SetType(0xa501); break; in AsGPT()
322 guid.SetType(0xa505); break; in AsGPT()
324 guid.SetType(0xa903); break; in AsGPT()
326 guid.SetType(0xa504); break; in AsGPT()
328 guid.SetType(0xa503); break; in AsGPT()
Dgptpart.h73 void SetType(PartType t);
74 void SetType(uint16_t hex) {partitionType = hex;} in SetType() function
Dmbr.cc60 partitions[0].SetType(UINT8_C(0xEE)); in MakeProtectiveMBR()
156 newPart.SetType(((uint16_t) origType) * 0x0100); in AsGPT()
Dmbrpart.h84 int SetType(uint8_t typeCode, int isExtended = 0);
Dgptcl.cc532 newPart.SetType((uint8_t)(operator[](origPartNum).GetHexType() / 0x0100)); in BuildMBR()
548 newPart.SetType(0xEE); in BuildMBR()
Dgpttext.cc471 hybridPart.SetType(GetMBRTypeCode(partitions[j].GetHexType() / 256)); in MakeHybrid()
495 hybridPart.SetType(0xEE); in MakeHybrid()
Dbasicmbr.cc1047 partitions[num].SetType(type); in MakePart()
1064 allOK = partitions[num].SetType(type); in SetPartType()
1382 temp.SetType(0x0f, 1); in CreateExtended()
1643 partitions[num].SetType(hexCode); in DoMenu()
/third_party/protobuf/src/google/protobuf/
Dmap_field.h99 SetType(FieldDescriptor::CPPTYPE_INT64); in SetInt64Value()
103 SetType(FieldDescriptor::CPPTYPE_UINT64); in SetUInt64Value()
107 SetType(FieldDescriptor::CPPTYPE_INT32); in SetInt32Value()
111 SetType(FieldDescriptor::CPPTYPE_UINT32); in SetUInt32Value()
115 SetType(FieldDescriptor::CPPTYPE_BOOL); in SetBoolValue()
119 SetType(FieldDescriptor::CPPTYPE_STRING); in SetStringValue()
207 SetType(other.type()); in CopyFrom()
252 void SetType(FieldDescriptor::CppType type) { in SetType() function
687 void SetType(FieldDescriptor::CppType type) { type_ = type; }
736 key_.SetType(field->message_type()->FindFieldByName("key")->cpp_type());
[all …]
Dunknown_field_set.cc136 field.SetType(UnknownField::TYPE_VARINT); in AddVarint()
144 field.SetType(UnknownField::TYPE_FIXED32); in AddFixed32()
152 field.SetType(UnknownField::TYPE_FIXED64); in AddFixed64()
160 field.SetType(UnknownField::TYPE_LENGTH_DELIMITED); in AddLengthDelimited()
170 field.SetType(UnknownField::TYPE_GROUP); in AddGroup()
Dunknown_field_set.h284 inline void SetType(Type type);
402 inline void UnknownField::SetType(Type type) { in SetType() function
Dmap_field_inl.h155 this_iter->key_.SetType(that_iter.key_.type()); in CopyIterator()
158 this_iter->value_.SetType( in CopyIterator()
Dmap_field.cc200 map_val->SetType(val_des->cpp_type()); in AllocateMapValue()
500 map_val.SetType(val_des->cpp_type()); in SyncMapWithRepeatedFieldNoLock()
/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_mac.mm450 result.SetType(blink::WebInputEvent::Type::kChar);
468 result.SetType(mouseUp ? blink::WebInputEvent::Type::kMouseUp
473 result.SetType(mouseUp ? blink::WebInputEvent::Type::kMouseUp
478 result.SetType(mouseUp ? blink::WebInputEvent::Type::kMouseUp
498 result.SetType(blink::WebInputEvent::Type::kMouseMove);
508 result.SetType(blink::WebInputEvent::Type::kMouseLeave);
525 result.SetType(blink::WebInputEvent::Type::kMouseWheel);
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/perf/
Dcache_msg.h65 void SetType(MessageType requestType) { small_msg_.body.msg.type = requestType; } in SetType() function
Dcache_pipeline_run.h76 msg->SetType(type); in SendMessage()
Dcache_perf_run.cc317 msg.SetType(CachePerfMsg::MessageType::kInterrupt); in ~CachePerfRun()
417 msg.SetType(CachePerfMsg::MessageType::kInterrupt); in StartPipelines()
582 msg.SetType(CachePerfMsg::MessageType::kEpochStart); in Run()
/third_party/mindspore/mindspore/core/mindrt/include/actor/
Dmsg.h71 inline void SetType(Type eType) { type = eType; } in SetType() function
/third_party/mindspore/mindspore/ccsrc/debug/
Dtensor_data.h242 void SetType(unsigned int type) { ConvertMsToDbgType(type); } in SetType() function
244 void SetType(std::string type_name) { ConvertStringToDbgType(type_name); } in SetType() function
/third_party/mindspore/mindspore/ccsrc/profiler/device/ascend/
Dmemory_profiling.h61 void SetType(const std::string &type) { type_ = type; } in SetType() function
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/
Dgpu_device_address.cc160 tensor_data->SetType((unsigned int)host_type); in LoadMemToHost()

12