Searched defs:end (Results 226 - 250 of 351) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrame.h119 const_fde_iterator end() const { return m_FDEs.end(); } function in class:mcld::EhFrame::CIE
120 fde_iterator end() { return m_FDEs.end(); } function in class:mcld::EhFrame::CIE
196 const_cie_iterator cie_end() const { return m_CIEs.end(); }
197 cie_iterator cie_end() { return m_CIEs.end(); }
/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputSectDesc.h165 const_iterator end() const { return m_OutputSectCmds.end(); } function in class:mcld::OutputSectDesc
166 iterator end() { return m_OutputSectCmds.end(); } function in class:mcld::OutputSectDesc
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp165 const uint32_t* end = begin + n_entries; local
169 auto p = std::lower_bound(begin, end, c << 11);
170 if (p == end) {
188 * Note: len here is the padded length including 0 codes at start and end.
221 int end = std::min(pat_len, (int)maxOffset - offset); local
222 for (int k = start; k < end; k++) {
H A DLineBreaker.cpp101 // This function determines whether a character is a space that disappears at end of line.
160 FontStyle style, size_t start, size_t end, bool isRtl) {
168 layout.doLayout(mTextBuf.data(), start, end - start, mTextBuf.size(), bidiFlags, style,
188 for (size_t i = start; i < end; i++) {
208 if (isBreakValid(c, mTextBuf.data(), end, i + 1)) {
247 if (paint != nullptr || current == end || mCharWidths[current] > 0) {
334 void LineBreaker::addReplacement(size_t start, size_t end, float width) { argument
336 std::fill(&mCharWidths[start + 1], &mCharWidths[end], 0.0f);
337 addStyleRun(nullptr, nullptr, FontStyle(), start, end, false);
370 std::reverse(mBreaks.begin(), mBreaks.end());
159 addStyleRun(MinikinPaint* paint, const FontCollection* typeface, FontStyle style, size_t start, size_t end, bool isRtl) argument
[all...]
/frameworks/native/cmds/servicemanager/
H A Dbinder.c208 uintptr_t end = ptr + (uintptr_t) size; local
210 while (ptr < end) {
232 if ((end - ptr) < sizeof(*txn)) {
253 if ((end - ptr) < sizeof(*txn)) {
/frameworks/native/libs/binder/
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;
/frameworks/native/services/sensorservice/
H A Dvec.h315 iterator end() { return base::v + SIZE; } function in class:android::vec
317 const_iterator end() const { return base::v + SIZE; } function in class:android::vec
/frameworks/rs/api/
H A DGenerateStubsWhiteList.cpp64 if (type != types.end()) {
107 for (auto i = tokens.begin(); i != tokens.end();) {
120 tokens.insert(i, newTokens.begin(), newTokens.end());
144 auto end = tokens->end(); local
152 if (t == end || *t++ != a.token[i]) {
/frameworks/rs/cpu_ref/
H A DrsCpuCore.h69 RsLaunchDimensions end; member in struct:android::renderscript::MTLaunchStruct
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java30 * end (exclusive). The original order of elements is preserved.
31 * If {@code end} is greater than {@code original.length}, the result is padded
36 * @param end the end index, exclusive
39 * @throws IllegalArgumentException if {@code start > end}
42 private static float[] copyOfRange(float[] original, int start, int end) { argument
43 if (start > end) {
50 int resultLength = end - start;
84 int end = 1;
87 while (end < pathDat
158 nextStart(String s, int end) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStreamingTextView.java193 int wordEnd = textStart + m.end();
203 int end = textStart + text.length();
204 displayText.setSpan(span, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
208 * Sets the final, non changing, full text result. This should only happen at the very end of
244 public void draw(Canvas canvas, CharSequence text, int start, int end, argument
247 int width = (int) paint.measureText(text, start, end);
279 public int getSize(Paint paint, CharSequence text, int start, int end, argument
281 return (int) paint.measureText(text, start, end);
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp434 ALOGI("Received end-of-stream");
801 char* end; local
804 width = strtol(widthHeight, &end, 10);
805 if (end == widthHeight || *end != 'x' || *(end+1) == '\0') {
809 height = strtol(end + 1, &end, 10);
810 if (*end != '\0') {
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp119 goto end;
127 goto end;
133 goto end;
162 goto end;
200 goto end;
216 goto end;
270 goto end;
275 end:
421 goto end;
424 ALOGV("stream end receive
953 size_t end = mState.mLoopCount != 0 ? mState.mLoopEnd : mFrameCount; local
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp54 char *end; local
55 unsigned long res = strtoul(s, &end, 10);
56 return *s != '\0' && *end == '\0' && res > 0;
402 // [a-zA-Z0-9_.] and must start with media_codecs_ and end with .xml
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1946 UChar *end; local
1953 end = prev + (lx << 3);
1962 while ((uintptr_t)src < (uintptr_t)end);
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp132 while (it != mMessageQueue.end()) {
613 // 5% chance of seeking beyond end of stream.
744 it != componentInfos.end(); ++it) {
753 role_it != info.mRoles.end(); ++role_it) {
799 char *end; local
800 unsigned long x = strtoul(optarg, &end, 10);
802 if (*end != '\0' || end == optarg) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp825 char *end; local
826 *x = strtoul(from, &end, 10);
828 if (end == from || *end != '\0') {
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java287 public void recordData(long start, long end, long rxBytes, long txBytes) { argument
288 recordData(start, end, new NetworkStats.Entry(
296 public void recordData(long start, long end, NetworkStats.Entry entry) { argument
311 ensureBuckets(start, end);
314 long duration = end - start;
315 final int startIndex = getIndexAfter(end);
323 if (curStart > end) continue;
325 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
361 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
369 if (bucketStart < start || bucketEnd > end) continu
384 ensureBuckets(long start, long end) argument
473 getValues(long start, long end, Entry recycle) argument
481 getValues(long start, long end, long now, Entry recycle) argument
529 generateRandom(long start, long end, long bytes) argument
547 generateRandom(long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations, Random r) argument
574 randomLong(Random r, long start, long end) argument
581 intersects(long start, long end) argument
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java215 // seek forward to the end of the paragraph
303 // If the new layout has a blank line at the end, but it is not
304 // the very end of the buffer, then we already have a line that
413 * not on the end line of the previous block.
679 public void onSpanAdded(Spannable s, Object o, int start, int end) { argument
681 reflow(s, start, end - start, end - start);
684 public void onSpanRemoved(Spannable s, Object o, int start, int end) { argument
686 reflow(s, start, end - start, end
689 onSpanChanged(Spannable s, Object o, int start, int end, int nstart, int nend) argument
[all...]
H A DHtml.java199 int start, int end) {
201 for (int i = start; i < end; i = next) {
202 next = text.nextSpanTransition(i, end, QuoteSpan.class);
217 private static String getOpenParaTagWithDirection(Spanned text, int start, int end) { argument
218 final int len = end - start;
221 TextUtils.getChars(text, start, end, buffer, 0);
235 int start, int end) {
236 out.append(getOpenParaTagWithDirection(text, start, end));
239 for (int i = start; i < end; i = next) {
240 next = TextUtils.indexOf(text, '\n', i, end);
198 withinDiv(StringBuilder out, Spanned text, int start, int end) argument
234 withinBlockquote(StringBuilder out, Spanned text, int start, int end) argument
263 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
387 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
622 private static void end(SpannableStringBuilder text, Class kind, method in class:HtmlToSpannedConverter
[all...]
/frameworks/base/core/java/android/view/
H A DRenderNodeAnimator.java246 end();
251 public void end() { method in class:RenderNodeAnimator
461 int end = 0;
465 if (end != i) {
466 mDelayedAnims.set(end, animator);
468 end++;
471 while (mDelayedAnims.size() > end) {
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java126 public void setSelection(int start, int end) { argument
127 dispatchMessage(obtainMessageII(DO_SET_SELECTION, start, end));
138 public void setComposingRegion(int start, int end) { argument
139 dispatchMessage(obtainMessageII(DO_SET_COMPOSING_REGION, start, end));
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java846 private void assertNetworkTotal(NetworkTemplate template, long start, long end, long rxBytes, argument
850 assertValues(history, start, end, rxBytes, rxPackets, txBytes, txPackets, operations);
853 final NetworkStats stats = mSession.getSummaryForNetwork(template, start, end);
995 private static void assertValues(NetworkStatsHistory stats, long start, long end, long rxBytes, argument
997 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);
/frameworks/base/tools/aidl/
H A Daidl.cpp133 const char* end; local
145 end = text;
146 while (!isspace(*end) && *end != ';') {
147 end++;
149 len = end-text;
569 if (methodNames.find(m->name.data) == methodNames.end()) {
886 if (usedIds.find(method_item->assigned_id) != usedIds.end()) {
/frameworks/native/libs/ui/
H A DRegion.cpp94 static void reverseRectsResolvingJunctions(const Rect* begin, const Rect* end, argument
98 const Rect* current = end - 1;
196 reverseRectsResolvingJunctions(r.begin(), r.end(), reversed, direction_RTL);
199 reverseRectsResolvingJunctions(reversed.begin(), reversed.end(),
201 outputRegion.mStorage.add(r.getBounds()); // to make region valid, mStorage must end with bounds
236 const_iterator const tail = end();
517 const_iterator const tail = reg.end();
651 Region::const_iterator const tail = dst.end();
828 Region::const_iterator Region::end() const { function in class:android::Region
834 if (count) *count = static_cast<size_t>(end()
[all...]

Completed in 508 milliseconds

1234567891011>>