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

1234567891011>>

/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/minikin/libs/minikin/
H A DSparseBitSet.cpp38 uint32_t end = ranges[i * 2 + 1]; local
40 uint32_t endPage = (end - 1) >> kLogValuesPerPage;
74 uint32_t end = ranges[i * 2 + 1]; local
75 LOG_ALWAYS_FATAL_IF(end < start); // make sure range size is nonnegative
77 uint32_t endPage = (end - 1) >> kLogValuesPerPage;
92 size_t nElements = (end - (start & ~kElMask) + kElMask) >> kLogBitsPerEl;
95 (kElAllOnes << ((~end + 1) & kElMask));
101 mBitmaps[index + nElements - 1] |= kElAllOnes << ((~end + 1) & kElMask);
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver_gen.cpp33 const NameProc* end) {
35 begin, end, name,
37 if (entry == end || strcmp(entry->name, name) != 0)
31 Lookup(const char* name, const NameProc* begin, const NameProc* end) argument
/frameworks/support/v4/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java28 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
35 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
43 int start, int top, int end, int bottom) {
45 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
34 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
42 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
/frameworks/support/v4/jellybean-mr2/android/support/v4/widget/
H A DTextViewCompatJbMr2.java28 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
30 textView.setCompoundDrawablesRelative(start, top, end, bottom);
34 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
36 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
40 @DrawableRes int start, @DrawableRes int top, @DrawableRes int end,
42 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
33 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
39 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
/frameworks/wilhelm/src/ut/
H A DOpenSLESUT.c109 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])]; local
110 for (p = pairs; p != end; ++p) {
/frameworks/av/media/img_utils/src/
H A DEndianUtils.cpp22 EndianOutput::EndianOutput(Output* out, Endianness end) argument
23 : mOffset(0), mOutput(out), mEndian(end) {}
36 void EndianOutput::setEndianness(Endianness end) { argument
37 mEndian = end;
/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/av/services/audioflinger/
H A DStateQueue.cpp83 template<typename T> void StateQueue<T>::end(bool didModify) function in class:android::StateQueue
85 ALOG_ASSERT(mInMutation, "end() called when not in a mutation");
86 ALOG_ASSERT(mIsInitialized || didModify, "first end() must modify for initialization");
/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.java51 // These arrays may end up being too large because of the discarded empty spans
86 * @param end must be strictly greater than start
88 public boolean hasSpansIntersecting(int start, int end) { argument
91 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java38 * @param end End character index for span.
43 @IntRange(from = 0) int start, @IntRange(from = 0) int end,
52 * @param end End character index for span.
60 @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x,
42 getSize(@onNull Paint paint, CharSequence text, @IntRange(from = 0) int start, @IntRange(from = 0) int end, @Nullable Paint.FontMetricsInt fm) argument
59 draw(@onNull Canvas canvas, CharSequence text, @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x, int top, int y, int bottom, @NonNull Paint paint) 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/tools/aapt/
H A Dpseudolocalize.h11 virtual String16 end() { return String16(); } function in class:PseudoMethodImpl
35 String16 end();
50 String16 end() { return mImpl->end(); } function in class:Pseudolocalizer
/frameworks/base/tools/aapt2/link/
H A DProductFilter.cpp24 const ResourceConfigValueIter end,
26 ResourceConfigValueIter defaultProductIter = end;
27 ResourceConfigValueIter selectedProductIter = end;
29 for (ResourceConfigValueIter iter = begin; iter != end; ++iter) {
31 if (mProducts.find(configValue->product) != mProducts.end()) {
32 if (selectedProductIter != end) {
42 return end;
50 if (defaultProductIter != end) {
58 return end;
66 if (defaultProductIter == end) {
22 selectProductToKeep(const ResourceNameRef& name, const ResourceConfigValueIter begin, const ResourceConfigValueIter end, IDiagnostics* diag) argument
[all...]
/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/data-binding/compiler/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/developmentPlugins/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/integration-tests/App With Spaces/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/integration-tests/IndependentLibrary/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/integration-tests/TestApp/
H A Dgradlew.bat77 :end label
/frameworks/data-binding/samples/BindingDemo/
H A Dgradlew.bat77 :end label

Completed in 6758 milliseconds

1234567891011>>