HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 201 - 225 of 3921) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
StringCharacterIteratorTest.java 129 sci1.next();
131 sci0.next();
167 fixture.next();
181 fixture.next();
192 assertEquals("Wrong next char", 't', it1.next());
254 fixture.next();
266 * @tests java.text.StringCharacterIterator.next()
271 assertEquals('i', fixture.next());
273 assertEquals('x', fixture.next());
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 58 * The position of the next header in {@link #allHeaders allHeaders}.
92 * Determines the index of the next header.
97 * @return the index of the next header that matches the filter name,
135 * Obtains the next header from this iteration.
137 * @return the next header in this iteration
156 * Returns the next header.
159 * @return the next header in this iteration
163 public final Object next() method in class:BasicHeaderIterator
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 77 * Returns the next node in the set and advances the position of the
81 * @return The next <code>Node</code> in the set being iterated over, or
89 int next; local
91 m_lastFetched = next = (DTM.NULL == m_lastFetched)
95 // m_lastFetched = next;
96 if (DTM.NULL != next)
99 return next;
SelfIteratorNoPredicate.java 66 * Returns the next node in the set and advances the position of the
70 * @return The next <code>Node</code> in the set being iterated over, or
78 int next; local
80 m_lastFetched = next = (DTM.NULL == m_lastFetched)
84 // m_lastFetched = next;
85 if (DTM.NULL != next)
89 return next;
  /external/bison/src/
InadequacyList.h 76 struct InadequacyList *next; member in struct:InadequacyList
derives.c 34 struct rule_list *next; member in struct:rule_list
83 p->next = dset[lhs - ntokens];
101 p = p->next;
  /external/checkpolicy/
checkpolicy.h 13 struct te_assert *next; member in struct:te_assert
queue.h 21 queue_node_ptr_t next; member in struct:queue_node
  /external/chromium/chrome/browser/autofill/
name_field.cc 59 AutofillField* next; local
63 ParseEmptyText(&q, &next)) {
67 v->middle_name_ = next;
70 v->last_name_ = next;
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
sessionsendtask.h 104 const buzz::XmlElement* next = NextStanza(); local
105 if (next == NULL)
108 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
109 session_manager_->OnIncomingResponse(stanza_.get(), next);
111 session_manager_->OnFailedSend(stanza_.get(), next);
  /external/chromium_org/content/renderer/
renderer_webcolorchooser_impl.cc 13 static int next = 0; local
14 return ++next;
  /external/chromium_org/media/midi/
midi_message_queue.cc 52 const uint8 next = queue_.front(); local
59 if (IsSystemRealTimeMessage(next)) {
60 message->push_back(next);
68 ((next_message_[0] == kSysEx && IsFirstStatusByte(next)) ||
69 (next_message_[0] != kSysEx && !IsDataByte(next)))) {
76 if (IsFirstStatusByte(next)) {
77 next_message_.push_back(next);
88 next_message_.push_back(next);
91 if (next == kEndOfSysEx) {
99 DCHECK(IsDataByte(next));
    [all...]
  /external/chromium_org/net/quic/test_tools/
test_task_runner.cc 41 // Find the next task to run, advance the time to the correct time
43 std::vector<PostedTask>::iterator next = FindNextTask(); local
44 DCHECK(next != tasks_.end());
46 (next->GetTimeToRun() - clock_->NowInTicks()).InMicroseconds()));
47 PostedTask task = *next;
48 tasks_.erase(next);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.h 48 static const CSSSelector* next(const CSSSelector*);
49 bool hasOneSelector() const { return m_selectorArray && !next(m_selectorArray); }
55 current = next(current);
80 inline const CSSSelector* CSSSelectorList::next(const CSSSelector* current) function in class:WebCore::CSSSelectorList
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h 40 Element* next(const Node&);
41 Element* next(const Node&, const Node* stayWithin);
42 Element* next(const ContainerNode&);
43 Element* next(const ContainerNode&, const Node* stayWithin);
45 // Like next, but skips children.
74 Node* node = NodeTraversal::next(current);
79 inline Element* next(const ContainerNode& current) { return traverseNextElementTemplate(current); } function in namespace:WebCore::ElementTraversal
80 inline Element* next(const Node& current) { return traverseNextElementTemplate(current); } function in namespace:WebCore::ElementTraversal
85 Node* node = NodeTraversal::next(current, stayWithin);
90 inline Element* next(const ContainerNode& current, const Node* stayWithin) { return traverseNextElementTemplate(current (…) function in namespace:WebCore::ElementTraversal
91 inline Element* next(const Node& current, const Node* stayWithin) { return traverseNextElementTemplate(current, stayWithin); } function in namespace:WebCore::ElementTraversal
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceClientWalker.h 35 // Just keep calling next() on this. It's safe from deletions of items.
48 T* next() function in class:WebCore::ResourceClientWalker
52 ResourceClient* next = m_clientVector[m_index++]; local
53 if (m_clientSet.contains(next)) {
54 ASSERT(T::expectedType() == ResourceClient::expectedType() || next->resourceClientType() == T::expectedType());
55 return static_cast<T*>(next);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
OrderIterator.cpp 48 return next();
51 RenderBox* OrderIterator::next() function in class:WebCore::OrderIterator
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
bytecode.py 17 # The offset in the code object of the next bytecode.
67 next = __next__ # Py2k uses an old-style non-dunder name. variable in class:ByteCodes
90 next = __next__ variable in class:CodeObjects
  /external/chromium_org/third_party/icu/source/common/
ruleiter.cpp 35 UChar32 RuleCharacterIterator::next(int32_t options, UBool& isEscaped, UErrorCode& ec) { function in class:RuleCharacterIterator
uenumimp.h 61 * This function returns the next element as a UChar *,
67 * @return next element as UChar *,
78 * This function returns the next element as a char *,
84 * @return next element as char *,
124 UEnumNext *next; member in struct:UEnumeration
145 * when a UEnumeration is defined with 'next' pointing to this
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
sessionsendtask.h 111 const buzz::XmlElement* next = NextStanza(); local
112 if (next == NULL)
116 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
117 session_manager_->OnIncomingResponse(stanza_.get(), next);
119 session_manager_->OnFailedSend(stanza_.get(), next);
  /external/chromium_org/third_party/libusb/src/libusb/
hotplug.c 180 struct libusb_hotplug_callback *hotplug_cb, *next; local
185 list_for_each_entry_safe(hotplug_cb, next, &ctx->hotplug_cbs, list, struct libusb_hotplug_callback) {
312 struct libusb_hotplug_callback *hotplug_cb, *next; local
315 list_for_each_entry_safe(hotplug_cb, next, &ctx->hotplug_cbs, list,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipe-loader/
pipe_loader.c 15 * next paragraph) shall be included in all copies or substantial portions
76 const char *next; local
80 for (next = library_paths; *next; library_paths = next + 1) {
81 next = util_strchrnul(library_paths, ':');
82 len = next - library_paths;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_mm.h 38 struct mem_block *next, *prev; member in struct:mem_block
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
memory_pool.c 11 * The above copyright notice and this permission notice (including the next
35 struct memory_block * next; member in struct:memory_block
48 pool->blocks = block->next;
62 newblock->next = pool->blocks;
90 block->next = pool->blocks;

Completed in 723 milliseconds

1 2 3 4 5 6 7 891011>>