Searched defs:end (Results 26 - 50 of 296) sorted by relevance

1234567891011>>

/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.cpp55 pcsList.erase(--pcsList.end());
84 List<ProcessCallStack>::iterator it, end; local
85 for (it = pcsList.begin(), end = pcsList.end(); it != end; ++it) {
/frameworks/base/core/java/android/text/
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;
H A DEditable.java30 * Editable with a copy of the slice <code>start&hellip;end</code> from
48 public Editable replace(int st, int en, CharSequence source, int start, int end); argument
57 * Convenience for replace(where, where, text, start, end)
60 public Editable insert(int where, CharSequence text, int start, int end); argument
81 * Convenience for replace(length(), length(), text, start, end)
84 public Editable append(CharSequence text, int start, int end); argument
H A DGraphicsOperations.java33 void drawText(Canvas c, int start, int end, argument
40 void drawTextRun(Canvas c, int start, int end, int contextStart, int contextEnd, argument
46 float measureText(int start, int end, Paint p); argument
51 public int getTextWidths(int start, int end, float[] widths, Paint p); argument
57 float getTextRunAdvances(int start, int end, int contextStart, int contextEnd, argument
H A DLoginFilter.java43 * with the new text from the range <code>start &hellip; end</code>
50 public CharSequence filter(CharSequence source, int start, int end, argument
65 for (int i = start; i < end; i++) {
75 modification = new SpannableStringBuilder(source, start, end);
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java26 int start, int end,
29 int start, int end, float x,
25 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
28 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
H A DDrawableMarginSpan.java43 CharSequence text, int start, int end,
57 public void chooseHeight(CharSequence text, int start, int end, argument
60 if (end == ((Spanned) text).getSpanEnd(this)) {
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DDynamicDrawableSpan.java75 int start, int end,
93 int start, int end, float x,
74 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
92 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
H A DIconMarginSpan.java43 CharSequence text, int start, int end,
54 public void chooseHeight(CharSequence text, int start, int end, argument
57 if (end == ((Spanned) text).getSpanEnd(this)) {
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java40 public CharSequence subSequence(int start, int end) {
41 return forAsciiBytes(bytes, start, end);
56 * @param end index, exclusive
58 * @throws IndexOutOfBoundsException if start or end are negative, if end
59 * is greater than length(), or if start is greater than end
62 final int start, final int end) {
63 validate(start, end, bytes.length);
70 return end - start;
86 static void validate(int start, int end, in argument
61 forAsciiBytes(final byte[] bytes, final int start, final int end) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_UEventObserver.cpp52 const char* end = buffer + length + 1; local
59 } while (field != end);
/frameworks/base/libs/hwui/
H A DQuery.h32 * To run an occlusion query successfully, you must start end end the query:
37 * query.end();
94 void end() { function in class:android::uirenderer::Query
127 * Calling this method implicitely calls end() if the query
133 end();
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat77 :end label
/frameworks/compile/mclinker/include/mcld/Script/
H A DSectionsCmd.h40 const_iterator end() const { return m_SectionCommands.end(); } function in class:mcld::SectionsCmd
41 iterator end() { return m_SectionCommands.end(); } function in class:mcld::SectionsCmd
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp53 char *end; local
55 unsigned long level = strtoul(current, &end, 10);
56 while (isspace(*end)) {
57 ++end;
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
/frameworks/base/core/java/android/print/
H A DPageRange.java23 * Represents a range of pages. The start and end page indices of
40 * @param end The end page index (zero based and inclusive).
42 * @throws IllegalArgumentException If start is less than zero or end
43 * is less than zero or start greater than end.
45 public PageRange(int start, int end) { argument
49 if (end < 0) {
50 throw new IllegalArgumentException("end cannot be less than zero.");
52 if (start > end) {
53 throw new IllegalArgumentException("start must be lesser than end
[all...]
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java138 public CharSequence filter(CharSequence source, int start, int end, argument
140 CharSequence out = super.filter(source, start, end, dest, dstart, dend);
149 end = out.length();
188 for (int i = end - 1; i >= start; i--) {
209 if (end == start + 1) {
214 stripped = new SpannableStringBuilder(source, start, end);
H A DNumberKeyListener.java47 public CharSequence filter(CharSequence source, int start, int end, argument
53 for (i = start; i < end; i++) {
59 if (i == end) {
64 if (end - start == 1) {
70 new SpannableStringBuilder(source, start, end);
72 end -= start;
74 int len = end - start;
76 for (int j = end - 1; j >= i; j--) {
H A DScrollingMovementMethod.java84 protected boolean end(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
H A DWordIterator.java58 public void setCharSequence(CharSequence charSequence, int start, int end) { argument
60 final int windowEnd = Math.min(charSequence.length(), end + WINDOW_WIDTH);
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java64 * @param end the end of the range of text (exclusive).
68 public TextInfo(CharSequence charSequence, int start, int end, int cookie, int sequenceNumber) { argument
74 new SpannableStringBuilder(charSequence, start, end);
/frameworks/base/core/java/android/widget/
H A DRtlSpacingHelper.java21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
54 public void setRelative(int start, int end) { argument
56 mEnd = end;
59 if (end != UNDEFINED) mLeft = end;
63 if (end != UNDEFINED) mRight = end;
/frameworks/base/include/androidfw/
H A DAttributeFinder.h59 BackTrackingAttributeFinder(const Iterator& begin, const Iterator& end);
84 BackTrackingAttributeFinder<Derived, Iterator>::BackTrackingAttributeFinder(const Iterator& begin, const Iterator& end) argument
87 , mEnd(end)
92 , mFrameworkStart(end)
93 , mAppStart(end) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java57 updateLineCount(mOffset, matcher.end());
58 mOffset = matcher.end();
59 result = mInput.substring(matcher.start(), matcher.end());
96 updateLineCount(mOffset, matcher.end());
97 mOffset = matcher.end();
115 public void updateLineCount(int start, int end) { argument
116 for (int i = start; i < end; ++i) {

Completed in 358 milliseconds

1234567891011>>