Searched defs:iterator (Results 126 - 150 of 669) sorted by path

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DObjectHandling.c145 static CYTHON_INLINE PyObject *__Pyx_PyIter_Next2(PyObject* iterator, PyObject* defval) { argument
147 iternextfunc iternext = Py_TYPE(iterator)->tp_iternext;
151 if (unlikely(!iternext) || unlikely(!PyIter_Check(iterator))) {
154 "%.200s object is not an iterator", Py_TYPE(iterator)->tp_name);
157 next = iternext(iterator);
190 // detects an error that occurred in the iterator, it returns -1.
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_imp.h255 /* UCOL_ITER_ALLOCATED - set if this iterator has */
264 /* character iterator instead of simply accessing string */
304 UCharIterator *iterator; member in struct:collIterate
/external/chromium_org/third_party/icu/source/samples/break/
H A Dbreak.cpp25 void printTextRange( BreakIterator& iterator, argument
28 CharacterIterator *strIter = iterator.getText().clone();
107 printf("failed to create sentence break iterator. status = %s",
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drbbitst.cpp158 // class BITestData Holds a set of Break iterator test data and results
433 // generalIteratorTest Given a break iterator and a set of test data,
454 // testFirstAndNext. Run the iterator forwards in the obvious first(), next()
473 // If the iterator is not making forward progress, stop.
484 // TestLastAndPrevious. Run the iterator backwards, starting with last().
506 // If the iterator is not making progress, stop.
549 // Make sure that the index was at the correct position for the break iterator to have
552 errln("testFollowing(): iterator returned DONE prematurely.");
591 // Make sure that the index was at the correct position for the break iterator to have
594 errln("testPreceding(): iterator returne
624 doMultipleSelectionTest(RuleBasedBreakIterator& iterator, BITestData &td) argument
[all...]
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h114 void printTextRange( BreakIterator& iterator, argument
117 CharacterIterator *strIter = iterator.getText().clone();
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dusetperf.cpp86 void iterator(void){ function in class:CmdOp
107 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::iterator) ; break;
113 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::iterator) ; break;
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h127 typedef ValueIterator iterator; typedef in class:Json::Value
435 iterator begin();
436 iterator end();
742 static void increment( IteratorState &iterator );
743 static void incrementBucket( IteratorState &iterator );
744 static void decrement( IteratorState &iterator );
745 static const char *key( const IteratorState &iterator );
746 static const char *key( const IteratorState &iterator, bool &isStatic );
747 static Value &value( const IteratorState &iterator );
811 static void increment( IteratorState &iterator );
[all...]
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv_test.cc205 Iterator* iterator = db->NewIterator(ReadOptions()); local
206 iterator->SeekToFirst();
208 ASSERT_TRUE(iterator->Valid());
209 ASSERT_TRUE(keys[i] == iterator->key());
210 ASSERT_TRUE(vals[i] == iterator->value());
211 iterator->Next();
213 ASSERT_TRUE(!iterator->Valid());
214 delete iterator;
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DAddressVerificationNodeData.java41 public Iterator<AddressDataKey> iterator() { method in class:AddressVerificationNodeData
42 return mMap.keySet().iterator();
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
H A Dhttpcore-4.1.jar ... java.lang.Object implements java.util.Iterator { public abstract boolean hasNext () public abstract org.apache. ...
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc309 std::map<std::string, jclass>::iterator it = classes_.find(name);
682 NativeToJavaStreamsMap::iterator it = streams_.find(stream);
782 GetObjectClass(jni, j_list), "iterator", "()Ljava/util/Iterator;");
2929 jni, list_class, "iterator", "()Ljava/util/Iterator;");
2930 jobject iterator = jni->CallObjectMethod(j_ice_servers, iterator_id); local
2933 jni, GetObjectClass(jni, iterator), "hasNext", "()Z");
2935 jni, GetObjectClass(jni, iterator), "next", "()Ljava/lang/Object;");
2936 while (jni->CallBooleanMethod(iterator, iterator_has_next)) {
2938 jobject j_ice_server = jni->CallObjectMethod(iterator, iterator_next);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatstypes.h308 typedef Container::iterator iterator; typedef in class:webrtc::StatsSet
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dchatroommoduleimpl.cc145 XmppChatroomModuleImpl::JidMemberMap::iterator iterator_;
164 JidMemberMap::iterator iterator = chatroom_jid_members_.begin(); local
165 while (iterator != chatroom_jid_members_.end()) {
166 delete iterator->second;
167 iterator++;
494 JidMemberMap::iterator pos = chatroom_jid_members_.find(presence->jid());
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.h39 typedef const char* iterator; typedef in class:i18n::phonenumbers::StringPiece
41 typedef std::reverse_iterator<iterator> reverse_iterator;
124 iterator begin() const { return ptr_; }
125 iterator end() const { return ptr_ + length_; }
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7800 // will be viable (since both C::iterator* and C::const_iterator* are
7803 // the type of argument 0. If C::iterator or C::const_iterator is not
7809 // Note that we look for both C::iterator and C::const_iterator. The
7811 // class itself (e.g. you can refer to class iterator as either
7812 // 'iterator' or 'iterator::iterator'). If we look for C::iterator
7814 // iterator is an STL container.
7822 typename C::iterator* /* i
7928 typedef Element* iterator; typedef in class:testing::internal::NativeArray
10160 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
10286 Iterator(const ParamGeneratorInterface<T>* base, typename ContainerType::const_iterator iterator) argument
[all...]
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl.hpp563 /*! \class iterator
566 class iterator class in class:cl::vector
573 iterator(void) : function in class:cl::vector::iterator
581 ~iterator(void) {}
583 static iterator begin(vector<T,N> &vec)
585 iterator i;
596 static iterator end(vector<T,N> &vec)
598 iterator i;
608 bool operator==(iterator i)
615 bool operator!=(iterator
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h144 for (DLList::Iterator (it) = (list)->iterator(); !(it).end(); (it).next())
218 Iterator iterator() function in class:nv50_ir::DLList
403 Iterator iterator() const { return Iterator(this); }
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Ddevice.hpp84 typedef std::vector<device>::iterator iterator; typedef in class:clover::device_registry
88 iterator begin() {
92 iterator end() {
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir.h665 * Get an iterator for the set of function signatures
667 exec_list_iterator iterator() function in class:ir_function
669 return signatures.iterator();
767 * Get an iterator for the instructions of the loop body
769 exec_list_iterator iterator() function in class:ir_loop
771 return body_instructions.iterator();
1157 * Get an iterator for the set of acutal parameters
1159 exec_list_iterator iterator() function in class:ir_call
1161 return actual_parameters.iterator();
H A Dlist.h227 class iterator { class
244 class exec_list_iterator : public iterator {
278 for (iter_type iter = (container) . iterator(); iter.has_next(); iter.next())
442 exec_list_iterator iterator() function in struct:exec_list
447 exec_list_iterator iterator() const function in struct:exec_list
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h908 // will be viable (since both C::iterator* and C::const_iterator* are
911 // the type of argument 0. If C::iterator or C::const_iterator is not
917 // Note that we look for both C::iterator and C::const_iterator. The
919 // class itself (e.g. you can refer to class iterator as either
920 // 'iterator' or 'iterator::iterator'). If we look for C::iterator
922 // iterator is an STL container.
930 typename C::iterator* /* i
1036 typedef Element* iterator; typedef in class:testing::internal::NativeArray
[all...]
H A Dgtest-param-util.h37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
287 Iterator(const ParamGeneratorInterface<T>* base, typename ContainerType::const_iterator iterator) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.h51 #include <iterator>
135 // STL-like iterator support
136 typedef Element* iterator; typedef in class:google::protobuf::RepeatedField
146 iterator begin();
148 iterator end();
151 // Reverse iterator support
153 typedef std::reverse_iterator<iterator> reverse_iterator;
450 // STL-like iterator support
451 typedef internal::RepeatedPtrIterator<Element> iterator; typedef in class:google::protobuf::RepeatedPtrField
461 iterator begi
1181 typedef RepeatedPtrIterator<Element> iterator; typedef in class:google::protobuf::internal::RepeatedPtrIterator
1272 typedef RepeatedPtrOverPtrsIterator<Element, VoidPtr> iterator; typedef in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
[all...]

Completed in 868 milliseconds

1234567891011>>