HomeSort by relevance Sort by last modified time
    Searched refs:SetType (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
PostOrderIterator.h 26 template<class SetType, bool External> // Non-external set
29 SetType Visited;
32 /// DFSetTraits - Allow the SetType used to record depth-first search results to
34 template<class SetType>
37 typename SetType::iterator::value_type, SetType &) {}
40 template<class SetType>
41 class po_iterator_storage<SetType, true> {
43 po_iterator_storage(SetType &VSet) : Visited(VSet) {}
45 SetType &Visited
    [all...]
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) {}
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)
89 : df_iterator_storage<SetType, ExtStorage>(S)
    [all...]
  /external/llvm/include/llvm/ADT/
PostOrderIterator.h 40 // - By providing a custom SetType class, unwanted graph nodes can be excluded
54 template<class SetType, bool External>
56 SetType Visited;
70 template<class SetType>
71 class po_iterator_storage<SetType, true> {
72 SetType &Visited;
74 po_iterator_storage(SetType &VSet) : Visited(VSet) {}
90 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
95 public po_iterator_storage<SetType, ExtStorage> {
122 po_iterator(NodeType *BB, SetType &S
    [all...]
DepthFirstIterator.h 47 template<class SetType, bool External> // Non-external set
50 SetType Visited;
53 template<class SetType>
54 class df_iterator_storage<SetType, true> {
56 df_iterator_storage(SetType &VSet) : Visited(VSet) {}
58 SetType &Visited;
63 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
67 public df_iterator_storage<SetType, ExtStorage> {
89 inline df_iterator(NodeType *Node, SetType &S)
90 : df_iterator_storage<SetType, ExtStorage>(S)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCELF.h 27 static void SetType(MCSymbolData &SD, unsigned Type);
MCELFStreamer.cpp 50 MCELF::SetType(SD, ELF::STT_TLS);
162 MCELF::SetType(SD, ELF::STT_FUNC);
166 MCELF::SetType(SD, ELF::STT_OBJECT);
170 MCELF::SetType(SD, ELF::STT_TLS);
174 MCELF::SetType(SD, ELF::STT_COMMON);
178 MCELF::SetType(SD, ELF::STT_NOTYPE);
204 MCELF::SetType(SD, ELF::STT_OBJECT);
314 MCELF::SetType(SD, ELF::STT_TLS);
MCELF.cpp 36 void MCELF::SetType(MCSymbolData &SD, unsigned Type) {
  /external/pdfium/xfa/fde/css/
cfde_cssselector.h 36 void SetType(FDE_CSSSelectorType eType) { m_eType = eType; }
cfde_cssselector.cpp 81 pFirst->SetType(FDE_CSSSelectorType::Descendant);
  /external/gptfdisk/
bsd.cc 312 guid.SetType(0xa502); break;
314 guid.SetType(0xa503); break;
316 guid.SetType(0x0700); break;
318 guid.SetType(0xa903); break;
320 guid.SetType(0xa501); break;
322 guid.SetType(0xa505); break;
324 guid.SetType(0xa903); break;
326 guid.SetType(0xa504); break;
328 guid.SetType(0xa503); break;
gptpart.h 74 void SetType(PartType t);
75 void SetType(uint16_t hex) {partitionType = hex;}
mbr.cc 63 partitions[0].SetType(UINT8_C(0xEE));
159 newPart.SetType(((uint16_t) origType) * 0x0100);
mbrpart.h 85 int SetType(uint8_t typeCode, int isExtended = 0);
  /development/testrunner/coverage/
coverage_target.py 40 def SetType(self, buildtype):
coverage_targets.py 109 target.SetType(target_element.getAttribute(self._TYPE_ATTR))
  /art/runtime/mirror/
field-inl.h 73 ret->SetType<kTransactionActive>(type.Get());
87 inline void Field::SetType(ObjPtr<mirror::Class> type) {
  /external/webrtc/webrtc/p2p/base/
stunserver.cc 62 err_msg.SetType(GetStunErrorResponseType(msg.type()));
85 response->SetType(STUN_BINDING_RESPONSE);
stunserver_unittest.cc 79 req.SetType(STUN_BINDING_REQUEST);
  /external/pdfium/xfa/fwl/
cfwl_barcode.h 55 void SetType(BC_TYPE type);
  /external/protobuf/src/google/protobuf/
unknown_field_set.cc 163 field.SetType(UnknownField::TYPE_VARINT);
172 field.SetType(UnknownField::TYPE_FIXED32);
181 field.SetType(UnknownField::TYPE_FIXED64);
190 field.SetType(UnknownField::TYPE_LENGTH_DELIMITED);
201 field.SetType(UnknownField::TYPE_GROUP);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeAdaptor.cs 241 void SetType(object t, int type);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 229 void SetType(T t, int type);
  /art/runtime/entrypoints/quick/
quick_field_entrypoints.cc 70 #define ART_GET_FIELD_FROM_CODE(Kind, PrimitiveType, RetType, SetType, \
114 SetType new_value, \
145 SetType new_value, \
201 SetType new_value, \
211 SetType new_value, \
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 90 SetType(t, type);
104 SetType(t, type);
289 public virtual void SetType( object t, int type )
ITreeAdaptor.cs 261 void SetType( object t, int type );

Completed in 396 milliseconds

1 2 3 4