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

1 2 3 4 5

  /external/libchrome/base/
atomic_sequence_num.h 24 inline int GetNext() {
49 inline int GetNext() {
50 return seq_.GetNext();
lazy_instance_unittest.cc 22 constructed_seq_.GetNext();
25 destructed_seq_.GetNext();
69 EXPECT_EQ(0, constructed_seq_.GetNext());
70 EXPECT_EQ(0, destructed_seq_.GetNext());
73 EXPECT_EQ(2, constructed_seq_.GetNext());
74 EXPECT_EQ(1, destructed_seq_.GetNext());
77 EXPECT_EQ(3, constructed_seq_.GetNext());
78 EXPECT_EQ(2, destructed_seq_.GetNext());
80 EXPECT_EQ(4, constructed_seq_.GetNext());
81 EXPECT_EQ(4, destructed_seq_.GetNext());
    [all...]
observer_list.h 89 ObserverType* GetNext();
149 ObserverType* ObserverListBase<ObserverType>::Iterator::GetNext() {
242 while ((obs = it_inside_observer_macro.GetNext()) != nullptr) \
sys_info_chromeos.cc 133 if (tokenizer.GetNext()) {
137 if (tokenizer.GetNext()) {
141 if (tokenizer.GetNext()) {
callback_list.h 146 CallbackType* GetNext() {
219 while ((cb = it.GetNext()) != NULL) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
atomic_sequence_num.h 43 AtomicWord GetNext() {
  /external/v8/test/unittests/libplatform/
task-queue-unittest.cc 29 void Run() override { EXPECT_THAT(queue_->GetNext(), IsNull()); }
42 EXPECT_EQ(&task, queue.GetNext());
44 EXPECT_THAT(queue.GetNext(), IsNull());
  /external/v8/src/libplatform/
task-queue.h 30 Task* GetNext();
worker-thread.cc 25 while (Task* task = queue_->GetNext()) {
task-queue.cc 30 Task* TaskQueue::GetNext() {
  /art/compiler/optimizing/
live_ranges_test.cc 79 ASSERT_TRUE(range->GetNext() == nullptr);
127 ASSERT_TRUE(range->GetNext() == nullptr);
177 ASSERT_TRUE(range->GetNext() == nullptr);
188 range = range->GetNext();
192 ASSERT_TRUE(range->GetNext() == nullptr);
200 ASSERT_TRUE(range->GetNext() == nullptr);
256 ASSERT_TRUE(range->GetNext() == nullptr);
264 ASSERT_TRUE(range->GetNext() == nullptr);
272 ASSERT_TRUE(range->GetNext() == nullptr);
280 ASSERT_TRUE(range->GetNext() == nullptr)
    [all...]
gvn.cc 103 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {
119 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {
190 for (Node* node = other.buckets_[i]; node != nullptr; node = node->GetNext()) {
208 Node* GetNext() const { return next_; }
232 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {
269 node = (previous == nullptr) ? buckets_[i] : previous->GetNext();
273 node = node->GetNext();
284 Node* next = node->GetNext();
486 HInstruction* next = current->GetNext();
ssa_liveness_analysis.h 67 LiveRange* GetNext() const { return next_; }
124 UsePosition* GetNext() const { return next_; }
182 SafepointPosition* GetNext() const {
282 while ((cursor->GetNext() != nullptr) && (cursor->GetNext()->GetPosition() < position)) {
283 cursor = cursor->GetNext();
287 instruction, nullptr /* environment */, input_index, position, cursor->GetNext());
367 after_loop = after_loop->GetNext();
460 my_range = my_range->GetNext();
465 other_range = other_range->GetNext();
    [all...]
ssa_builder.cc 88 HInstruction* next = phi->GetNext();
92 next = next->GetNext();
95 DCHECK(!phi->IsVRegEquivalentOf(next->GetNext()));
282 HInstruction* next = aget->GetNext();
559 HFloatConstant* result = constant->GetNext()->AsFloatConstant();
563 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext());
581 HDoubleConstant* result = constant->GetNext()->AsDoubleConstant();
585 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext());
606 HInstruction* next = phi->GetNext();
611 next = next->GetNext();
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Joints/
b2Joint.h 129 b2Joint* GetNext();
130 const b2Joint* GetNext() const;
201 inline b2Joint* b2Joint::GetNext()
206 inline const b2Joint* b2Joint::GetNext() const
  /external/pdfium/xfa/src/fdp/src/fde/
fde_iterator.h 25 virtual FDE_HVISUALOBJ GetNext(IFDE_VisualSet*& pVisualSet,
fde_iterator.cpp 47 FDE_HVISUALOBJ CFDE_VisualSetIterator::GetNext(IFDE_VisualSet*& pVisualSet,
61 FDE_HVISUALOBJ hObj = pCanvas->pCanvas->GetNext(
  /external/libchrome/base/threading/
simple_thread_unittest.cc 44 void Run() override { seq_->GetNext(); }
60 if (seq_->GetNext() == total_) {
142 EXPECT_EQ(seq.GetNext(), 0);
150 EXPECT_EQ(seq.GetNext(), 601);
163 EXPECT_EQ(seq2.GetNext(), 10);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.h 145 b2Fixture* GetNext();
146 const b2Fixture* GetNext() const;
283 inline b2Fixture* b2Fixture::GetNext()
288 inline const b2Fixture* b2Fixture::GetNext() const
b2ContactManager.cpp 125 c = cNuke->GetNext();
134 c = cNuke->GetNext();
149 c = c->GetNext();
161 c = cNuke->GetNext();
168 c = c->GetNext();
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_fftext.cpp 40 if (pItem->GetPrev() == NULL && pItem->GetNext() == NULL) {
48 } else if (pItem->GetNext() == NULL) {
78 if (pItem->GetPrev() == NULL && pItem->GetNext() == NULL) {
90 } else if (pItem->GetNext() == NULL) {
97 pItem = pItem->GetNext();
  /external/libweave/third_party/chromium/base/
observer_list.h 85 ObserverType* GetNext();
143 ObserverType* ObserverListBase<ObserverType>::Iterator::GetNext() {
237 while ((obs = it_inside_observer_macro.GetNext()) != nullptr) \
callback_list.h 146 CallbackType* GetNext() {
219 while ((cb = it.GetNext()) != NULL) {
  /external/pdfium/xfa/src/fdp/include/
fde_psr.h 29 virtual FDE_HVISUALOBJ GetNext(FDE_HVISUALOBJ hCanvas,
101 virtual FDE_HVISUALOBJ GetNext(IFDE_VisualSet*& pVisualSet,
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/
b2Contact.h 101 b2Contact* GetNext();
102 const b2Contact* GetNext() const;
264 inline b2Contact* b2Contact::GetNext()
269 inline const b2Contact* b2Contact::GetNext() const

Completed in 721 milliseconds

1 2 3 4 5