| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | PostOrderIterator.h | 59 SetType Visited; 73 template<class SetType> 75 SetType &Visited; 93 class SetType = 123 po_iterator(SetType &S) in po_iterator() 197 template<class T, class SetType> 198 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin() 203 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end() 208 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext() 245 ipo_ext_iterator<T, SetType> ipo_ext_begin(const T &G, SetType &S) { in ipo_ext_begin() [all …]
|
| H A D | DepthFirstIterator.h | 53 SetType Visited; 56 template<class SetType> 57 class df_iterator_storage<SetType, true> { 59 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage() 62 SetType &Visited; 83 class SetType = 88 public df_iterator_storage<SetType, ExtStorage> { 109 inline df_iterator(NodeRef Node, SetType &S) in df_iterator() 110 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator() 115 inline df_iterator(SetType &S) in df_iterator() [all …]
|
| H A D | BreadthFirstIterator.h | 34 template <class SetType> class bf_iterator_storage { 36 SetType Visited; 45 class SetType = 50 public bf_iterator_storage<SetType> {
|
| /freebsd-12.1/contrib/opencsd/decoder/source/etmv3/ |
| H A D | trc_pkt_proc_etmv3_impl.cpp | 341 m_curr_packet.SetType(ETM3_PKT_P_HDR); in processHeaderByte() 352 m_curr_packet.SetType(ETM3_PKT_A_SYNC); in processHeaderByte() 356 m_curr_packet.SetType(ETM3_PKT_CYCLE_COUNT); in processHeaderByte() 360 m_curr_packet.SetType(ETM3_PKT_I_SYNC); in processHeaderByte() 366 m_curr_packet.SetType(ETM3_PKT_TRIGGER); in processHeaderByte() 379 m_curr_packet.SetType(ETM3_PKT_OOO_DATA); in processHeaderByte() 394 m_curr_packet.SetType(ETM3_PKT_I_SYNC_CYCLE); in processHeaderByte() 441 m_curr_packet.SetType(ETM3_PKT_NORM_DATA); in processHeaderByte() 479 m_curr_packet.SetType(ETM3_PKT_IGNORE); in processHeaderByte() 484 m_curr_packet.SetType(ETM3_PKT_CONTEXT_ID); in processHeaderByte() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | Type.cpp | 734 m_type_pair.SetType(type_sp); in SetTypeSP() 740 m_type_pair.SetType(compiler_type); in SetCompilerType() 772 SetType(type_sp); in TypeImpl() 777 SetType(compiler_type); in TypeImpl() 782 SetType(type_sp, dynamic); in TypeImpl() 788 SetType(static_type, dynamic_type); in TypeImpl() 793 SetType(pair, dynamic); in TypeImpl() 797 m_static_type.SetType(type_sp); in SetType() 806 m_static_type.SetType(compiler_type); in SetType() 811 SetType(type_sp); in SetType() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 289 void SetType(CompilerType type) { in SetType() function 294 void SetType(lldb::TypeSP type) { in SetType() function 386 void SetType(const lldb::TypeSP &type_sp); 388 void SetType(const CompilerType &compiler_type); 390 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 392 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic); 394 void SetType(const TypePair &pair, const CompilerType &dynamic);
|
| H A D | Symbol.h | 147 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType() function
|
| H A D | ObjectFile.h | 624 virtual void SetType(Type type) { m_type = type; } in SetType() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 126 m_type.m_type_pair.SetType(type); in TypeNameSpecifierImpl() 133 m_type.m_type_pair.SetType(type); in TypeNameSpecifierImpl()
|
| /freebsd-12.1/contrib/opencsd/decoder/include/opencsd/ptm/ |
| H A D | trc_pkt_elem_ptm.h | 63 void SetType(const ocsd_ptm_pkt_type p_type); 137 inline void PtmTrcPacket::SetType(const ocsd_ptm_pkt_type p_type) in SetType() function
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.h | 193 using SetType = MachineValueTypeSet; member 203 SetType &getOrCreate(unsigned Mode) { in getOrCreate() 206 return Map.insert({Mode,SetType()}).first->second; in getOrCreate() 237 static void writeToStream(const SetType &S, raw_ostream &OS); 247 bool intersect(SetType &Out, const SetType &In); 324 void expandOverloads(TypeSetByHwMode::SetType &Out, 325 const TypeSetByHwMode::SetType &Legal);
|
| H A D | CodeGenDAGPatterns.cpp | 146 SetType &S = I.second; in constrain() 169 SetType &S = getOrCreate(I.first); in assign_if() 265 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect() 292 SetType Diff; in intersect() 364 TypeSetByHwMode::SetType &S = I.second; in forceArbitrary() 475 TypeSetByHwMode::SetType &B = Big.get(M); in EnforceSmallerThan() 525 TypeSetByHwMode::SetType &B = Big.get(M); in EnforceSmallerThan() 694 TypeSetByHwMode::SetType &VS = V.get(M); in EnforceSameNumElts() 695 TypeSetByHwMode::SetType &WS = W.get(M); in EnforceSameNumElts() 728 TypeSetByHwMode::SetType &AS = A.get(M); in EnforceSameSize() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | RegisterContextPOSIXProcessMonitor_mips64.cpp | 97 value_to_write.SetType(full_reg_info); in WriteRegister() 142 value.SetType(reg_info); in ReadRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_powerpc.cpp | 109 value_to_write.SetType(full_reg_info); in WriteRegister() 146 value.SetType(reg_info); in ReadRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_x86.cpp | 154 value_to_write.SetType(full_reg_info); in WriteRegister() 205 value.SetType(reg_info); in ReadRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_arm.cpp | 96 value_to_write.SetType(full_reg_info); in WriteRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_arm64.cpp | 98 value_to_write.SetType(full_reg_info); in WriteRegister()
|
| /freebsd-12.1/contrib/opencsd/decoder/include/opencsd/etmv3/ |
| H A D | trc_pkt_elem_etmv3.h | 74 void SetType(const ocsd_etmv3_pkt_type p_type); 181 inline void EtmV3TrcPacket::SetType(const ocsd_etmv3_pkt_type p_type) in SetType() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | RegisterValue.h | 84 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() function 86 RegisterValue::Type SetType(const RegisterInfo *reg_info);
|
| H A D | Event.h | 227 void SetType(uint32_t new_type) { m_type = new_type; } in SetType() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointSite.h | 233 void SetType(BreakpointSite::Type type) { m_type = type; } in SetType() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 119 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
|
| /freebsd-12.1/crypto/heimdal/lib/asn1/ |
| H A D | asn1parse.y | 201 %type <type> SetType 345 | SetType 519 SetType : kw_SET '{' /* ComponentTypeLists */ ComponentTypeList '}'
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBFunction.cpp | 196 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
|
| /freebsd-12.1/contrib/opencsd/decoder/source/ptm/ |
| H A D | trc_pkt_proc_ptm.cpp | 220 m_curr_packet.SetType(PTM_PKT_NOTSYNC); in InitProcessorState() 370 m_curr_packet.SetType(PTM_PKT_A_SYNC); in waitASync()
|