Searched defs:begin (Results 151 - 175 of 787) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/vbo/
H A Dvbo.h44 GLuint begin:1; member in struct:_mesa_prim
/external/oprofile/libdb/tests/
H A Ddb_test.c49 double begin, end; local
58 begin = used_time();
71 test_name, nr_item, (end - begin) / nr_item);
/external/oprofile/libpp/
H A Dsample_container.cpp36 sample_container::samples_iterator sample_container::begin() const function in class:sample_container
38 return samples.begin();
49 sample_container::begin(symbol_entry const * symbol) const function in class:sample_container
137 samples_iterator cit = samples.begin();
/external/regex-re2/util/
H A Dsparse_set.h84 iterator begin() { return dense_; } function in class:re2::SparseSet
86 const_iterator begin() const { return dense_; } function in class:re2::SparseSet
150 // the user did something stupid, so begin() insulates them from
164 // sort(arr.begin(), arr.end(), arr.less);
/external/skia/experimental/SkiaExamples/
H A DSkExample.cpp163 const SkExample::Registry* begin = fRegistry; local
174 if (begin == fRegistry) { // We looped through every sample without finding anything.
/external/skia/src/animator/
H A DSkAnimateBase.h38 SkOperand* getValues() { return fValues.begin(); }
50 SkMSec begin; member in class:SkAnimateBase
H A DSkDisplayApply.h78 SkMSec begin; member in class:SkApply
/external/skia/src/core/
H A DSkTRefArray.h43 T* array = const_cast<T*>(obj->begin());
57 T* array = const_cast<T*>(obj->begin());
65 const T* begin() const { return (const T*)(this + 1); } function in class:SkTRefArray
66 const T* end() const { return this->begin() + fCount; }
69 return this->begin()[index];
90 T* array = const_cast<T*>(this->begin());
/external/srec/tools/grxmlcompile/
H A Dhashmap.cpp90 for (pos = m_Map.begin(); pos != m_Map.end(); ++pos) {
107 m_pPos= m_Map.begin();
150 for (pos = m_Map.begin(); pos != m_Map.end(); ++pos) {
161 for (pos = m_Map.begin(); pos != m_Map.end(); ++pos) {
168 typename std::map<T1,T2>::iterator HashMap<T1,T2>::begin() function in class:HashMap
170 m_pPos = m_Map.begin();
/external/stlport/stlport/stl/
H A D_tempbuf.h108 _Tp* begin() { return _M_buffer; } function in class:_Temporary_buffer
/external/stlport/stlport/stl/debug/
H A D_deque.h89 iterator begin() { return iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } function in class:deque
91 const_iterator begin() const { return const_iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } function in class:deque
95 reverse_iterator rend() { return reverse_iterator(begin()); }
97 const_reverse_iterator rend() const { return const_reverse_iterator(begin()); }
113 return *begin();
117 return *begin();
279 _Invalidate_iterator(begin());
376 if (__pos._M_iterator == _M_non_dbg_impl.begin()) {
[all...]
/external/stlport/test/eh/
H A Dtest_algo.cpp41 SortClass* begin() { return items; } function in struct:SortBuffer
42 const SortClass* begin() const { return items; } function in struct:SortBuffer
50 EH_STD::sort( begin(), begin() + ( end() - begin() )/2 );
51 EH_STD::sort( begin() + ( end() - begin() )/2, end() );
52 for ( SortClass* p = begin(); p != end(); p++ )
63 SortClass* q = begin();
64 for ( const SortClass* p = rhs.begin() ;
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-xml-3.3.jar ... .objectweb.asm.xml.ASMContentHandler) public void begin (java.lang.String, org.xml.sax ...
/external/arduino/hardware/arduino/cores/arduino/
H A DHardwareSerial.cpp194 void HardwareSerial::begin(long baud) function in class:HardwareSerial
/external/arduino/libraries/Wire/
H A DWire.cpp52 void TwoWire::begin(void) function in class:TwoWire
63 void TwoWire::begin(uint8_t address) function in class:TwoWire
68 begin();
71 void TwoWire::begin(int address) function in class:TwoWire
73 begin((uint8_t)address);
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h127 inline iterator begin() { return &array_[0].element; } function in class:ceres::internal::FixedArray
130 inline const_iterator begin() const { return &array_[0].element; } function in class:ceres::internal::FixedArray
/external/chromium_org/base/containers/
H A Dscoped_ptr_hash_map.h144 inline iterator begin() { return data_.begin(); } function in class:base::ScopedPtrHashMap
145 inline const_iterator begin() const { return data_.begin(); } function in class:base::ScopedPtrHashMap
/external/chromium_org/base/
H A Dstl_util.h40 void STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) { argument
41 while (begin != end) {
42 ForwardIterator temp = begin;
43 ++begin;
56 void STLDeleteContainerPairPointers(ForwardIterator begin, argument
58 while (begin != end) {
59 ForwardIterator temp = begin;
60 ++begin;
70 void STLDeleteContainerPairFirstPointers(ForwardIterator begin, argument
72 while (begin !
84 STLDeleteContainerPairSecondPointers(ForwardIterator begin, ForwardIterator end) argument
[all...]
/external/chromium_org/cc/trees/
H A Docclusion_tracker_perftest.cc96 LayerIterator<LayerImpl> begin = LayerIterator<LayerImpl>::Begin(&rsll); local
99 LayerIteratorPosition<LayerImpl> pos = begin;
128 ++begin;
129 LayerIteratorPosition<LayerImpl> next = begin;
132 ++begin;
133 EXPECT_EQ(end, begin);
168 LayerIterator<LayerImpl> begin = LayerIterator<LayerImpl>::Begin(&rsll); local
173 LayerIteratorPosition<LayerImpl> pos = begin;
176 ++begin;
178 LayerIteratorPosition<LayerImpl> pos = begin;
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dlocale_change_guard.cc247 const char* const* begin = kSkipShowNotificationLanguages; local
251 return std::find(begin, end, from_lang) == end;
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_finder.cc63 Browser* FindBrowserMatching(const T& begin, argument
68 for (T i = begin; i != end; ++i) {
93 return browser ? browser : FindBrowserMatching(browser_list_impl->begin(),
106 for (BrowserList::const_iterator i = browser_list_impl->begin();
/external/chromium_org/components/autofill/core/browser/
H A Dform_structure.h170 std::vector<AutofillField*>::const_iterator begin() const { function in class:autofill::FormStructure
171 return fields_.begin();
/external/chromium_org/components/invalidation/
H A Dsingle_object_invalidation_set.cc22 invalidations_.insert(other.begin(), other.end());
35 invalidations_.begin()->is_unknown_version();
58 return std::equal(invalidations_.begin(),
60 other.invalidations_.begin(),
65 SingleObjectInvalidationSet::begin() const { function in class:syncer::SingleObjectInvalidationSet
66 return invalidations_.begin();
90 for (InvalidationsSet::const_iterator it = invalidations_.begin();
/external/chromium_org/components/password_manager/core/browser/
H A Dtest_password_store.cc31 for (PasswordMap::const_iterator it = stored_passwords_.begin();
65 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
81 std::vector<autofill::PasswordForm>::iterator it = forms.begin();
101 for (std::vector<autofill::PasswordForm>::iterator it = forms.begin();
109 base::Time begin,
116 base::Time begin,
108 RemoveLoginsCreatedBetweenImpl( base::Time begin, base::Time end) argument
115 RemoveLoginsSyncedBetweenImpl( base::Time begin, base::Time end) argument
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc100 for (const_iterator it = other.begin(); it != other.end(); ++it) {
115 for (const_iterator it = other.begin(); it != other.end(); ++it) {
139 const_iterator iter_this(begin());
140 const_iterator iter_other(other.begin());
165 PolicyMapType::iterator iter(map_.begin());
178 std::equal(begin(), end(), other.begin(), MapEntryEquals);
189 PolicyMap::const_iterator PolicyMap::begin() const { function in class:policy::PolicyMap
190 return map_.begin();
198 for (PolicyMapType::iterator it = map_.begin(); i
[all...]

Completed in 631 milliseconds

1234567891011>>