Searched defs:Tail (Results 1 - 25 of 27) sorted by relevance

12

/external/marisa-trie/lib/marisa/
H A Dtail.h9 class Tail { class in namespace:marisa
11 Tail();
54 void swap(Tail *rhs);
66 Tail(const Tail &);
67 Tail &operator=(const Tail &);
H A Dtail.cc9 Tail::Tail() : buf_() {} function in class:marisa::Tail
11 void Tail::build(const Vector<String> &keys,
30 void Tail::mmap(Mapper *mapper, const char *filename,
41 void Tail::map(const void *ptr, std::size_t size) {
46 void Tail::map(Mapper &mapper) {
47 Tail temp;
52 void Tail::load(const char *filename, long offset, int whence) {
58 void Tail::fread(::FILE *file) {
63 void Tail
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dtail.h9 class Tail { class in namespace:marisa_alpha
11 Tail();
55 void swap(Tail *rhs);
67 Tail(const Tail &);
68 Tail &operator=(const Tail &);
H A Dtail.cc9 Tail::Tail() : buf_() {} function in class:marisa_alpha::Tail
11 void Tail::build(const Vector<String> &keys,
30 void Tail::mmap(Mapper *mapper, const char *filename,
41 void Tail::map(const void *ptr, std::size_t size) {
46 void Tail::map(Mapper &mapper) {
47 Tail temp;
52 void Tail::load(const char *filename, long offset, int whence) {
58 void Tail::fread(::FILE *file) {
63 void Tail
[all...]
/external/mdnsresponder/mDNSShared/
H A DGenLinkedList.h28 *Tail; member in struct:GenLinkedList
48 *Tail; member in struct:GenDoubleLinkedList
70 Tail; member in struct:GenLinkedOffsetList
/external/clang/lib/Format/
H A DEncoding.h83 StringRef Tail = Text; local
85 StringRef::size_type TabPos = Tail.find('\t');
87 return TotalWidth + columnWidth(Tail, Encoding);
88 TotalWidth += columnWidth(Tail.substr(0, TabPos), Encoding);
90 Tail = Tail.substr(TabPos + 1);
/external/clang/lib/Parse/
H A DParseOpenMP.cpp740 ExprResult Tail = local
742 if (Tail.isUsable())
743 TailExpr = Tail.get();
/external/llvm/include/llvm/ADT/
H A DImmutableList.h29 const ImmutableListImpl* Tail; member in class:llvm::ImmutableListImpl
32 : Head(head), Tail(tail) {}
41 const ImmutableListImpl* getTail() const { return Tail; }
50 Profile(ID, Head, Tail);
166 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail) { argument
171 const ListTy* TailImpl = Tail.getInternalPointer();
/external/llvm/include/llvm/Support/
H A DRegistry.h78 static node *Head, *Tail; member in class:llvm::Registry
94 if (Tail)
95 Tail->Next = this;
98 Tail = this;
222 typename Registry<T,U>::node *Registry<T,U>::Tail; member in class:llvm::Registry
/external/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp49 Thumb2InstrInfo::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, argument
51 MachineBasicBlock *MBB = Tail->getParent();
54 TargetInstrInfo::ReplaceTailWithBranchTo(Tail, NewDest);
58 // If the first instruction of Tail is predicated, we may have to update
61 ARMCC::CondCodes CC = getInstrPredicate(Tail, PredReg);
62 MachineBasicBlock::iterator MBBI = Tail;
68 TargetInstrInfo::ReplaceTailWithBranchTo(Tail, NewDest);
/external/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp91 Matcher *Tail = MFR->takeNext(); local
96 EmitNode->setNext(Tail);
170 Matcher *Tail = CheckOpcode->takeNext(); local
175 CheckType->setNext(Tail);
/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h146 unsigned Tail; member in struct:llvm::MachineTraceMetrics::TraceBlockInfo
/external/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp90 // | / | Tail |
92 // Tail | | |
97 // contains compare + br.cond. Tail must be a successor of both.
113 // b.eq Tail
116 // b.eq Tail
118 // Tail:
126 // b.eq Tail
128 // Tail:
135 // between Head and Tail, just like if-converting a diamond.
137 // FIXME: Handle PHIs in Tail b
155 MachineBasicBlock *Tail; member in class:__anon10626::SSACCmpConv
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp200 BasicBlock *Tail = Succ0->getTerminator()->getSuccessor(0); local
201 return Tail;
226 BasicBlock *Tail = Succ0->getTerminator()->getSuccessor(0);
228 if (Succ1->getTerminator()->getSuccessor(0) != Tail)
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp364 // Tail is the offset of the first bit off the end of the current run. It's
367 uint64_t StartBitOffset, Tail = 0; local
379 if (Run == FieldEnd || BitOffset >= Tail) {
382 Tail = StartBitOffset + DataLayout.getTypeAllocSizeInBits(Type);
405 Tail = StartBitOffset + Field->getBitWidthValue(Context);
412 Tail == getFieldBitOffset(*Field)) {
413 Tail += Field->getBitWidthValue(Context);
418 llvm::Type *Type = getIntNType(Tail - StartBitOffset);
532 CharUnits Tail = getSize(Prior->Data); local
539 if (Member->Offset < Tail) {
[all...]
/external/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp75 // Tail Tail
78 // Head block, and phis in the Tail block are converted to select instructions.
91 MachineBasicBlock *Tail; member in class:__anon10409::SSAIfConv
100 /// equal to Tail.
101 bool isTriangle() const { return TBB == Tail || FBB == Tail; }
103 /// Returns the Tail predecessor for the True side.
104 MachineBasicBlock *getTPred() const { return TBB == Tail ? Head : TBB; }
106 /// Returns the Tail predecesso
[all...]
H A DTargetInstrInfo.cpp102 TargetInstrInfo::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, argument
104 MachineBasicBlock *MBB = Tail->getParent();
111 MBB->erase(Tail, MBB->end());
116 Tail->getDebugLoc());
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp686 /// Tail
692 /// Tail
695 /// UnreachableInst, otherwise it branches to Tail.
704 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore); local
707 BasicBlock *ThenBlock = BasicBlock::Create(C, "", Head->getParent(), Tail);
712 CheckTerm = BranchInst::Create(Tail, ThenBlock);
715 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cond);
724 DomTreeNode *NewNode = DT->addNewBlock(Tail, Head);
741 /// Tail
749 /// Tail
755 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore); local
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-type-util.h115 // Head for the first type in the list, and Tail for the rest of the
126 typedef Types0 Tail; typedef in struct:testing::internal::Types1
131 typedef Types1<T2> Tail; typedef in struct:testing::internal::Types2
137 typedef Types2<T2, T3> Tail; typedef in struct:testing::internal::Types3
143 typedef Types3<T2, T3, T4> Tail; typedef in struct:testing::internal::Types4
149 typedef Types4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Types5
156 typedef Types5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Types6
163 typedef Types6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Types7
170 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Types8
177 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Types9
184 typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Types10
192 typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Types11
200 typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Types12
208 typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Types13
216 typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail; typedef in struct:testing::internal::Types14
225 T15> Tail; typedef in struct:testing::internal::Types15
235 T16> Tail; typedef in struct:testing::internal::Types16
245 T16, T17> Tail; typedef in struct:testing::internal::Types17
255 T16, T17, T18> Tail; typedef in struct:testing::internal::Types18
265 T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Types19
275 T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Types20
286 T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Types21
297 T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Types22
308 T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Types23
319 T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Types24
330 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Types25
342 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Types26
354 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Types27
366 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail; typedef in struct:testing::internal::Types28
379 T29> Tail; typedef in struct:testing::internal::Types29
392 T30> Tail; typedef in struct:testing::internal::Types30
406 T30, T31> Tail; typedef in struct:testing::internal::Types31
420 T30, T31, T32> Tail; typedef in struct:testing::internal::Types32
434 T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Types33
448 T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Types34
462 T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Types35
477 T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Types36
492 T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Types37
507 T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Types38
522 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Types39
537 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Types40
553 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Types41
569 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail; typedef in struct:testing::internal::Types42
586 T43> Tail; typedef in struct:testing::internal::Types43
603 T44> Tail; typedef in struct:testing::internal::Types44
620 T44, T45> Tail; typedef in struct:testing::internal::Types45
638 T44, T45, T46> Tail; typedef in struct:testing::internal::Types46
656 T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Types47
674 T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Types48
692 T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Types49
710 T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Types50
1666 typedef Templates0 Tail; typedef in struct:testing::internal::Templates1
1671 typedef Templates1<T2> Tail; typedef in struct:testing::internal::Templates2
1677 typedef Templates2<T2, T3> Tail; typedef in struct:testing::internal::Templates3
1684 typedef Templates3<T2, T3, T4> Tail; typedef in struct:testing::internal::Templates4
1691 typedef Templates4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Templates5
1698 typedef Templates5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Templates6
1706 typedef Templates6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Templates7
1714 typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Templates8
1722 typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Templates9
1731 typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Templates10
1740 typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Templates11
1749 typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Templates12
1759 typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Templates13
1770 T14> Tail; typedef in struct:testing::internal::Templates14
1781 T15> Tail; typedef in struct:testing::internal::Templates15
1793 T15, T16> Tail; typedef in struct:testing::internal::Templates16
1805 T15, T16, T17> Tail; typedef in struct:testing::internal::Templates17
1817 T15, T16, T17, T18> Tail; typedef in struct:testing::internal::Templates18
1830 T15, T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Templates19
1843 T15, T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Templates20
1856 T15, T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Templates21
1870 T15, T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Templates22
1884 T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Templates23
1898 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Templates24
1913 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Templates25
1928 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Templates26
1943 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Templates27
1960 T28> Tail; typedef in struct:testing::internal::Templates28
1977 T29> Tail; typedef in struct:testing::internal::Templates29
1994 T29, T30> Tail; typedef in struct:testing::internal::Templates30
2012 T29, T30, T31> Tail; typedef in struct:testing::internal::Templates31
2030 T29, T30, T31, T32> Tail; typedef in struct:testing::internal::Templates32
2048 T29, T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Templates33
2067 T29, T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Templates34
2086 T29, T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Templates35
2105 T29, T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Templates36
2125 T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Templates37
2145 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Templates38
2165 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Templates39
2186 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Templates40
2207 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Templates41
2229 T42> Tail; typedef in struct:testing::internal::Templates42
2252 T43> Tail; typedef in struct:testing::internal::Templates43
2275 T43, T44> Tail; typedef in struct:testing::internal::Templates44
2298 T43, T44, T45> Tail; typedef in struct:testing::internal::Templates45
2322 T43, T44, T45, T46> Tail; typedef in struct:testing::internal::Templates46
2346 T43, T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Templates47
2370 T43, T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Templates48
2395 T43, T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Templates49
2420 T43, T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Templates50
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-type-util.h114 // Head for the first type in the list, and Tail for the rest of the
125 typedef Types0 Tail; typedef in struct:testing::internal::Types1
130 typedef Types1<T2> Tail; typedef in struct:testing::internal::Types2
136 typedef Types2<T2, T3> Tail; typedef in struct:testing::internal::Types3
142 typedef Types3<T2, T3, T4> Tail; typedef in struct:testing::internal::Types4
148 typedef Types4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Types5
155 typedef Types5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Types6
162 typedef Types6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Types7
169 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Types8
176 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Types9
183 typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Types10
191 typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Types11
199 typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Types12
207 typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Types13
215 typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail; typedef in struct:testing::internal::Types14
224 T15> Tail; typedef in struct:testing::internal::Types15
234 T16> Tail; typedef in struct:testing::internal::Types16
244 T16, T17> Tail; typedef in struct:testing::internal::Types17
254 T16, T17, T18> Tail; typedef in struct:testing::internal::Types18
264 T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Types19
274 T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Types20
285 T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Types21
296 T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Types22
307 T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Types23
318 T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Types24
329 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Types25
341 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Types26
353 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Types27
365 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail; typedef in struct:testing::internal::Types28
378 T29> Tail; typedef in struct:testing::internal::Types29
391 T30> Tail; typedef in struct:testing::internal::Types30
405 T30, T31> Tail; typedef in struct:testing::internal::Types31
419 T30, T31, T32> Tail; typedef in struct:testing::internal::Types32
433 T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Types33
447 T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Types34
461 T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Types35
476 T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Types36
491 T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Types37
506 T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Types38
521 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Types39
536 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Types40
552 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Types41
568 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail; typedef in struct:testing::internal::Types42
585 T43> Tail; typedef in struct:testing::internal::Types43
602 T44> Tail; typedef in struct:testing::internal::Types44
619 T44, T45> Tail; typedef in struct:testing::internal::Types45
637 T44, T45, T46> Tail; typedef in struct:testing::internal::Types46
655 T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Types47
673 T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Types48
691 T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Types49
709 T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Types50
1665 typedef Templates0 Tail; typedef in struct:testing::internal::Templates1
1670 typedef Templates1<T2> Tail; typedef in struct:testing::internal::Templates2
1676 typedef Templates2<T2, T3> Tail; typedef in struct:testing::internal::Templates3
1683 typedef Templates3<T2, T3, T4> Tail; typedef in struct:testing::internal::Templates4
1690 typedef Templates4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Templates5
1697 typedef Templates5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Templates6
1705 typedef Templates6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Templates7
1713 typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Templates8
1721 typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Templates9
1730 typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Templates10
1739 typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Templates11
1748 typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Templates12
1758 typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Templates13
1769 T14> Tail; typedef in struct:testing::internal::Templates14
1780 T15> Tail; typedef in struct:testing::internal::Templates15
1792 T15, T16> Tail; typedef in struct:testing::internal::Templates16
1804 T15, T16, T17> Tail; typedef in struct:testing::internal::Templates17
1816 T15, T16, T17, T18> Tail; typedef in struct:testing::internal::Templates18
1829 T15, T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Templates19
1842 T15, T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Templates20
1855 T15, T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Templates21
1869 T15, T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Templates22
1883 T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Templates23
1897 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Templates24
1912 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Templates25
1927 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Templates26
1942 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Templates27
1959 T28> Tail; typedef in struct:testing::internal::Templates28
1976 T29> Tail; typedef in struct:testing::internal::Templates29
1993 T29, T30> Tail; typedef in struct:testing::internal::Templates30
2011 T29, T30, T31> Tail; typedef in struct:testing::internal::Templates31
2029 T29, T30, T31, T32> Tail; typedef in struct:testing::internal::Templates32
2047 T29, T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Templates33
2066 T29, T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Templates34
2085 T29, T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Templates35
2104 T29, T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Templates36
2124 T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Templates37
2144 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Templates38
2164 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Templates39
2185 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Templates40
2206 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Templates41
2228 T42> Tail; typedef in struct:testing::internal::Templates42
2251 T43> Tail; typedef in struct:testing::internal::Templates43
2274 T43, T44> Tail; typedef in struct:testing::internal::Templates44
2297 T43, T44, T45> Tail; typedef in struct:testing::internal::Templates45
2321 T43, T44, T45, T46> Tail; typedef in struct:testing::internal::Templates46
2345 T43, T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Templates47
2369 T43, T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Templates48
2394 T43, T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Templates49
2419 T43, T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Templates50
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-type-util.h115 // Head for the first type in the list, and Tail for the rest of the
126 typedef Types0 Tail; typedef in struct:testing::internal::Types1
131 typedef Types1<T2> Tail; typedef in struct:testing::internal::Types2
137 typedef Types2<T2, T3> Tail; typedef in struct:testing::internal::Types3
143 typedef Types3<T2, T3, T4> Tail; typedef in struct:testing::internal::Types4
149 typedef Types4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Types5
156 typedef Types5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Types6
163 typedef Types6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Types7
170 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Types8
177 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Types9
184 typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Types10
192 typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Types11
200 typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Types12
208 typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Types13
216 typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail; typedef in struct:testing::internal::Types14
225 T15> Tail; typedef in struct:testing::internal::Types15
235 T16> Tail; typedef in struct:testing::internal::Types16
245 T16, T17> Tail; typedef in struct:testing::internal::Types17
255 T16, T17, T18> Tail; typedef in struct:testing::internal::Types18
265 T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Types19
275 T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Types20
286 T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Types21
297 T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Types22
308 T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Types23
319 T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Types24
330 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Types25
342 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Types26
354 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Types27
366 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail; typedef in struct:testing::internal::Types28
379 T29> Tail; typedef in struct:testing::internal::Types29
392 T30> Tail; typedef in struct:testing::internal::Types30
406 T30, T31> Tail; typedef in struct:testing::internal::Types31
420 T30, T31, T32> Tail; typedef in struct:testing::internal::Types32
434 T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Types33
448 T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Types34
462 T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Types35
477 T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Types36
492 T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Types37
507 T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Types38
522 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Types39
537 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Types40
553 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Types41
569 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail; typedef in struct:testing::internal::Types42
586 T43> Tail; typedef in struct:testing::internal::Types43
603 T44> Tail; typedef in struct:testing::internal::Types44
620 T44, T45> Tail; typedef in struct:testing::internal::Types45
638 T44, T45, T46> Tail; typedef in struct:testing::internal::Types46
656 T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Types47
674 T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Types48
692 T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Types49
710 T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Types50
1666 typedef Templates0 Tail; typedef in struct:testing::internal::Templates1
1671 typedef Templates1<T2> Tail; typedef in struct:testing::internal::Templates2
1677 typedef Templates2<T2, T3> Tail; typedef in struct:testing::internal::Templates3
1684 typedef Templates3<T2, T3, T4> Tail; typedef in struct:testing::internal::Templates4
1691 typedef Templates4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Templates5
1698 typedef Templates5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Templates6
1706 typedef Templates6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Templates7
1714 typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Templates8
1722 typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Templates9
1731 typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Templates10
1740 typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Templates11
1749 typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Templates12
1759 typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Templates13
1770 T14> Tail; typedef in struct:testing::internal::Templates14
1781 T15> Tail; typedef in struct:testing::internal::Templates15
1793 T15, T16> Tail; typedef in struct:testing::internal::Templates16
1805 T15, T16, T17> Tail; typedef in struct:testing::internal::Templates17
1817 T15, T16, T17, T18> Tail; typedef in struct:testing::internal::Templates18
1830 T15, T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Templates19
1843 T15, T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Templates20
1856 T15, T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Templates21
1870 T15, T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Templates22
1884 T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Templates23
1898 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Templates24
1913 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Templates25
1928 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Templates26
1943 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Templates27
1960 T28> Tail; typedef in struct:testing::internal::Templates28
1977 T29> Tail; typedef in struct:testing::internal::Templates29
1994 T29, T30> Tail; typedef in struct:testing::internal::Templates30
2012 T29, T30, T31> Tail; typedef in struct:testing::internal::Templates31
2030 T29, T30, T31, T32> Tail; typedef in struct:testing::internal::Templates32
2048 T29, T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Templates33
2067 T29, T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Templates34
2086 T29, T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Templates35
2105 T29, T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Templates36
2125 T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Templates37
2145 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Templates38
2165 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Templates39
2186 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Templates40
2207 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Templates41
2229 T42> Tail; typedef in struct:testing::internal::Templates42
2252 T43> Tail; typedef in struct:testing::internal::Templates43
2275 T43, T44> Tail; typedef in struct:testing::internal::Templates44
2298 T43, T44, T45> Tail; typedef in struct:testing::internal::Templates45
2322 T43, T44, T45, T46> Tail; typedef in struct:testing::internal::Templates46
2346 T43, T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Templates47
2370 T43, T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Templates48
2395 T43, T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Templates49
2420 T43, T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Templates50
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-type-util.h115 // Head for the first type in the list, and Tail for the rest of the
126 typedef Types0 Tail; typedef in struct:testing::internal::Types1
131 typedef Types1<T2> Tail; typedef in struct:testing::internal::Types2
137 typedef Types2<T2, T3> Tail; typedef in struct:testing::internal::Types3
143 typedef Types3<T2, T3, T4> Tail; typedef in struct:testing::internal::Types4
149 typedef Types4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Types5
156 typedef Types5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Types6
163 typedef Types6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Types7
170 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Types8
177 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Types9
184 typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Types10
192 typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Types11
200 typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Types12
208 typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Types13
216 typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail; typedef in struct:testing::internal::Types14
225 T15> Tail; typedef in struct:testing::internal::Types15
235 T16> Tail; typedef in struct:testing::internal::Types16
245 T16, T17> Tail; typedef in struct:testing::internal::Types17
255 T16, T17, T18> Tail; typedef in struct:testing::internal::Types18
265 T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Types19
275 T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Types20
286 T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Types21
297 T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Types22
308 T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Types23
319 T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Types24
330 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Types25
342 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Types26
354 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Types27
366 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail; typedef in struct:testing::internal::Types28
379 T29> Tail; typedef in struct:testing::internal::Types29
392 T30> Tail; typedef in struct:testing::internal::Types30
406 T30, T31> Tail; typedef in struct:testing::internal::Types31
420 T30, T31, T32> Tail; typedef in struct:testing::internal::Types32
434 T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Types33
448 T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Types34
462 T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Types35
477 T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Types36
492 T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Types37
507 T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Types38
522 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Types39
537 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Types40
553 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Types41
569 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail; typedef in struct:testing::internal::Types42
586 T43> Tail; typedef in struct:testing::internal::Types43
603 T44> Tail; typedef in struct:testing::internal::Types44
620 T44, T45> Tail; typedef in struct:testing::internal::Types45
638 T44, T45, T46> Tail; typedef in struct:testing::internal::Types46
656 T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Types47
674 T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Types48
692 T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Types49
710 T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Types50
1666 typedef Templates0 Tail; typedef in struct:testing::internal::Templates1
1671 typedef Templates1<T2> Tail; typedef in struct:testing::internal::Templates2
1677 typedef Templates2<T2, T3> Tail; typedef in struct:testing::internal::Templates3
1684 typedef Templates3<T2, T3, T4> Tail; typedef in struct:testing::internal::Templates4
1691 typedef Templates4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Templates5
1698 typedef Templates5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Templates6
1706 typedef Templates6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Templates7
1714 typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Templates8
1722 typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Templates9
1731 typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Templates10
1740 typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Templates11
1749 typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Templates12
1759 typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Templates13
1770 T14> Tail; typedef in struct:testing::internal::Templates14
1781 T15> Tail; typedef in struct:testing::internal::Templates15
1793 T15, T16> Tail; typedef in struct:testing::internal::Templates16
1805 T15, T16, T17> Tail; typedef in struct:testing::internal::Templates17
1817 T15, T16, T17, T18> Tail; typedef in struct:testing::internal::Templates18
1830 T15, T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Templates19
1843 T15, T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Templates20
1856 T15, T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Templates21
1870 T15, T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Templates22
1884 T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Templates23
1898 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Templates24
1913 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Templates25
1928 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Templates26
1943 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Templates27
1960 T28> Tail; typedef in struct:testing::internal::Templates28
1977 T29> Tail; typedef in struct:testing::internal::Templates29
1994 T29, T30> Tail; typedef in struct:testing::internal::Templates30
2012 T29, T30, T31> Tail; typedef in struct:testing::internal::Templates31
2030 T29, T30, T31, T32> Tail; typedef in struct:testing::internal::Templates32
2048 T29, T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Templates33
2067 T29, T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Templates34
2086 T29, T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Templates35
2105 T29, T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Templates36
2125 T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Templates37
2145 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Templates38
2165 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Templates39
2186 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Templates40
2207 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Templates41
2229 T42> Tail; typedef in struct:testing::internal::Templates42
2252 T43> Tail; typedef in struct:testing::internal::Templates43
2275 T43, T44> Tail; typedef in struct:testing::internal::Templates44
2298 T43, T44, T45> Tail; typedef in struct:testing::internal::Templates45
2322 T43, T44, T45, T46> Tail; typedef in struct:testing::internal::Templates46
2346 T43, T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Templates47
2370 T43, T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Templates48
2395 T43, T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Templates49
2420 T43, T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Templates50
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-type-util.h106 // Head for the first type in the list, and Tail for the rest of the
117 typedef Types0 Tail; typedef in struct:testing::internal::Types1
122 typedef Types1<T2> Tail; typedef in struct:testing::internal::Types2
128 typedef Types2<T2, T3> Tail; typedef in struct:testing::internal::Types3
134 typedef Types3<T2, T3, T4> Tail; typedef in struct:testing::internal::Types4
140 typedef Types4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Types5
147 typedef Types5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Types6
154 typedef Types6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Types7
161 typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Types8
168 typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Types9
175 typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Types10
183 typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Types11
191 typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Types12
199 typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Types13
207 typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail; typedef in struct:testing::internal::Types14
216 T15> Tail; typedef in struct:testing::internal::Types15
226 T16> Tail; typedef in struct:testing::internal::Types16
236 T16, T17> Tail; typedef in struct:testing::internal::Types17
246 T16, T17, T18> Tail; typedef in struct:testing::internal::Types18
256 T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Types19
266 T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Types20
277 T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Types21
288 T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Types22
299 T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Types23
310 T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Types24
321 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Types25
333 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Types26
345 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Types27
357 T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail; typedef in struct:testing::internal::Types28
370 T29> Tail; typedef in struct:testing::internal::Types29
383 T30> Tail; typedef in struct:testing::internal::Types30
397 T30, T31> Tail; typedef in struct:testing::internal::Types31
411 T30, T31, T32> Tail; typedef in struct:testing::internal::Types32
425 T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Types33
439 T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Types34
453 T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Types35
468 T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Types36
483 T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Types37
498 T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Types38
513 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Types39
528 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Types40
544 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Types41
560 T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail; typedef in struct:testing::internal::Types42
577 T43> Tail; typedef in struct:testing::internal::Types43
594 T44> Tail; typedef in struct:testing::internal::Types44
611 T44, T45> Tail; typedef in struct:testing::internal::Types45
629 T44, T45, T46> Tail; typedef in struct:testing::internal::Types46
647 T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Types47
665 T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Types48
683 T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Types49
701 T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Types50
1657 typedef Templates0 Tail; typedef in struct:testing::internal::Templates1
1662 typedef Templates1<T2> Tail; typedef in struct:testing::internal::Templates2
1668 typedef Templates2<T2, T3> Tail; typedef in struct:testing::internal::Templates3
1675 typedef Templates3<T2, T3, T4> Tail; typedef in struct:testing::internal::Templates4
1682 typedef Templates4<T2, T3, T4, T5> Tail; typedef in struct:testing::internal::Templates5
1689 typedef Templates5<T2, T3, T4, T5, T6> Tail; typedef in struct:testing::internal::Templates6
1697 typedef Templates6<T2, T3, T4, T5, T6, T7> Tail; typedef in struct:testing::internal::Templates7
1705 typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail; typedef in struct:testing::internal::Templates8
1713 typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail; typedef in struct:testing::internal::Templates9
1722 typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail; typedef in struct:testing::internal::Templates10
1731 typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail; typedef in struct:testing::internal::Templates11
1740 typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail; typedef in struct:testing::internal::Templates12
1750 typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail; typedef in struct:testing::internal::Templates13
1761 T14> Tail; typedef in struct:testing::internal::Templates14
1772 T15> Tail; typedef in struct:testing::internal::Templates15
1784 T15, T16> Tail; typedef in struct:testing::internal::Templates16
1796 T15, T16, T17> Tail; typedef in struct:testing::internal::Templates17
1808 T15, T16, T17, T18> Tail; typedef in struct:testing::internal::Templates18
1821 T15, T16, T17, T18, T19> Tail; typedef in struct:testing::internal::Templates19
1834 T15, T16, T17, T18, T19, T20> Tail; typedef in struct:testing::internal::Templates20
1847 T15, T16, T17, T18, T19, T20, T21> Tail; typedef in struct:testing::internal::Templates21
1861 T15, T16, T17, T18, T19, T20, T21, T22> Tail; typedef in struct:testing::internal::Templates22
1875 T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail; typedef in struct:testing::internal::Templates23
1889 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail; typedef in struct:testing::internal::Templates24
1904 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail; typedef in struct:testing::internal::Templates25
1919 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail; typedef in struct:testing::internal::Templates26
1934 T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail; typedef in struct:testing::internal::Templates27
1951 T28> Tail; typedef in struct:testing::internal::Templates28
1968 T29> Tail; typedef in struct:testing::internal::Templates29
1985 T29, T30> Tail; typedef in struct:testing::internal::Templates30
2003 T29, T30, T31> Tail; typedef in struct:testing::internal::Templates31
2021 T29, T30, T31, T32> Tail; typedef in struct:testing::internal::Templates32
2039 T29, T30, T31, T32, T33> Tail; typedef in struct:testing::internal::Templates33
2058 T29, T30, T31, T32, T33, T34> Tail; typedef in struct:testing::internal::Templates34
2077 T29, T30, T31, T32, T33, T34, T35> Tail; typedef in struct:testing::internal::Templates35
2096 T29, T30, T31, T32, T33, T34, T35, T36> Tail; typedef in struct:testing::internal::Templates36
2116 T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail; typedef in struct:testing::internal::Templates37
2136 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail; typedef in struct:testing::internal::Templates38
2156 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail; typedef in struct:testing::internal::Templates39
2177 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail; typedef in struct:testing::internal::Templates40
2198 T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail; typedef in struct:testing::internal::Templates41
2220 T42> Tail; typedef in struct:testing::internal::Templates42
2243 T43> Tail; typedef in struct:testing::internal::Templates43
2266 T43, T44> Tail; typedef in struct:testing::internal::Templates44
2289 T43, T44, T45> Tail; typedef in struct:testing::internal::Templates45
2313 T43, T44, T45, T46> Tail; typedef in struct:testing::internal::Templates46
2337 T43, T44, T45, T46, T47> Tail; typedef in struct:testing::internal::Templates47
2361 T43, T44, T45, T46, T47, T48> Tail; typedef in struct:testing::internal::Templates48
2386 T43, T44, T45, T46, T47, T48, T49> Tail; typedef in struct:testing::internal::Templates49
2411 T43, T44, T45, T46, T47, T48, T49, T50> Tail; typedef in struct:testing::internal::Templates50
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp993 BasicBlock *Tail = BI->getSuccessor(0); local
994 PHINode *Phi = PHINode::Create(DFS.ShadowTy, 2, "", Tail->begin());
998 CCS.Block = Tail;
1107 BasicBlock *Tail = Head->splitBasicBlock(Pos); local
1112 DomTreeNode *NewNode = DT.addNewBlock(Tail, Head);
1138 LastBr->setSuccessor(0, Tail);
1139 FallbackIRB.CreateBr(Tail);
1140 PHINode *Shadow = PHINode::Create(DFS.ShadowTy, 2, "", &Tail->front());
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp3426 ObjCCategoryDecl *Tail; member in class:__anon1257::ObjCCategoriesVisitor
3461 if (Tail)
3462 ASTDeclReader::setNextObjCCategory(Tail, Cat);
3465 Tail = Cat;
3476 Tail(nullptr)
3484 Tail = Cat;

Completed in 733 milliseconds

12