Searched refs:end (Results 251 - 275 of 452) sorted by relevance

<<111213141516171819

/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DScriptCached.cpp131 I = mFunctions.begin(), E = mFunctions.end();
/frameworks/compile/linkloader/include/impl/
H A DELFSectionSymTab.hxx68 if (symbol == name_map.end()) {
/frameworks/compile/mclinker/include/mcld/Support/
H A DDirectory.h87 iterator end();
103 * DirIterator() is the end of a directory.
104 * If the end of the directory elements is reached, the iterator becomes
105 * equal to the end iterator value - DirIterator().
H A DGCFactory.h180 iterator end() { function in class:mcld::GCFactoryBase
186 const_iterator end() const { function in class:mcld::GCFactoryBase
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.cpp105 E = m_pNodeList.end(); I != E; I++)
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsService.java477 NetworkTemplate template, long start, long end) {
478 return internalGetSummaryForNetwork(template, start, end);
488 NetworkTemplate template, long start, long end, boolean includeTags) {
489 final NetworkStats stats = getUidComplete().getSummary(template, start, end);
492 .getSummary(template, start, end);
521 NetworkTemplate template, long start, long end) {
524 return mDevStatsCached.getSummary(template, start, end);
531 template, Math.min(start, firstAtomicBucket), Math.min(end, firstAtomicBucket));
533 template, Math.max(start, firstAtomicBucket), Math.max(end, firstAtomicBucket));
562 public long getNetworkTotalBytes(NetworkTemplate template, long start, long end) { argument
520 internalGetSummaryForNetwork( NetworkTemplate template, long start, long end) argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp266 uint8_t* end = (uint8_t*)mBuffer->data() + mBuffer->range_offset() local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp160 while (it != mBuffers.end()) {
214 while (it != mBuffers.end()) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSource.cpp145 while (it != mQueue.end() && (uint32_t)(*it)->int32Data() < seqNum) {
149 if (it != mQueue.end() && (uint32_t)(*it)->int32Data() == seqNum) {
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp417 char* end; local
427 end = start+1;
428 while (*end != ' ' && *end != '\0') /* find end of token */
429 end++;
430 if (*end == ' ')
431 *end++ = '\0'; /* mark end, advance to indicate more */
435 start = end;
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DBitwiseStreamsTest.java133 long end = android.os.SystemClock.elapsedRealtime();
134 Log.d(LOG_TAG, "repeated encode-decode took " + (end - start) + " ms");
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.h125 return iter == objects_.end() ? NULL : iter->second;
154 const bool found = iter != objects_.end();
209 // which is wrapped by a Java front-end interface. Pass true to owns, if the
/frameworks/compile/mclinker/lib/CodeGen/
H A DSectLinker.cpp87 std::stable_sort(PosDepOpts.begin(), PosDepOpts.end(), CompareOption);
209 PositionDependentOptions::const_iterator charEnd = pPosDepOptions.end();
304 report_fatal_error("no matched --start-group and --end-group");
/frameworks/support/v4/java/android/support/v4/util/
H A DSparseArrayCompat.java107 final int end = Math.min(mSize, index + size);
108 for (int i = index; i < end; i++) {
137 // Log.e("SparseArray", "gc end with " + mSize);
/frameworks/av/media/libaah_rtp/
H A Daah_tx_sender.cpp353 // start and end. Also handles the case where there is a rollover of the
354 // range between start and end.
356 static inline bool withinIntervalWithRollover(T val, T start, T end) { argument
357 return ((start <= end && val >= start && val <= end) ||
358 (start > end && (val >= start || val <= end)));
443 // start of the retransmit ring buffer (unless the end of the retransmit
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java135 /** Fail unless text+spans contains a span 'spanName' with the given start and end. */
137 int start, int end) throws Exception {
141 assertEquals(end, text.getSpanEnd(i));
341 // At the end.
417 public CharSequence subSequence(int start, int end) { argument
418 return new Wrapper(mString.subSequence(start, end));
497 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
136 checkContains(Spanned text, String[] spans, String spanName, int start, int end) argument
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp134 while (it != mMessageQueue.end()) {
623 // 5% chance of seeking beyond end of stream.
754 it != componentInfos.end(); ++it) {
763 role_it != info.mRoles.end(); ++role_it) {
809 char *end; local
810 unsigned long x = strtoul(optarg, &end, 10);
812 if (*end != '\0' || end == optarg) {
/frameworks/base/core/java/android/text/
H A DStaticLayout.java471 // Log.e("text", "output rest " + here + " to " + end);
601 private int out(CharSequence text, int start, int end, argument
639 chooseHeight(text, start, end, chooseHtv[i], v, fm, paint);
642 chooseHt[i].chooseHeight(text, start, end, chooseHtv[i], v, fm);
661 if (end == bufEnd) {
689 lines[off + mColumns + START] = end;
704 start - widthStart, end - start);
720 calculateEllipsis(start, end, widths, widthStart,
H A DTextLine.java508 // separator and has an associated run, but might be the end of
510 // end of the run list, and runIndex == runs.length. In this case,
531 // need to run this twice, if we cross a run boundary and end up at
571 // We're walking off the end of the line. The paragraph
578 // Else we've arrived at the end of the line. That's a strong position.
584 // we can end up at the 'lineEnd' position but the caret we want is at
598 * off the end of the line, since the returned values might not be valid
616 // Walking off end of line. Since we don't know
661 // the start or end of this span.
709 * @param end th
721 handleText(TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth) argument
982 drawTextRun(Canvas c, TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, float x, int y) argument
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java500 int end = index + value.length();
503 if (end < providers.length() && providers.charAt(end) != ',') index = -1;
517 } else if (end < providers.length()) {
518 end++;
522 if (end < providers.length()) {
523 newProviders += providers.substring(end);
715 // Note that this will end up calling openFile() above.
/frameworks/base/tools/aidl/
H A Daidl.cpp126 const char* end; local
138 end = text;
139 while (!isspace(*end) && *end != ';') {
140 end++;
142 len = end-text;
561 if (methodNames.find(m->name.data) == methodNames.end()) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1994 public void onExtractedSelectionChanged(int start, int end) { argument
1997 conn.setSelection(start, end);
2004 public void onExtractedDeleteText(int start, int end) { argument
2008 conn.deleteSurroundingText(0, end-start);
2015 public void onExtractedReplaceText(int start, int end, CharSequence text) { argument
2018 conn.setComposingRegion(start, end);
2026 public void onExtractedSetSpan(Object span, int start, int end, int flags) { argument
2029 if (!conn.setSelection(start, end)) return;
2033 conn.setComposingRegion(start, end);
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java372 long end = now + poll;
375 while (now < end) {
377 Thread.sleep(end - now);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h49 if (m_Stack.empty()) { // reach the end
84 if (m_Queue.empty()) { // reach the end
276 // +---> Root(end) <---+
306 iterator dEnd = pClient.end();
429 iterator end() function in class:mcld::BinaryTree
435 const_iterator end() const function in class:mcld::BinaryTree
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java97 int start, int end) {
98 for (int i = start; i < end; i++) {
110 while (i + 1 < end && text.charAt(i + 1) == ' ') {
96 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument

Completed in 663 milliseconds

<<111213141516171819