Searched defs:end (Results 76 - 100 of 387) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationUtils.java43 public static float interpolate(float start, float end, float amount) { argument
44 return start * (1.0f - amount) + end * amount;
/frameworks/base/services/net/java/android/net/util/
H A DIpUtils.java46 private static int checksum(ByteBuffer buf, int seed, int start, int end) { argument
58 final int numShorts = (end - start) / 2;
65 if (end != start) {
/frameworks/base/tools/aapt2/util/
H A DBigBuffer.h32 * block is allocated and appended to the end of the list.
101 const_iterator end() const;
134 std::move(buffer.mBlocks.begin(), buffer.mBlocks.end(), std::back_inserter(mBlocks));
155 inline BigBuffer::const_iterator BigBuffer::end() const { function in class:aapt::BigBuffer
156 return mBlocks.end();
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocData.h83 const_iterator end() const { return m_Relocations.end(); } function in class:mcld::RelocData
84 iterator end() { return m_Relocations.end(); } function in class:mcld::RelocData
H A DSectionData.h75 const_iterator end() const { return m_Fragments.end(); } function in class:mcld::SectionData
76 iterator end() { return m_Fragments.end(); } function in class:mcld::SectionData
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h58 Path& assign(InputIterator begin, InputIterator end);
64 Path& append(InputIterator begin, InputIterator end);
131 Path& Path::assign(InputIterator begin, InputIterator end) { argument
133 if (begin != end)
134 m_PathName.append<InputIterator>(begin, end);
139 Path& Path::append(InputIterator begin, InputIterator end) { argument
140 if (begin == end)
143 m_PathName.append<InputIterator>(begin, end);
H A DTargetRegistry.h40 static iterator end() { return s_TargetList.end(); } function in class:mcld::TargetRegistry
124 TargetRegistry::iterator target, ie = TargetRegistry::end();
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h64 const_iterator end() const { return m_SectionData->end(); } function in class:mcld::GOT
65 iterator end() { return m_SectionData->end(); } function in class:mcld::GOT
H A DPLT.h75 const_iterator end() const { return m_pSectionData->end(); } function in class:mcld::PLT
76 iterator end() { return m_pSectionData->end(); } function in class:mcld::PLT
/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp47 SectionData::iterator BranchIsland::end() { function in class:mcld::BranchIsland
50 return m_Entry.getParent()->end();
53 SectionData::const_iterator BranchIsland::end() const { function in class:mcld::BranchIsland
56 return m_Entry.getParent()->end();
89 if (it != m_StubMap.end()) {
113 sd->getFragmentList().insert(end(), align_frag);
119 sd->getFragmentList().insert(end(), &pStub);
139 sd->getFragmentList().insert(end(), align_frag);
145 sd->getFragmentList().insert(end(), &pStub);
H A DDebugString.cpp43 SectionData::iterator it, end = pSection.getSectionData()->end(); local
44 for (it = pSection.getSectionData()->begin(); it != end; ++it) {
H A DGroupReader.cpp114 ArchiveListType::iterator end = ar_list.end(); local
118 for (it = ar_list.begin(); it != end; ++it) {
130 for (it = ar_list.begin(); it != end; ++it) {
139 for (it = ar_list.begin(); it != end; ++it) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp26 end = sectData->end(); it != end; ++it) {
36 assert(m_Inputs.find(pInput) == m_Inputs.end() &&
45 for (ARMInputExMap::iterator it = exMap->begin(), end = exMap->end();
46 it != end; ++it) {
55 end = pModule.obj_end(); it != end; ++it) {
68 end
83 ARMInputExMap::iterator end = exMap->end(); local
[all...]
H A DARMGOT.cpp19 } // end of anonymous namespace
55 SectionData::iterator frag, fragEnd = m_SectionData->end();
64 entry_iterator it, end = m_GOTPLT.end(); local
65 for (it = m_GOTPLT.begin(); it != end; ++it) {
78 entry_iterator it, end = m_GOT.end(); local
79 for (it = m_GOT.begin(); it != end; ++it) {
105 e_end = m_SectionData->end();
120 for (iterator it = begin(), ie = end(); i
[all...]
/frameworks/compile/mclinker/unittests/
H A DBinTreeTest.cpp272 BinaryTree<int>::iterator end = m_pTestee->end(); local
284 ASSERT_TRUE(it == end);
291 ASSERT_TRUE(it == end);
/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/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/support/design/honeycomb-mr1/android/support/design/widget/
H A DValueAnimatorCompatImplHoneycombMr1.java113 public void end() { method in class:ValueAnimatorCompatImplHoneycombMr1
114 mValueAnimator.end();
/frameworks/support/v4/java/android/support/v4/widget/
H A DTextViewCompat.java39 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
42 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
45 @DrawableRes int start, @DrawableRes int top, @DrawableRes int end,
55 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
57 textView.setCompoundDrawables(start, top, end, bottom);
62 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
64 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
69 @DrawableRes int start, @DrawableRes int top, @DrawableRes int end,
71 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
105 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
38 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
41 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
44 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
54 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
61 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
68 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
104 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
111 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
119 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
129 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
136 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
145 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
192 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
212 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
236 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
[all...]
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java55 public static void setPaddingRelative(View view, int start, int top, int end, int bottom) { argument
56 view.setPaddingRelative(start, top, end, bottom);
/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);

Completed in 1072 milliseconds

1234567891011>>