Searched refs:end (Results 26 - 50 of 493) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/graphics/
H A DPaint.java271 * end of the path.
275 * The stroke projects out as a square, with the center at the end
773 * Return the paint's Cap, controlling how the start and end of stroked
1317 * @param end 1 beyond the index of the last character to measure
1320 public float measureText(String text, int start, int end) { argument
1324 if ((start | end | (end - start) | (text.length() - end)) < 0) {
1328 if (text.length() == 0 || start == end) {
1332 return native_measureText(text, start, end);
1342 native_measureText(String text, int start, int end) argument
1377 measureText(CharSequence text, int start, int end) argument
1465 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1586 getTextWidths(CharSequence text, int start, int end, float[] widths) argument
1630 getTextWidths(String text, int start, int end, float[] widths) argument
1690 getTextGlyphs(String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
1779 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1793 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1877 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex) argument
1926 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
2127 getTextPath(String text, int start, int end, float x, float y, Path path) argument
2146 getTextBounds(String text, int start, int end, Rect bounds) argument
2221 native_getTextWidths(int native_object, String text, int start, int end, float[] widths) argument
2224 native_getTextGlyphs(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2231 native_getTextRunAdvances(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
2242 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
2244 nativeGetStringBounds(int nativePaint, String text, int start, int end, Rect bounds) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java199 private void addSpellCheckSpan(Editable editable, int start, int end) { argument
202 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
221 public void spellCheck(int start, int end) { argument
223 Log.d(TAG, "Start spell-checking: " + start + ", " + end);
231 end = mTextView.getText().length();
247 spellParser.parse(start, end);
262 spellParser.parse(start, end);
280 final int end = editable.getSpanEnd(spellCheckSpan);
288 isEditing = selectionEnd <= start || selectionStart > end;
290 isEditing = selectionEnd < start || selectionStart > end;
506 parse(int start, int end) argument
529 setRangeSpan(Editable editable, int start, int end) argument
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp70 assert(m_GOTIterator != m_SectionData.getFragmentList().end()
88 X86GOT::iterator X86GOT::end() function in class:X86GOT
90 return m_SectionData.getFragmentList().end();
93 X86GOT::const_iterator X86GOT::end() const function in class:X86GOT
95 return m_SectionData.getFragmentList().end();
/frameworks/base/media/java/android/media/videoeditor/
H A DEffectKenBurns.java48 * @param endRect The end rectangle
79 * Get the end rectangle.
81 * @return The end rectangle
88 * Get the KenBurn effect start and end rectangle coordinates
92 * @param end The rect object to be populated with end
95 void getKenBurnsSettings(Rect start, Rect end) { argument
100 end.left = getEndRect().left;
101 end.top = getEndRect().top;
102 end
[all...]
/frameworks/base/core/java/android/text/
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 DSpannableStringInternal.java26 int start, int end) {
27 if (start == 0 && end == source.length())
30 mText = source.toString().substring(start, end);
38 Object[] spans = sp.getSpans(start, end, Object.class);
47 if (en > end)
48 en = end;
69 public final void getChars(int start, int end, char[] dest, int off) { argument
70 mText.getChars(start, end, dest, off);
73 /* package */ void setSpan(Object what, int start, int end, int flags) { argument
75 int nend = end;
25 SpannableStringInternal(CharSequence source, int start, int end) argument
307 sendSpanAdded(Object what, int start, int end) argument
316 sendSpanRemoved(Object what, int start, int end) argument
335 region(int start, int end) argument
339 checkRange(final String operation, int start, int end) argument
[all...]
H A DSpannable.java28 * Attach the specified markup object to the range <code>start&hellip;end</code>
39 public void setSpan(Object what, int start, int end, int flags); argument
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java136 public CharSequence subSequence(int start, int end) { argument
137 char[] c = new char[end - start];
139 getChars(start, end, c, 0);
150 public void getChars(int start, int end, char[] dest, int off) { argument
151 TextUtils.getChars(mSource, start, end, dest, off);
152 int offend = end - start + off;
179 public CharSequence subSequence(int start, int end) { argument
180 return new SpannedString(this).subSequence(start, end);
183 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
184 return mSpanned.getSpans(start, end, typ
199 nextSpanTransition(int start, int end, Class type) argument
[all...]
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--) {
/frameworks/compile/mclinker/lib/LD/
H A DSectionMap.cpp28 for (it = begin(); it != end(); ++it) {
38 if (it == end())
50 for (it = m_SectMap.begin(); it != m_SectMap.end(); ++it) {
65 for (it = begin(); it != end(); ++it) {
75 for (it = begin(); it != end(); ++it) {
79 if (end() == it)
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp75 current->end++;
81 m_OutputSymbols[current->end]);
83 current->end++;
94 m_pLocal->end++;
96 m_pCommon->end++;
98 m_pWeak->end++;
100 m_pGlobal->end++;
131 while (pos != current->end) {
137 assert(current->end != pos);
149 rear = current->end
253 SymbolCategory::iterator SymbolCategory::end() function in class:SymbolCategory
263 SymbolCategory::const_iterator SymbolCategory::end() const function in class:SymbolCategory
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h26 UInt end, match; local
33 end = 1;
35 end = 1 << (32 - nc);
37 while (match >= end)
73 end = 1 << (32 - nc);
74 while (match >= end)
117 UInt end, match; local
135 mov end, #0x80000000 local
136 mov end, end, ls local
176 mov end, #0x80000000 local
177 mov end, end, lsr run /* mask*/ local
231 UInt end = 0, match; local
[all...]
/frameworks/base/core/java/android/text/style/
H A DLineHeightSpan.java27 public void chooseHeight(CharSequence text, int start, int end, argument
32 public void chooseHeight(CharSequence text, int start, int end, argument
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 DLineBackgroundSpan.java28 CharSequence text, int start, int end,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
/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/av/media/libstagefright/httplive/
H A DM3UParser.cpp333 ssize_t end = line.find(",", offset); local
334 if (end < 0) {
335 end = line.size();
338 AString attr(line, offset, end - offset);
341 offset = end + 1;
358 char *end; local
359 unsigned long x = strtoul(s, &end, 10);
361 if (end == s || *end != '\0') {
411 ssize_t end local
490 char *end; local
516 char *end; local
530 char *end; local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp21 } // end of anonymous namespace
49 assert((it != m_SectionData.end()) && "Generation of GOT0 entries is incomplete!");
103 assert(m_NormalGOTIterator != m_SectionData.getFragmentList().end()
121 iterator end = getGOTPLTEnd(); local
123 for (;begin != end ;++begin)
142 ARMGOT::iterator ARMGOT::end() function in class:ARMGOT
144 return m_SectionData.getFragmentList().end();
147 ARMGOT::const_iterator ARMGOT::end() const function in class:ARMGOT
149 return m_SectionData.getFragmentList().end();
166 // Move to end o
167 iterator end = m_GOTPLTEnd; local
[all...]
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java240 int end = start + mPartitions[i].count;
241 if (position >= start && position < end) {
244 start = end;
257 int end = start + mPartitions[i].count;
258 if (position >= start && position < end) {
265 start = end;
309 int end = start + mPartitions[i].count;
310 if (position >= start && position < end) {
317 start = end;
327 int end
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A Dwfd.cpp66 char *end; local
67 connectToPort = strtol(colonPos + 1, &end, 10);
69 if (*end != '\0' || end == colonPos + 1
/frameworks/base/core/java/android/net/
H A DINetworkStatsSession.aidl27 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
32 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
/frameworks/compile/mclinker/include/mcld/LD/
H A DSectionData.h57 iterator end() { return m_Fragments.end(); } function in class:mcld::SectionData
58 const_iterator end() const { return m_Fragments.end(); } function in class:mcld::SectionData
H A DSectionMap.h73 iterator end() function in class:mcld::SectionMap
74 { return m_SectMap.end(); }
79 const_iterator end() const function in class:mcld::SectionMap
80 { return m_SectMap.end(); }
H A DSectionMerger.h73 iterator end() function in class:mcld::SectionMerger
74 { return m_LDSectionMap.end(); }
79 const_iterator end() const function in class:mcld::SectionMerger
80 { return m_LDSectionMap.end(); }
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttributeFactory.h81 iterator end() function in class:mcld::AttributeFactory
82 { return m_AttrSet.end(); }
87 const_iterator end() const function in class:mcld::AttributeFactory
88 { return m_AttrSet.end(); }

Completed in 1192 milliseconds

1234567891011>>