HomeSort by relevance Sort by last modified time
    Searched defs:Tail (Results 1 - 13 of 13) sorted by null

  /external/mdnsresponder/mDNSShared/
GenLinkedList.h 28 *Tail;
48 *Tail;
70 Tail;
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 82 Matcher *Tail = MFR->takeNext();
87 EmitNode->setNext(Tail);
162 Matcher *Tail = CheckOpcode->takeNext();
167 CheckType->setNext(Tail);
  /frameworks/native/services/sensorservice/
traits.h 32 typedef U Tail;
50 template <typename T, typename Tail>
51 struct IndexOf<TypeList<T, Tail>, T> {
55 template <typename Head, typename Tail, typename T>
56 struct IndexOf<TypeList<Head, Tail>, T> {
58 enum { temp = IndexOf<Tail, T>::value };
  /external/llvm/include/llvm/ADT/
ImmutableList.h 29 const ImmutableListImpl* Tail;
31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = 0)
32 : Head(head), Tail(tail) {}
42 const ImmutableListImpl* getTail() const { return Tail; }
51 Profile(ID, Head, Tail);
129 /// getTail - Returns the tail of the list, which is another (possibly empty)
167 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail) {
172 const ListTy* TailImpl = Tail.getInternalPointer();
  /external/llvm/include/llvm/Support/
Registry.h 74 static node *Head, *Tail;
90 if (Tail)
91 Tail->Next = this;
94 Tail = this;
213 typename Registry<T,U>::node *Registry<T,U>::Tail;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.h 137 /// The block number of the tail of the trace. (When hasValidHeight()).
138 unsigned Tail;
EarlyIfConversion.cpp 74 // Tail Tail
77 // Head block, and phis in the Tail block are converted to select instructions.
90 MachineBasicBlock *Tail;
99 /// equal to Tail.
100 bool isTriangle() const { return TBB == Tail || FBB == Tail; }
102 /// Returns the Tail predecessor for the True side.
103 MachineBasicBlock *getTPred() const { return TBB == Tail ? Head : TBB; }
105 /// Returns the Tail predecessor for the False side
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-type-util.h 110 // Head for the first type in the list, and Tail for the rest of the
121 typedef Types0 Tail;
126 typedef Types1<T2> Tail;
132 typedef Types2<T2, T3> Tail;
138 typedef Types3<T2, T3, T4> Tail;
144 typedef Types4<T2, T3, T4, T5> Tail;
151 typedef Types5<T2, T3, T4, T5, T6> Tail;
158 typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
165 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
172 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
    [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
126 typedef Types0 Tail;
131 typedef Types1<T2> Tail;
137 typedef Types2<T2, T3> Tail;
143 typedef Types3<T2, T3, T4> Tail;
149 typedef Types4<T2, T3, T4, T5> Tail;
156 typedef Types5<T2, T3, T4, T5, T6> Tail;
163 typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
170 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
177 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
126 typedef Types0 Tail;
131 typedef Types1<T2> Tail;
137 typedef Types2<T2, T3> Tail;
143 typedef Types3<T2, T3, T4> Tail;
149 typedef Types4<T2, T3, T4, T5> Tail;
156 typedef Types5<T2, T3, T4, T5, T6> Tail;
163 typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
170 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
177 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-type-util.h 106 // Head for the first type in the list, and Tail for the rest of the
117 typedef Types0 Tail;
122 typedef Types1<T2> Tail;
128 typedef Types2<T2, T3> Tail;
134 typedef Types3<T2, T3, T4> Tail;
140 typedef Types4<T2, T3, T4, T5> Tail;
147 typedef Types5<T2, T3, T4, T5, T6> Tail;
154 typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
161 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
168 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 259 // Tail
264 // Tail
268 // it is terminated with BranchInst to Tail.
272 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
275 BasicBlock *ThenBlock = BasicBlock::Create(C, "", Head->getParent(), Tail);
280 CheckTerm = BranchInst::Create(Tail, ThenBlock);
282 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cmp);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 573 milliseconds