Searched defs:end (Results 26 - 50 of 219) sorted by last modified time

123456789

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.h62 iterator end() { return m_SectionData.end(); } function in class:mcld::ARMPLT
64 const_iterator end() const { return m_SectionData.end(); } function in class:mcld::ARMPLT
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp41 iterator ie = m_SectionData.end();
60 MipsGOT::iterator MipsGOT::end() function in class:MipsGOT
62 return m_SectionData.getFragmentList().end();
70 MipsGOT::const_iterator MipsGOT::end() const function in class:MipsGOT
72 return m_SectionData.getFragmentList().end();
82 for (iterator it = begin(), ie = end();
130 assert(it != m_SectionData.getFragmentList().end() &&
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp42 iterator ie = m_SectionData.end();
86 assert(m_GeneralGOTIterator != m_SectionData.getFragmentList().end()
111 X86GOT::iterator X86GOT::end() function in class:X86GOT
113 return m_SectionData.getFragmentList().end();
116 X86GOT::const_iterator X86GOT::end() const function in class:X86GOT
118 return m_SectionData.getFragmentList().end();
H A DX86GOTPLT.cpp40 iterator ie = m_SectionData.end();
66 X86GOTPLT::iterator X86GOTPLT::end() function in class:mcld::X86GOTPLT
68 return m_SectionData.end();
71 X86GOTPLT::const_iterator X86GOTPLT::end() const function in class:mcld::X86GOTPLT
73 return m_SectionData.end();
97 iterator gotplt_ie = end();
113 } //end mcld namespace
H A DX86PLT.cpp126 assert(m_PLTEntryIterator != m_SectionData.end() &&
151 assert(m_PLTEntryIterator != m_SectionData.end() &&
165 iterator end = m_SectionData.getFragmentList().end(); local
167 assert(first!=end && "FragmentList is empty, getPLT0 failed!");
178 iterator end = m_SectionData.getFragmentList().end(); local
180 assert(first!=end && "FragmentList is empty, applyPLT0 failed!");
214 X86PLT::iterator ie = m_SectionData.end();
262 X86GOT::iterator list_ie = m_GOT.getSectionData().getFragmentList().end();
[all...]
H A DX86PLT.h64 iterator end() { return m_SectionData.end(); } function in class:mcld::X86PLT
66 const_iterator end() const { return m_SectionData.end(); } function in class:mcld::X86PLT
/frameworks/compile/mclinker/utils/gtest/include/
H A Dgtest.h1658 // Use this annotation at the end of a struct/class definition to
1796 // (They seem to think the ">" in "5 > 0" marks the end of the
2252 // MutexLock lock(&mutex); // Acquires the mutex and releases it at the end
3111 // String is considered to end with a NULL or empty suffix.
3115 // case. Any String is considered to end with a NULL or empty suffix.
3346 // not represent a directory (that is, it doesn't end with a path separator).
7657 // Finds the first element in the iterator range [begin, end) that
7660 Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { argument
7661 for (Iter it = begin; it != end; ++it) {
7665 return end;
7741 const_iterator end() const { return array_ + size_; } function in class:testing::internal::NativeArray
10106 iterator end() const { return iterator(impl_->End()); } function in class:testing::internal::ParamGenerator
10119 RangeGenerator(T begin, T end, IncrementT step) argument
10176 CalculateEndIndex(const T& begin, const T& end, const IncrementT& step) argument
10205 ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) argument
15422 Range(T start, T end, IncrementT step) argument
15428 Range(T start, T end) argument
15490 ValuesIn(ForwardIterator begin, ForwardIterator end) argument
[all...]
/frameworks/compile/mclinker/utils/gtest/src/
H A Dgtest-all.cpp675 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
685 std::for_each(c.begin(), c.end(), functor);
696 // 'begin' and 'end' are element indices as an STL-style range;
697 // i.e. [begin, end) are shuffled, where 'end' == size() means to
698 // shuffle to the end of the vector.
700 void ShuffleRange(internal::Random* random, int begin, int end, argument
706 GTEST_CHECK_(begin <= end && end <= size)
707 << "Invalid shuffle range finish " << end << "
1378 char* end; local
3042 const char* const end = start + str.length(); local
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java309 public void onSelectionChanged(int start, int end) { argument
317 super.onSelectionChanged(start, end);
343 public void append(CharSequence text, int start, int end) { argument
348 super.append(text, start, end);
404 int end = getSelectionEnd();
405 int start = mTokenizer.findTokenStart(editable, end);
406 RecipientChip[] chips = getSpannable().getSpans(start, end, RecipientChip.class);
420 commitChip(start, end, editable);
827 int end;
835 end
1120 commitChip(int start, int end, Editable editable) argument
1194 shouldCreateChip(int start, int end) argument
1198 alreadyHasChip(int start, int end) argument
1209 handleEdit(int start, int end) argument
[all...]
/frameworks/ex/common/java/com/android/common/
H A DRfc822InputFilter.java33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
37 if (end-start != 1 || source.charAt(start) != ' ') {
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1090 int end = editable.getSpanEnd(style);
1091 editable.replace(start, end, "");
1214 public void setTextComposingMask(int start, int end) { argument
1216 Log.d(TAG, "--- setTextComposingMask:" + start + "," + end);
1218 int min = Math.min(start, end);
1219 int max = Math.max(start, end);
1325 int end = start + after;
1326 int min = Math.min(start, end);
1327 int max = Math.max(start, end);
1365 if (spanend == end
1668 setStyledTextSpan(Object span, int start, int end) argument
[all...]
/frameworks/native/include/private/ui/
H A DRegionHelper.h202 RECT const * const end = rects + count; local
204 while (rects != end && rects->top == top) {
208 if (rects != end) {
/frameworks/native/include/utils/
H A DList.h168 insert(begin(), src.begin(), src.end());
185 return size_t(distance(begin(), end()));
199 inline iterator end() { function in class:android::List
202 inline const_iterator end() const { function in class:android::List
208 void push_back(const T& val) { insert(end(), val); }
318 iterator lastDst = end();
320 const_iterator lastSrc = right.end();
H A DVector.h101 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
120 //! append another vector at the end of this one
127 //! append an array at the end of this vector
184 inline iterator end() { return editArray() + size(); } function in class:android::Vector
186 inline const_iterator end() const { return array() + size(); } function in class:android::Vector
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp790 const void* end = ((const uint8_t*)cmds)+bwr.write_size; local
792 while (cmds < end) cmds = printCommand(alog, cmds);
844 const void* end = mIn.data() + mIn.dataSize(); local
846 while (cmds < end) cmds = printReturnCommand(alog, cmds);
H A DMemoryDealer.cpp187 size_t end = start + freedSize; local
189 end = (end + pagesize-1) & ~(pagesize-1);
196 if (end > free_end)
197 end = free_end;
199 end &= ~(pagesize-1);
201 if (start < end) {
203 size_t size = end-start;
H A DParcel.cpp548 size_t end = mDataPos + len; local
549 if (end < mDataPos) {
554 if (end <= mDataCapacity) {
589 // Need to pad at end?
/frameworks/native/libs/utils/
H A DBufferedTextOutput.cpp162 const char* const end = txt+len; local
166 while (txt < end) {
169 while (txt < end && *txt != '\n') txt++;
172 while (txt < end && *txt == '\n') txt++;
189 while (txt < end) {
H A DDebug.cpp166 char* end = typetostring(typeCode, buffer); local
167 *end = 0;
H A DPropertyMap.cpp84 char* end; local
85 int value = strtol(stringValue.string(), & end, 10);
86 if (*end != '\0') {
101 char* end; local
102 float value = strtof(stringValue.string(), & end);
103 if (*end != '\0') {
198 ALOGE("%s: Expected end of line, got '%s'.",
H A DTokenizer.cpp119 const char* end = getEnd(); local
121 while (eol != end) {
135 const char* end = getEnd(); local
137 while (mCurrent != end) {
151 const char* end = getEnd(); local
152 while (mCurrent != end) {
165 const char* end = getEnd(); local
166 while (mCurrent != end) {
H A DUnicode.cpp184 const char32_t *end = src + src_len; local
185 while (src < end) {
413 const char16_t* const end = src + src_len; local
414 while (src < end) {
415 if ((*src & 0xFC00) == 0xD800 && (src + 1) < end
454 const char* end; local
456 for (cur = src, end = src + src_len, num_to_skip = 1;
457 cur < end;
479 const char* const end = src + src_len; local
481 while (cur < end) {
572 char16_t* end = utf8_to_utf16_no_null_terminator(u8str, u8len, u16str); local
[all...]
/frameworks/native/opengl/libagl/
H A Dcontext.h255 GLfixed end; member in struct:android::gl::fog_t
H A Degl.cpp280 const_iterator end() const { return storage+count; } function in struct:android::egl_window_surface_v2_t::Region
455 Region::const_iterator end = clip.end(); local
464 while (cur != end) {
/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp212 char const* end; local
215 end = strchr(start, ' ');
216 if (end) {
218 const size_t len = end - start;
233 start = end + 1;
235 } while (end);
330 // This cannot be called with the lock held because it might end-up
372 // This cannot be called with the lock held because it might end-up

Completed in 231 milliseconds

123456789