Searched defs:Next (Results 151 - 175 of 315) sorted by path

1234567891011>>

/external/clang/test/ASTMerge/Inputs/
H A Dstruct2.c47 struct ListNode *Next; member in struct:ListNode
/external/clang/test/CXX/class.access/class.friend/
H A Dp1.cpp130 X *Next; member in class:test2::ilist_node
131 X *getNext() { return Next; } // expected-note {{declared private here}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-bind.cpp140 typedef get_impl<I-1, tuple<Values...> > Next; typedef in class:get_impl
142 static RJ get(tuple<Head, Values...>& t) { return Next::get(t.tail()); }
143 static PJ get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); }
H A Dexample-tuple.cpp183 typedef get_impl<I-1, tuple<Values...> > Next; typedef in class:get_impl
185 static RJ get(tuple<Head, Values...>& t) { return Next::get(t.tail()); }
186 static PJ get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); }
/external/clang/test/CodeGen/
H A D2002-07-14-MiscListTests.c19 struct list *Next; member in struct:list
43 L = &(*L)->Next;
46 (*L)->Next = 0;
53 return FindData(L->Next, Data);
H A D2002-08-19-RecursiveLocals.c7 struct list *Next; member in struct:list
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_linux.cc160 bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset, function in class:__sanitizer::MemoryMappingLayout
251 Next(&cur_beg, &cur_end, &cur_offset, module_name.data(),
H A Dsanitizer_procmaps_mac.cc67 // Next and NextSegmentLoad were inspired by base/sysinfo.cc in
105 bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset, function in class:__sanitizer::MemoryMappingLayout
166 Next(&cur_beg, &cur_end, 0, module_name.data(),
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libnfc-nxp/src/
H A DphFriNfc_NdefReg.h223 struct phFriNfc_NdefReg_Cb *Next; member in struct:phFriNfc_NdefReg_Cb
/external/libvpx/libvpx/test/
H A Ddecode_test_driver.h29 const vpx_image_t *Next() { function in class:libvpx_test::DxDataIterator
H A Dencode_test_driver.h55 const vpx_codec_cx_pkt_t *Next() { function in class:libvpx_test::CxDataIterator
H A Di420_video_source.h62 virtual void Next() { function in class:libvpx_test::I420VideoSource
H A Divf_video_source.h70 virtual void Next() { function in class:libvpx_test::IVFVideoSource
H A Dresize_test.cc108 virtual void Next() { function in class:__anon24791::ResizingVideoSource
H A Dvideo_source.h63 virtual void Next() = 0;
98 virtual void Next() { function in class:libvpx_test::DummyVideoSource
183 virtual void Next() = 0;
H A Dwebm_video_source.h131 virtual void Next() { function in class:libvpx_test::WebMVideoSource
H A Dy4m_video_source.h53 Next();
59 virtual void Next() { function in class:libvpx_test::Y4mVideoSource
/external/lldb/tools/lldb-perf/lib/
H A DXcode.cpp125 Xcode::Next (SBThread thread) function in class:Xcode
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c97 cty Next = LLVMGetNext##cname(Kid); \
98 if (Next) \
99 return alloc_variant(1, Next); \
932 LLVMUseRef Next; local
933 if ((Next = LLVMGetNextUse(U))) {
935 Field(Option, 0) = (value) Next;
/external/llvm/include/llvm/ADT/
H A DDepthFirstIterator.h114 NodeType *Next = *It++; local
116 if (Next && !this->Visited.count(Next)) {
118 this->Visited.insert(Next);
119 VisitStack.push_back(std::make_pair(PointerIntTy(Next, 0),
120 GT::child_begin(Next)));
H A DEquivalenceClasses.h60 /// value itself, which provides the ordering that the set queries. Next, it
70 mutable const ECValue *Leader, *Next; member in class:llvm::EquivalenceClasses::ECValue
72 // ECValue ctor - Start out with EndOfList pointing to this node, Next is
75 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
90 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader());
93 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1),
101 bool isLeader() const { return (intptr_t)Next & 1; }
105 return (ECValue*)((intptr_t)Next & ~(intptr_t)1);
232 L2LV.Next = L2LV.getNext();
H A DSparseMultiSet.h85 /// circular in Prev indices, and INVALID-terminated in Next indices. This
94 unsigned Next; member in struct:llvm::SparseMultiSet::SMSNode
96 SMSNode(ValueT D, unsigned P, unsigned N) : Data(D), Prev(P), Next(N) { }
100 return Next == INVALID;
157 unsigned addValue(const ValueT& V, unsigned Prev, unsigned Next) { argument
159 Dense.push_back(SMSNode(V, Prev, Next));
165 unsigned NextFree = Dense[Idx].Next;
168 Dense[Idx] = SMSNode(V, Prev, Next);
177 Dense[Idx].Next = FreelistIdx;
241 unsigned Next() cons function in class:llvm::SparseMultiSet::iterator_base
[all...]

Completed in 5797 milliseconds

1234567891011>>