HomeSort by relevance Sort by last modified time
    Searched refs:Next (Results 126 - 150 of 1080) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/leveldatabase/src/db/
skiplist.h 19 // (2) The contents of a Node except for the next/prev pointers are
25 // ... prev vs. next pointer ordering ...
69 // Advances to the next position.
71 void Next();
151 Node* Next(int n) {
205 inline void SkipList<Key,Comparator>::Iterator::Next() {
207 node_ = node_->Next(0);
228 node_ = list_->head_->Next(0);
244 while (height < kMaxHeight && ((rnd_.Next() % kBranching) == 0)) {
264 Node* next = x->Next(level) local
287 Node* next = x->Next(level); local
307 Node* next = x->Next(level); local
    [all...]
  /external/chromium_org/chrome/browser/lifetime/
browser_close_manager.cc 40 for (chrome::BrowserIterator it; !it.done(); it.Next()) {
51 for (chrome::BrowserIterator it; !it.done(); it.Next()) {
142 it_ptr->Next();
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
video_source.h 62 // Advance the cursor to the next frame
63 virtual void Next() = 0;
98 virtual void Next() {
182 // Advance the cursor to the next frame
183 virtual void Next() = 0;
  /external/clang/lib/Format/
TokenAnnotator.h 48 // Calculate Next and Previous for all tokens. Note that we must overwrite
49 // Next and Previous for every token, as previous formatting runs might have
57 Current->Next = I->Tok;
59 Current = Current->Next;
70 Last->Next = nullptr;
  /external/libvpx/libvpx/test/
video_source.h 62 // Advance the cursor to the next frame
63 virtual void Next() = 0;
98 virtual void Next() {
182 // Advance the cursor to the next frame
183 virtual void Next() = 0;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 42 siter.Next())
55 siter.Next()) {
60 aiter.Next()) {
  /external/webrtc/src/system_wrappers/test/map/
map.cc 48 map_item = map.Next(map_item);
88 // Test Next
89 MapItem* second_item = test_map.Next(first_item);
92 FailTest(test_map.Next(last_item) != NULL);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
video_source.h 62 // Advance the cursor to the next frame
63 virtual void Next() = 0;
98 virtual void Next() {
182 // Advance the cursor to the next frame
183 virtual void Next() = 0;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 129 bool Next(const void** data, int* size) {
139 return array_stream_.Next(data, size);
256 // Before Next() is called, the initial token should always be TYPE_START.
264 ASSERT_TRUE(tokenizer.Next());
277 EXPECT_FALSE(tokenizer.Next());
279 // After Next() returns false, the token should have type TYPE_END.
302 ASSERT_TRUE(tokenizer.Next());
305 ASSERT_TRUE(tokenizer.Next());
308 ASSERT_TRUE(tokenizer.Next());
311 ASSERT_TRUE(tokenizer.Next());
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 104 /// keeps track of the current block and has a pointer to the next free block.
108 FreeRangeHeader *Next;
124 assert(Next->Prev == this && Prev->Next == this && "Freelist broken!");
125 Next->Prev = Prev;
126 return Prev->Next = Next;
130 Next = FreeList;
132 Prev->Next = this;
133 Next->Prev = this
    [all...]
  /development/host/windows/usb/api/
adb_interface_enum.cpp 59 bool AdbInterfaceEnumObject::Next(AdbInterfaceInfo* info, ULONG* size) {
  /external/chromium_org/base/metrics/
histogram_samples.cc 19 virtual void Next() OVERRIDE;
35 Next();
42 void SampleCountPickleIterator::Next() {
111 it->Next()) {
  /external/chromium_org/chrome/browser/
fast_shutdown_browsertest.cc 59 it.Next();
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_object_enumerator.cc 19 base::FilePath MTPDeviceObjectEnumerator::Next() {
23 is_index_ready_ = true; // First time calling Next().
  /external/chromium_org/remoting/host/
pairing_registry_delegate_linux.cc 46 for (base::FilePath pairing_file = enumerator.Next(); !pairing_file.empty();
47 pairing_file = enumerator.Next()) {
74 for (base::FilePath pairing_file = enumerator.Next(); !pairing_file.empty();
75 pairing_file = enumerator.Next()) {
  /external/chromium_org/third_party/leveldatabase/src/table/
two_level_iterator.cc 31 virtual void Next();
112 void TwoLevelIterator::Next() {
114 data_iter_.Next();
127 // Move to next block
132 index_iter_.Next();
140 // Move to next block
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgzip.cc 63 ok = out.Next(&outptr, &outlen);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_xml_utils.cc 43 attribute != NULL; attribute = attribute->Next()) {
  /external/chromium_org/ui/display/chromeos/x11/
touchscreen_device_manager_x11.cc 74 for (FilePath i2c_name = i2c_enum.Next();
76 i2c_name = i2c_enum.Next()) {
81 for (base::FilePath input = input_enum.Next();
83 input = input_enum.Next()) {
  /external/clang/test/ASTMerge/Inputs/
struct1.c 50 struct ListNode *Next;
struct2.c 47 struct ListNode *Next;
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
121 // Mark all uses for resimplification next time round the loop.
123 Next->insert(cast<Instruction>(U));
180 // Place the list of instructions to simplify on the next loop iteration
182 std::swap(ToSimplify, Next);
183 Next->clear();
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 498 DiffEntry *Next = Paths2.data();
515 Next[0] = Cur[0];
516 Next[0].Cost += RightCost;
517 Next[0].Path.push_back(DC_right);
522 Next[Index] = Cur[Index-1];
523 Next[Index].Cost += MatchCost;
524 Next[Index].Path.push_back(DC_match);
526 } else if (Next[Index-1].Cost <= Cur[Index].Cost) {
527 Next[Index] = Next[Index-1]
    [all...]
  /external/lzma/CPP/Windows/
FileFind.h 115 bool Next(CFileInfo &fileInfo);
116 bool Next(CFileInfo &fileInfo, bool &found);
130 bool Next(CFileInfoW &fileInfo);
131 bool Next(CFileInfoW &fileInfo, bool &found);
  /external/protobuf/src/google/protobuf/testing/
zcgzip.cc 63 ok = out.Next(&outptr, &outlen);

Completed in 644 milliseconds

1 2 3 4 56 7 8 91011>>