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

1 2 3

  /external/chromium/base/
string_tokenizer_unittest.cc 18 EXPECT_TRUE(t.GetNext());
21 EXPECT_TRUE(t.GetNext());
24 EXPECT_TRUE(t.GetNext());
27 EXPECT_TRUE(t.GetNext());
30 EXPECT_FALSE(t.GetNext());
38 EXPECT_TRUE(t.GetNext());
41 EXPECT_TRUE(t.GetNext());
44 EXPECT_TRUE(t.GetNext());
47 EXPECT_TRUE(t.GetNext());
50 EXPECT_FALSE(t.GetNext());
    [all...]
lazy_instance_unittest.cc 19 constructed_seq_.GetNext();
22 destructed_seq_.GetNext();
65 EXPECT_EQ(0, constructed_seq_.GetNext());
66 EXPECT_EQ(0, destructed_seq_.GetNext());
69 EXPECT_EQ(2, constructed_seq_.GetNext());
70 EXPECT_EQ(1, destructed_seq_.GetNext());
73 EXPECT_EQ(3, constructed_seq_.GetNext());
74 EXPECT_EQ(2, destructed_seq_.GetNext());
76 EXPECT_EQ(4, constructed_seq_.GetNext());
77 EXPECT_EQ(4, destructed_seq_.GetNext());
    [all...]
atomic_sequence_num.h 18 int GetNext() {
simple_thread_unittest.cc 46 seq_->GetNext();
63 if (seq_->GetNext() == total_) {
145 EXPECT_EQ(seq.GetNext(), 0);
153 EXPECT_EQ(seq.GetNext(), 601);
166 EXPECT_EQ(seq2.GetNext(), 10);
observer_list.h 129 ObserverType* GetNext() {
172 while ((obs = it.GetNext()) != NULL) \
sys_info_chromeos.cc 55 for (int i = 0; i < 3 && tokenizer.GetNext(); i++) {
string_tokenizer.h 27 // while (t.GetNext()) {
44 // while (t.GetNext()) {
60 // while (t.GetNext()) {
123 bool GetNext() {
154 // If GetNext() returned true, then these methods may be used to read the
  /external/chromium/net/disk_cache/
mem_rankings.h 32 MemEntryImpl* GetNext(MemEntryImpl* node);
mem_backend_impl.cc 188 MemEntryImpl* next = rankings_.GetNext(NULL);
195 next = rankings_.GetNext(next);
219 Entry* entry = rankings_.GetNext(NULL);
238 MemEntryImpl* node = rankings_.GetNext(current);
242 node = rankings_.GetNext(node);
mem_rankings.cc 53 MemEntryImpl* MemRankings::GetNext(MemEntryImpl* node) {
  /external/chromium/net/http/
http_util_unittest.cc 65 ASSERT_TRUE(it.GetNext());
69 ASSERT_TRUE(it.GetNext());
73 ASSERT_TRUE(it.GetNext());
77 EXPECT_FALSE(it.GetNext());
85 ASSERT_TRUE(it.GetNext());
89 ASSERT_TRUE(it.GetNext());
93 EXPECT_FALSE(it.GetNext());
105 EXPECT_FALSE(it.GetNext()); // should be at end of headers
126 ASSERT_TRUE(it.GetNext());
129 ASSERT_TRUE(it.GetNext());
    [all...]
http_auth_unittest.cc 157 EXPECT_TRUE(challenge.GetNext());
163 EXPECT_FALSE(challenge.GetNext());
173 EXPECT_TRUE(challenge.GetNext());
179 EXPECT_FALSE(challenge.GetNext());
189 EXPECT_TRUE(challenge.GetNext());
194 EXPECT_FALSE(challenge.GetNext());
205 EXPECT_TRUE(challenge.GetNext());
210 EXPECT_TRUE(challenge.GetNext());
215 EXPECT_TRUE(challenge.GetNext());
220 EXPECT_FALSE(challenge.GetNext());
    [all...]
http_auth_handler_basic.cc 36 while (challenge_tok.GetNext()) {
http_auth.cc 92 if (!tok.GetNext()) {
109 bool HttpAuth::ChallengeTokenizer::GetNext() {
110 if (!props_.GetNext())
http_util.h 166 bool GetNext();
227 bool GetNext();
http_util.cc 193 while (it.GetNext()) {
223 while (byte_range_set_iterator.GetNext()) {
303 while (it.GetNext()) {
531 while (lines.GetNext()) {
572 while (t.GetNext()) {
625 bool HttpUtil::HeadersIterator::GetNext() {
626 while (lines_.GetNext()) {
660 while (GetNext()) {
677 bool HttpUtil::ValuesIterator::GetNext() {
678 while (values_.GetNext()) {
    [all...]
http_auth.h 128 bool GetNext();
http_vary_data.cc 111 while (it.GetNext()) {
  /development/simulator/app/
LogMessage.h 33 LogMessage* GetNext(void) const { return mpNext; }
LogPool.cpp 19 assert(pLogMessage->GetNext() == NULL);
  /external/chromium/net/proxy/
proxy_config.cc 42 while (proxy_server_list.GetNext()) {
46 while (proxy_server_for_scheme.GetNext()) {
52 if (!proxy_server_for_scheme.GetNext()) {
136 while (no_proxy_list.GetNext()) {
proxy_config_service_win.cc 56 while (proxy_server_bypass_list.GetNext()) {
proxy_list.cc 19 while (str_tok.GetNext()) {
96 while (entry_tok.GetNext()) {
  /sdk/emulator/qtools/
hash_table.h 27 entry_type* GetNext();
184 typename HashTable<T>::entry_type* HashTable<T>::GetNext()
208 // beginning on the next call to GetNext().
  /frameworks/base/media/libstagefright/matroska/
mkvparser.hpp 213 long GetNext(const BlockEntry* pCurr, const BlockEntry*& pNext) const;
353 const BlockEntry* GetNext(const BlockEntry*) const;
410 Cluster* GetNext(const Cluster*);

Completed in 197 milliseconds

1 2 3