/external/llvm/include/llvm/ADT/ |
D | PostOrderIterator.h | 53 template<class SetType, bool External> 55 SetType Visited; 69 template<class SetType> 70 class po_iterator_storage<SetType, true> { 71 SetType &Visited; 73 po_iterator_storage(SetType &VSet) : Visited(VSet) {} in po_iterator_storage() 88 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>, 93 public po_iterator_storage<SetType, ExtStorage> { 120 inline po_iterator(NodeType *BB, SetType &S) : in po_iterator() 121 po_iterator_storage<SetType, ExtStorage>(S) { in po_iterator() [all …]
|
D | DepthFirstIterator.h | 46 template<class SetType, bool External> // Non-external set 49 SetType Visited; 52 template<class SetType> 53 class df_iterator_storage<SetType, true> { 55 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage() 57 SetType &Visited; 63 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>, 67 public df_iterator_storage<SetType, ExtStorage> { 88 inline df_iterator(NodeType *Node, SetType &S) in df_iterator() 89 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator() [all …]
|
/external/llvm/lib/MC/ |
D | MCELFStreamer.cpp | 173 MCELF::SetType(SD, ELF::STT_TLS); in EmitLabel() 283 MCELF::SetType(SD, ELF::STT_FUNC); in EmitSymbolAttribute() 287 MCELF::SetType(SD, ELF::STT_GNU_IFUNC); in EmitSymbolAttribute() 291 MCELF::SetType(SD, ELF::STT_OBJECT); in EmitSymbolAttribute() 295 MCELF::SetType(SD, ELF::STT_TLS); in EmitSymbolAttribute() 299 MCELF::SetType(SD, ELF::STT_COMMON); in EmitSymbolAttribute() 303 MCELF::SetType(SD, ELF::STT_NOTYPE); in EmitSymbolAttribute() 329 MCELF::SetType(SD, ELF::STT_OBJECT); in EmitCommonSymbol() 450 MCELF::SetType(SD, ELF::STT_TLS); in fixSymbolsInTLSFixups()
|
D | MCELF.h | 27 static void SetType(MCSymbolData &SD, unsigned Type);
|
D | MCELF.cpp | 36 void MCELF::SetType(MCSymbolData &SD, unsigned Type) { in SetType() function in llvm::MCELF
|
/external/openfst/src/include/fst/ |
D | add-on.h | 151 using FstImpl<Arc>::SetType; 158 SetType(type); in fst_() 167 SetType(type); in fst_() 175 SetType(impl.Type()); in AddOnImpl() 285 SetType(type); in AddOnImpl()
|
D | complement.h | 50 using FstImpl<A>::SetType; 64 SetType("complement"); in ComplementFstImpl() 73 SetType("complement"); in ComplementFstImpl()
|
D | rational.h | 54 using FstImpl<A>::SetType; 69 SetType("rational"); in RationalFstImpl() 79 SetType("rational"); in RationalFstImpl()
|
D | relabel.h | 188 using FstImpl<A>::SetType; 216 SetType("relabel"); in RelabelFstImpl() 243 SetType("relabel"); in RelabelFstImpl() 279 SetType("relabel"); in RelabelFstImpl()
|
D | synchronize.h | 51 using FstImpl<A>::SetType; 87 SetType("synchronize"); in SynchronizeFstImpl() 98 SetType("synchronize"); in SynchronizeFstImpl()
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | stunserver.cc | 88 response.SetType(STUN_BINDING_RESPONSE); in OnBindingRequest() 140 err_msg.SetType(GetStunErrorResponseType(msg.type())); in SendErrorResponse()
|
D | stun.h | 127 void SetType(StunMessageType type) { type_ = type; } in SetType() function 310 void SetType(int index, uint16 value);
|
D | relayserver.cc | 77 err_msg.SetType(GetStunErrorResponseType(msg.type())); in SendStunError() 436 response.SetType(STUN_ALLOCATE_RESPONSE); in HandleStunAllocate() 515 response.SetType(STUN_SEND_RESPONSE); in HandleStunSend() 623 msg.SetType(STUN_DATA_INDICATION); in Send()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTreeAdaptor.cs | 90 SetType(t, type); in DupNode() 104 SetType(t, type); in DupNode() 289 public virtual void SetType( object t, int type ) in SetType() method in Antlr.Runtime.Tree.BaseTreeAdaptor
|
D | ITreeAdaptor.cs | 261 void SetType( object t, int type ); in SetType() method
|
/external/chromium/chrome/browser/autofill/ |
D | form_field.cc | 294 addresses[0]->SetType(addresses[0]->FindType()); in FormFieldSet() 302 addresses[0]->SetType(reversed ? kShippingAddress : kBillingAddress); in FormFieldSet() 303 addresses[1]->SetType(reversed ? kBillingAddress : kShippingAddress); in FormFieldSet()
|
D | address_field.h | 30 void SetType(AddressType address_type) { type_ = address_type; } in SetType() function
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | arcsort.h | 73 using FstImpl<A>::SetType; 93 SetType("arcsort"); in ArcSortFstImpl() 102 SetType("arcsort"); in ArcSortFstImpl()
|
D | const-fst.h | 35 using FstImpl<A>::SetType; 45 SetType("const"); in ConstFstImpl() 119 SetType("const"); in ConstFstImpl()
|
D | complement.h | 44 using FstImpl<A>::SetType; 58 SetType("complement"); in ComplementFstImpl()
|
D | relabel.h | 150 using FstImpl<A>::SetType; 172 SetType("relabel"); in RelabelFstImpl() 197 SetType("relabel"); in RelabelFstImpl()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 168 public virtual void SetType(object t, int type) { in SetType() method in Antlr.Runtime.Debug.DebugTreeAdaptor 169 adaptor.SetType(t, type); in SetType()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 219 public virtual void SetType( object t, int type ) in SetType() method in Antlr.Runtime.Debug.DebugTreeAdaptor 221 adaptor.SetType( t, type ); in SetType()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | ITreeAdaptor.cs | 241 void SetType(object t, int type); in SetType() method
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
D | ITreeAdaptor`1.cs | 229 void SetType(T t, int type); in SetType() method
|