Searched defs:end (Results 101 - 125 of 455) sorted by relevance

1234567891011>>

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewGroupBindingAdapter.java75 final OnAnimationEnd end, final OnAnimationRepeat repeat) {
76 if (start == null && end == null && repeat == null) {
89 if (end != null) {
90 end.onAnimationEnd(animation);
74 setListener(ViewGroup view, final OnAnimationStart start, final OnAnimationEnd end, final OnAnimationRepeat repeat) argument
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DDispatchThread.java94 public void end() { method in class:DispatchThread
/frameworks/hardware/interfaces/sensorservice/1.0/vts/functional/
H A DVtsHalSensorManagerV1_0TargetTest.cpp72 static ::testing::AssertionResult isIncreasing(I begin, I end, F getField) { argument
76 for (iter = begin, pos = 0; iter != end; ++iter, ++pos) {
248 EXPECT_TRUE(isIncreasing(events.begin(), events.end(), [](const auto &event) {
/frameworks/native/cmds/lshal/
H A DTableEntry.h71 Entries::iterator end() { return entries.end(); } function in struct:android::lshal::Table
72 Entries::const_iterator end() const { return entries.end(); } function in struct:android::lshal::Table
H A DTimeout.h41 bool wait(std::chrono::time_point<C, D> end) { argument
43 mCondVar.wait_until(lock, end, [this](){ return this->mFinished; });
/frameworks/native/libs/input/
H A DVirtualKeyMap.cpp134 ALOGE("%s: Expected end of line, got '%s'.",
163 char* end; local
164 *outValue = strtol(token.string(), &end, 0);
165 if (token.isEmpty() || *end != '\0') {
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Darray_wrapper.h75 pointer end() { return &buffer_[end_]; } function in class:android::pdx::rpc::ArrayWrapper
77 const_pointer end() const { return &buffer_[end_]; } function in class:android::pdx::rpc::ArrayWrapper
83 // Moves the end marker to |size|, clamping the end marker to the max capacity
H A Dserializable.h109 const void*& start, const void* end) {
114 DeserializeArrayType(&encoding, &size, reader, start, end)) {
119 return DeserializeMembers<SerializableMembers>(value, reader, start, end);
108 DeserializeObject(T* value, MessageReader* reader, const void*& start, const void* end) argument
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DEmojiSpan.java77 final int end, final Paint.FontMetricsInt fm) {
76 getSize(@onNull final Paint paint, final CharSequence text, final int start, final int end, final Paint.FontMetricsInt fm) argument
/frameworks/support/emoji/core/src/android/support/text/emoji/widget/
H A DEmojiInputFilter.java121 static void updateSelection(Spannable spannable, final int start, final int end) { argument
122 if (start >= 0 && end >= 0) {
123 Selection.setSelection(spannable, start, end);
126 } else if (end >= 0) {
127 Selection.setSelection(spannable, end);
/frameworks/support/v7/appcompat/src/android/support/v7/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/av/include/media/
H A DRingBuffer.h130 * Get an iterator to the end of this RingBuffer.
132 iterator end();
140 * Get a const_iterator to the end of this RingBuffer.
142 const_iterator end() const;
310 typename RingBuffer<T>::iterator RingBuffer<T>::end() { function in class:android::RingBuffer
323 typename RingBuffer<T>::const_iterator RingBuffer<T>::end() const { function in class:android::RingBuffer
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffWriter.h94 Endianness end = LITTLE);
107 virtual status_t write(Output* out, Endianness end = LITTLE);
190 * Create an empty IFD with the given ID and add it to the end of the
244 uint32_t count, Endianness end, const T* data);
315 Endianness end, const T* data) {
316 TiffEntryImpl<T>* entry = new TiffEntryImpl<T>(tag, type, count, end, data);
314 uncheckedBuildEntry(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data) argument
/frameworks/av/media/libmedia/
H A DMetadata.cpp73 const size_t end = mData->dataPosition(); local
76 mData->writeInt32(end - mBegin);
77 mData->setDataPosition(end);
/frameworks/av/media/libmedia/include/media/
H A DRingBuffer.h130 * Get an iterator to the end of this RingBuffer.
132 iterator end();
140 * Get a const_iterator to the end of this RingBuffer.
142 const_iterator end() const;
310 typename RingBuffer<T>::iterator RingBuffer<T>::end() { function in class:android::RingBuffer
323 typename RingBuffer<T>::const_iterator RingBuffer<T>::end() const { function in class:android::RingBuffer
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp1212 UChar *end; local
1217 end = pred + (16 << 3);
1231 while (pred < end) ;
1249 UChar *end; local
1255 end = cur + (width << 3);
1272 while (cur < end) ;
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp55 char *end; local
57 long level = strtol(current, &end, 10);
58 while (isspace(*end)) {
59 ++end;
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp218 char *end; local
219 unsigned long x = strtoul(portString.c_str(), &end, 10);
220 if (end == portString.c_str() || *end != '\0') {
/frameworks/base/cmds/incident/
H A Dmain.cpp166 char* end; local
168 int section = strtol(arg, &end, 0);
169 if (*end == '\0') {
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java185 protected void deleteText_internal(int start, int end) { argument
188 mIME.onExtractedDeleteText(start, end);
196 protected void replaceText_internal(int start, int end, CharSequence text) { argument
199 mIME.onExtractedReplaceText(start, end, text);
207 protected void setSpan_internal(Object span, int start, int end, int flags) { argument
210 mIME.onExtractedSetSpan(span, start, end, flags);
218 protected void setCursorPosition_internal(int start, int end) { argument
221 mIME.onExtractedSelectionChanged(start, end);
/frameworks/base/core/java/android/speech/tts/
H A DPlaybackSynthesisCallback.java276 public void rangeStart(int markerInFrames, int start, int end) { argument
281 mItem.rangeStart(markerInFrames, start, end);
/frameworks/base/core/java/android/text/
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),
105 public void getChars(int start, int end, char[] dest, int off) { argument
106 TextUtils.getChars(mSource, start, end, dest, off);
109 end = Math.min(mEnd, end);
[all...]
H A DAutoText.java108 public static String get(CharSequence src, final int start, final int end, argument
110 return getInstance(view).lookup(src, start, end);
131 private String lookup(CharSequence src, final int start, final int end) { argument
134 for (int i = start; i < end; i++) {
139 if ((i == end - 1)
225 // end, so fill in the right hand side fields.
252 // If this is the end of the word, fill in the offset.
H A DMeasuredText.java100 void setPara(CharSequence text, int start, int end, TextDirectionHeuristic textDir, argument
106 int len = end - start;
116 TextUtils.getChars(text, start, end, mChars, 0);
120 ReplacementSpan[] spans = spanned.getSpans(start, end,
126 // The span interval may be larger and must be restricted to [start, end[
H A DSpanned.java40 * Depending on whether the insertion happens at the beginning or the end of a span, the span
42 * its beginning or a POINT at its end) or it will be <i>excluded</i>.
74 * (SPAN_MARK_MARK), except that if either end of the span is
75 * at the end of the buffer, that end behaves like _POINT
77 * middle and ends at the end, or SPAN_EXCLUSIVE_INCLUSIVE
78 * if it both starts and ends at the end).
80 * Its endpoints must be the start or end of the buffer or
83 * next \n that follows in the buffer (or to the end of
170 public <T> T[] getSpans(int start, int end, Clas argument
[all...]

Completed in 309 milliseconds

1234567891011>>