Searched refs:end (Results 126 - 150 of 550) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp79 it != frames.end(); ++it) {
87 it != frames.end(); ++it) {
126 it != packets.end(); ++it) {
133 it != packets.end(); ++it) {
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3InputStream.cpp107 Vector<BufferItem>::iterator it, end; local
108 for (it = mBuffersInFlight.begin(), end = mBuffersInFlight.end();
109 it != end;
H A DCamera3Stream.cpp259 List<wp<Camera3StreamBufferListener> >::iterator it, end; local
268 for (it = mBufferListenerList.begin(), end = mBufferListenerList.end();
269 it != end;
405 List<wp<Camera3StreamBufferListener> >::iterator it, end; local
406 for (it = mBufferListenerList.begin(), end = mBufferListenerList.end();
407 it != end;
/frameworks/base/core/java/android/text/
H A DSpanned.java40 * Depending on whether the insertion happens at the beginning or the end of a span, the span
42 * its beginning or a POINT at its end) or it will be <i>excluded</i>.
74 * (SPAN_MARK_MARK), except that if either end of the span is
75 * at the end of the buffer, that end behaves like _POINT
77 * middle and ends at the end, or SPAN_EXCLUSIVE_INCLUSIVE
78 * if it both starts and ends at the end).
80 * Its endpoints must be the start or end of the buffer or
83 * next \n that follows in the buffer (or to the end of
168 public <T> T[] getSpans(int start, int end, Clas argument
[all...]
H A DSpanSet.java50 // These arrays may end up being too large because of the discarded empty spans
78 * @param end must be strictly greater than start
80 public boolean hasSpansIntersecting(int start, int end) { argument
83 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
/frameworks/base/core/java/android/util/
H A DArrayMap.java107 int end;
108 for (end = index + 1; end < N && mHashes[end] == hash; end++) {
109 if (key.equals(mArray[end << 1])) return end;
118 // new entry for this key should go. We use the end of the
121 return ~end;
145 int end;
[all...]
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java61 int end(int nativeDisplayList) { method in class:GLES20RecordingCanvas
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp67 var_end = export_var_names.end(); var_iter != var_end;
84 func_end = export_func_names.end(); func_iter != func_end;
101 foreach_end = export_foreach_funcs.end();
118 pragma_end = pragmas.end(); pragma_iter != pragma_end;
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h64 iterator end();
66 const_iterator end() const;
76 { return m_Relocations.end(); }
79 { return m_Relocations.end(); }
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp23 TargetListTy::const_iterator TIter, TEnd = s_TargetList.end();
/frameworks/compile/mclinker/lib/Target/
H A DGOT.cpp36 SectionData::iterator frag, fragEnd = m_SectionData->end();
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOTPLT.cpp61 for (; it != end() ; ++it) {
H A DHexagonPLT.cpp64 assert(first != m_SectionData->getFragmentList().end() &&
81 if (end() != it) {
89 SectionData::iterator frag, fragEnd = m_SectionData->end();
116 assert(m_Last != m_SectionData->end() &&
156 HexagonPLT::iterator ie = m_SectionData->end();
209 HexagonPLT::iterator ie = end();
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java62 public void end() { method in class:SafeSaxTest.ElementCounter
75 public void end(String body) { method in class:SafeSaxTest.TextElementCounter
133 public void end(String body) {
219 public void end(String body) {
226 public void end(String body) {
236 public void end(String body) {
275 public void end(String body) {
282 public void end(String body) {
289 public void end(String body) {
296 public void end(Strin
343 public void end() { method in class:SafeSaxTest.HandlerFactory.VideoListener
[all...]
/frameworks/base/core/java/android/text/style/
H A DDynamicDrawableSpan.java78 int start, int end,
96 int start, int end, float x,
77 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
95 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/base/core/jni/
H A Dandroid_os_UEventObserver.cpp52 const char* end = buffer + length + 1; local
59 } while (field != end);
H A Dandroid_os_SystemProperties.cpp72 char* end; local
84 result = strtol(buf, &end, 0);
85 if (end == buf) {
102 char* end; local
114 result = strtoll(buf, &end, 0);
115 if (end == buf) {
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DCharsets.java84 int end = offset + length;
86 for (int i = offset; i < end; ++i) {
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp58 for (; it != end() ; ++it) {
102 for (; it != end() ; ++it) {
108 } //end mcld namespace
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp93 EXPECT_TRUE(iter==hashTable->end());
162 EXPECT_TRUE(iter == hashTable->end());
185 EXPECT_TRUE(iter == hashTable->end());
210 EXPECT_TRUE(iter == hashTable->end());
216 EXPECT_TRUE(iter != hashTable->end());
261 HashTableTy::iterator iter, iEnd = hashTable->end();
285 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key*37);
320 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key);
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriterPass.cpp35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
52 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriterPass.cpp35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
52 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java89 * something strange is going on. (We might still end up with
178 public CharSequence subSequence(int start, int end) { argument
179 char[] buf = new char[end - start];
181 getChars(start, end, buf, 0);
189 public void getChars(int start, int end, char[] dest, int off) { argument
190 TextUtils.getChars(mSource, start, end, dest, off);
215 for (int i = start; i < end; i++) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp54 SectionData::iterator frag, fragEnd = m_SectionData->end();
78 assert(m_PLTEntryIterator != m_SectionData->end() &&
88 assert(first != m_SectionData->getFragmentList().end() &&
113 assert(first != m_SectionData->getFragmentList().end() &&
139 ARMPLT::iterator ie = m_SectionData->end();
190 ARMPLT::iterator ie = end();
/frameworks/compile/slang/
H A Dslang_rs_context.h165 return mExportables.end();
173 return mExportVars.end();
184 return mExportFuncs.end();
193 return mExportForEach.end();
200 export_type_iterator export_types_end() { return mExportTypes.end(); }
205 return mExportTypes.end();

Completed in 420 milliseconds

1234567891011>>