Searched refs:start (Results 1 - 25 of 1772) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/
H A DTextDirectionHeuristic.java27 * @param start start index, inclusive.
29 * {@code array.length - start}.
33 boolean isRtl(char[] array, int start, int count); argument
39 * @param start start index, inclusive.
41 * {@code CharSequence.length() - start}.
45 boolean isRtl(CharSequence cs, int start, int count); argument
H A DSpannableString.java33 private SpannableString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
45 public void setSpan(Object what, int start, int end, int flags) { argument
46 super.setSpan(what, start, end, flags);
53 public final CharSequence subSequence(int start, int end) { argument
54 return new SpannableString(this, start, end);
H A DTextWatcher.java26 * the <code>count</code> characters beginning at <code>start</code>
31 public void beforeTextChanged(CharSequence s, int start, argument
35 * the <code>count</code> characters beginning at <code>start</code>
40 public void onTextChanged(CharSequence s, int start, int before, int count); argument
H A DGetChars.java28 * Exactly like String.getChars(): copy chars <code>start</code>
32 public void getChars(int start, int end, char[] dest, int destoff); argument
H A DSpannedString.java33 private SpannedString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
37 public CharSequence subSequence(int start, int end) { argument
38 return new SpannedString(this, start, end);
H A DInputFilter.java28 * with the new text from the range <code>start &hellip; end</code>
42 public CharSequence filter(CharSequence source, int start, int end, argument
50 public CharSequence filter(CharSequence source, int start, int end, argument
52 for (int i = start; i < end; i++) {
54 char[] v = new char[end - start];
55 TextUtils.getChars(source, start, end, v, 0);
61 start, end, null, sp, 0);
84 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
89 } else if (keep >= end - start) {
92 keep += start;
[all...]
H A DAlteredCharSequence.java66 public <T> T[] getSpans(int start, int end, Class<T> kind) { argument
67 return mSpanned.getSpans(start, end, kind);
82 public int nextSpanTransition(int start, int end, Class kind) { argument
83 return mSpanned.nextSpanTransition(start, end, kind);
100 public CharSequence subSequence(int start, int end) { argument
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
102 mChars, mStart - start, mEnd - start);
105 public void getChars(int start, int end, char[] dest, int off) { argument
106 TextUtils.getChars(mSource, start, en
[all...]
/frameworks/support/compat/java/android/support/v4/text/
H A DTextDirectionHeuristicCompat.java27 * @param start start index, inclusive.
29 * {@code array.length - start}.
33 boolean isRtl(char[] array, int start, int count); argument
39 * @param start start index, inclusive.
41 * {@code CharSequence.length() - start}.
45 boolean isRtl(CharSequence cs, int start, int count); argument
/frameworks/base/libs/androidfw/
H A DResourceUtils.cpp27 const char* start = str.data(); local
28 const char* end = start + str.size();
29 const char* current = start;
33 out_type->assign(start, current - start);
34 start = current + 1;
37 out_package->assign(start, current - start);
38 start = current + 1;
42 out_entry->assign(start, en
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java26 void start(); method in interface:Animatable
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DVendorServices.java25 public void start() { method in class:VendorServices
/frameworks/av/media/libeffects/loudness/dsp/core/
H A Dbasic-inl.h31 int start = start_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
38 start = i;
41 return start;
/frameworks/base/sax/java/android/sax/
H A DStartElementListener.java31 void start(Attributes attributes); method in interface:StartElementListener
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DActiveModeManager.java28 * Method used to start the Manager for a given Wifi operational mode.
30 void start(); method in interface:ActiveModeManager
H A DClientModeManager.java32 public void start() { method in class:ClientModeManager
H A DScanOnlyModeManager.java32 public void start() { method in class:ScanOnlyModeManager
/frameworks/minikin/libs/minikin/
H A DMeasurement.cpp33 size_t start, size_t count, size_t offset) {
35 size_t lastCluster = start;
37 for (size_t i = start; i < offset; i++) {
45 if (offset < start + count && advances[offset - layoutStart] == 0.0f) {
50 for (nextCluster = offset + 1; nextCluster < start + count; nextCluster++) {
58 advances + (start - layoutStart), buf, start, count, i)) {
72 float getRunAdvance(const float* advances, const uint16_t* buf, size_t start, size_t count, argument
74 return getRunAdvance(advances, buf, start, start, coun
32 getRunAdvance(const float* advances, const uint16_t* buf, size_t layoutStart, size_t start, size_t count, size_t offset) argument
85 getOffsetForAdvance(const float* advances, const uint16_t* buf, size_t start, size_t count, float advance) argument
[all...]
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java56 protected int[] getRange(int start, int end) { argument
57 if (start < 0 || end < 0 || start == end) {
60 mSegment[0] = start;
102 int start = offset;
103 if (start < 0) {
104 start = 0;
106 while (!mImpl.isBoundary(start)) {
107 start = mImpl.following(start);
[all...]
/frameworks/base/core/java/android/net/
H A DUidRange.java32 public final int start; field in class:UidRange
36 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
39 start = startUid;
48 return start / PER_USER_RANGE;
52 return start <= uid && uid <= stop;
59 return start <= other.start && other.stop <= stop;
65 result = 31 * result + start;
77 return start == other.start
[all...]
/frameworks/base/core/java/android/animation/
H A DFloatArrayEvaluator.java58 * @param startValue The start value.
71 float start = startValue[i];
73 array[i] = start + (fraction * (end - start));
H A DIntArrayEvaluator.java57 * @param startValue The start value.
69 int start = startValue[i];
71 array[i] = (int) (start + (fraction * (end - start)));
/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);
55 * @param start index, inclusive
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);
66 return (char) bytes[index + start];
70 return end - start;
74 newStart -= start;
61 forAsciiBytes(final byte[] bytes, final int start, final int end) argument
86 validate(int start, int end, int length) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DDdmConnection.h30 static void start(const char* name);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextAttribute.java26 public int start; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align, argument
39 this.start = start;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodeVLCZigzag_IntraACVLC.c106 OMX_U8 start = 0; local
114 start);

Completed in 1220 milliseconds

1234567891011>>