HomeSort by relevance Sort by last modified time
    Searched defs:Next (Results 26 - 50 of 371) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 124 MachineInstr *Next = I->getNextNode();
125 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
  /external/regex-re2/re2/testing/
string_generator.cc 7 // Fetch strings using a Java-like Next()/HasNext() interface.
25 // Next() will return empty string (digits_ is empty).
75 // Returns the next string in the iteration, which is the one
79 const StringPiece& StringGenerator::Next() {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mspenum.h 16 STDMETHOD(Next)(ULONG celt,T *rgelt,ULONG *pceltFetched) {
19 return BaseClass::Next(celt,rgelt,pceltFetched);
  /art/compiler/jni/quick/
calling_convention.cc 55 void ManagedRuntimeCallingConvention::Next() {
147 void JniCallingConvention::Next() {
  /art/runtime/
dex_method_iterator.h 71 GetIterator().Next();
74 GetIterator().Next();
98 void Next() {
101 // Advance to next method if we currently are looking at a class.
102 GetIterator().Next();
  /external/chromium_org/base/files/
file_enumerator_posix.cc 74 FilePath FileEnumerator::Next() {
77 // While we've exhausted the entries in the current directory, do the next
dir_reader_linux.h 49 // Move to the next entry returning false if the iteration is complete.
50 bool Next() {
  /external/chromium_org/third_party/leveldatabase/src/table/
iterator.cc 11 cleanup_.next = NULL;
17 for (Cleanup* c = cleanup_.next; c != NULL; ) {
19 Cleanup* next = c->next; local
21 c = next;
33 c->next = cleanup_.next;
34 cleanup_.next = c;
49 virtual void Next() { assert(false); }
iterator_wrapper.h 42 void Next() { assert(iter_); iter_->Next(); Update(); }
merger.cc 59 virtual void Next() {
74 child->Next();
81 current_->Next();
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
webm_video_source.h 58 virtual void Next() {
decode_test_driver.h 29 const vpx_image_t *Next() {
i420_video_source.h 62 virtual void Next() {
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_header_extension.cc 153 RTPExtensionType RtpHeaderExtensionMap::Next(RTPExtensionType type) const {
  /external/chromium_org/v8/src/
lookup.cc 14 void LookupIterator::Next() {
53 Handle<JSReceiver> next(JSReceiver::cast(holder_map_->prototype()));
61 next->map()->is_hidden_prototype()))) {
65 holder_map_ = handle(next->map());
66 maybe_holder_ = next;
  /external/chromium_org/v8/src/utils/
random-number-generator.cc 86 return static_cast<int>((max * static_cast<int64_t>(Next(31))) >> 31);
90 int rnd = Next(31);
100 return ((static_cast<int64_t>(Next(26)) << 27) + Next(27)) /
107 static_cast<uint8_t*>(buffer)[n] = static_cast<uint8_t>(Next(8));
112 int RandomNumberGenerator::Next(int bits) {
  /external/llvm/include/llvm/Support/
ArrayRecycler.h 34 FreeList *Next;
51 Bucket[Idx] = Entry->Next;
61 Entry->Next = Bucket[Idx];
88 /// Get the next larger capacity. Large capacities grow exponentially, so
ManagedStatic.h 45 mutable const ManagedStaticBase *Next;
  /external/llvm/lib/Target/R600/
SIFixSGPRLiveRanges.cpp 102 LiveRange::Segment &Next = LI.segments[i + 1];
103 Seg.end = Next.start;
SILowerI1Copies.cpp 82 MachineBasicBlock::iterator I, Next;
83 for (I = MBB.begin(); I != MBB.end(); I = Next) {
84 Next = std::next(I);
  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 55 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
72 // Mark all uses for resimplification next time round the loop.
74 Next->insert(cast<Instruction>(U));
90 // Place the list of instructions to simplify on the next loop iteration
92 std::swap(ToSimplify, Next);
93 Next->clear();
  /external/webrtc/src/system_wrappers/source/
map.cc 94 MapItem* MapWrapper::Next(MapItem* item) const
  /external/chromium_org/base/metrics/
sample_map.cc 52 for (; !iter->Done(); iter->Next()) {
71 void SampleMapIterator::Next() {
sample_vector.cc 73 iter->Next();
75 // Sample is larger than current bucket range. Try next.
129 void SampleVectorIterator::Next() {
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp.h 31 // - implement bool Next(HANDLE, T*) normally calls a
50 // Moves forward to the next object using the First and Next
51 // pointers. If either First or Next ever indicates an failure
54 bool Next() {
66 incr_ok = Traits::Next(snapshot_, &current_);
123 static bool Next(HANDLE handle, Type* t) {
147 static bool Next(HANDLE handle, Type* t) {

Completed in 757 milliseconds

12 3 4 5 6 7 8 91011>>