Searched defs:start (Results 176 - 200 of 830) sorted by relevance

1234567891011>>

/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
H A DSpringAnimation.java37 * // default spring to 0, and start the animation with a starting velocity of 5000 (pixel/s).
40 * anim.start();
50 * // Create an animation to animate view's scaleY property, and start the animation using
55 * anim.start();
133 public void start() { method in class:SpringAnimation
136 super.start();
147 * immediately start the animation.
159 start();
/frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
H A DEmojiSpan.java77 public int getSize(@NonNull final Paint paint, final CharSequence text, final int start, argument
/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
H A DEmojiInputFilter.java125 static void updateSelection(Spannable spannable, final int start, final int end) { argument
126 if (start >= 0 && end >= 0) {
127 Selection.setSelection(spannable, start, end);
128 } else if (start >= 0) {
129 Selection.setSelection(spannable, start);
H A DEmojiTextWatcher.java68 public void onTextChanged(CharSequence charSequence, final int start, final int before, argument
79 EmojiCompat.get().process(s, start, start + after, mMaxEmojiCount,
94 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
H A DRegisteredMediaRouteProviderWatcher.java55 public void start() { method in class:RegisteredMediaRouteProviderWatcher
105 provider.start();
110 provider.start(); // restart the provider if needed
/frameworks/support/room/runtime/src/test/java/androidx/room/
H A DBuilderTest.java278 EmptyMigration(int start, int end) { argument
279 super(start, end);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/
H A DViewPropertyAnimatorCompatSet.java67 public void start() { method in class:ViewPropertyAnimatorCompatSet
79 animator.start();
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/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
55 mStart = start;
60 if (start != UNDEFINED) mRight = start;
62 if (start != UNDEFINED) mLeft = start;
/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp57 status_t Overlay::start(const sp<IGraphicBufferProducer>& outputSurface, function in class:Overlay
59 ALOGV("Overlay::start");
81 ALOGE("Failed to start overlay thread: err=%d", mThreadResult);
86 ALOGV("Overlay::start successful");
/frameworks/av/media/libaaudio/src/client/
H A DIsochronousClockModel.cpp50 void IsochronousClockModel::start(int64_t nanoTime) { function in class:IsochronousClockModel
51 ALOGV("start(nanos = %lld)\n", (long long) nanoTime);
/frameworks/av/media/libaudioclient/
H A DPlayerBase.cpp94 ALOGW("PlayerBase::start() error %d", status);
122 binder::Status PlayerBase::start() { function in class:android::PlayerBase
123 ALOGD("PlayerBase::start() from IPlayer");
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h86 virtual status_t start() {return mPlayer->start();} function in class:android::TestPlayerStub
/frameworks/av/media/libstagefright/
H A DAMRWriter.cpp97 status_t AMRWriter::start(MetaData * /* params */) { function in class:android::AMRWriter
115 status_t err = mSource->start();
/frameworks/av/media/libstagefright/codecs/amrnb/enc/test/
H A Damrnb_enc_test.cpp71 clock_t start, finish; local
118 start = clock();
133 duration += finish - start;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegCompressor.cpp39 status_t JpegCompressor::start(const Vector<CpuConsumer::LockedBuffer*>& buffers, function in class:android::camera2::JpegCompressor
57 ALOGE("%s: Unable to start up compression thread: %s (%d)",
/frameworks/base/cmds/incidentd/src/
H A DPrivacyBuffer.cpp95 size_t start = mData.rp()->pos(); local
96 uint64_t token = mProto.start(encode_field_id(policy));
97 while (mData.rp()->pos() - start != msgSize) {
/frameworks/base/cmds/statsd/src/matchers/
H A Dmatcher_util.cpp102 const vector<FieldValue>& values, int start, int end, int depth) {
108 if (start >= end) {
117 for (int i = start; i < end; i++) {
130 start = newStart;
133 if (start == -1) {
147 for (int i = start; i < end; i++) {
156 ranges.push_back(std::make_pair(start, end));
161 for (int i = start; i < end; i++) {
163 start = i;
167 ranges.push_back(std::make_pair(start, en
101 matchesSimple(const UidMap& uidMap, const FieldValueMatcher& matcher, const vector<FieldValue>& values, int start, int end, int depth) argument
[all...]
/frameworks/base/cmds/statsd/src/metrics/
H A DValueMetricProducer.h78 // we simply flush and reset the current bucket start.
132 // Pulled data always come in pair of <start, end>. This holds the value
133 // for start. The diff (end - start) is added to sum.
134 int64_t start; member in struct:android::os::statsd::ValueMetricProducer::__anon791
135 // Whether the start data point is updated
137 // If end data point comes before the start, record this pair as tainted
155 // Pairs of (elapsed start, elapsed end) denoting buckets that were skipped.
/frameworks/base/cmds/statsd/tests/e2e/
H A DPartialBucket_e2e_test.cpp114 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
117 service.mProcessor->OnLogEvent(CreateAppCrashEvent(100, start + 1).get());
118 service.mProcessor->OnLogEvent(CreateAppCrashEvent(100, start + 2).get());
120 ConfigMetricsReport report = GetReports(service.mProcessor, start + 3);
128 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
132 service.mProcessor->OnLogEvent(CreateAppCrashEvent(100, start + 1).get());
135 service.mUidMap->updateApp(start + 2, String16(kApp1.c_str()), 1, 2);
137 service.mProcessor->OnLogEvent(CreateAppCrashEvent(100, start
146 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
169 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
194 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
211 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
234 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
251 int64_t start = getElapsedRealtimeNs(); // This is the start-time the metrics producers are local
[all...]
/frameworks/base/core/java/android/animation/
H A DStateListAnimator.java181 start(match);
185 private void start(Tuple match) { method in class:StateListAnimator
188 mRunningAnimator.start();
/frameworks/base/core/java/android/app/admin/
H A DFreezePeriod.java30 * two {@link java.time#MonthDay} values that define the start and end dates of the period, both
31 * inclusive. If the end date is earlier than the start date, the period is considered wrapped
58 * Creates a freeze period by its start and end dates. If the end date is earlier than the start
61 public FreezePeriod(MonthDay start, MonthDay end) { argument
62 mStart = start;
69 * Returns the start date (inclusive) of this freeze period.
118 // ---[start---now---end]---
121 // ---end]---[start---now---
122 // or ---now---end]---[start
[all...]
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java213 public void characters(char[] ch, int start, int length) argument
229 public void ignorableWhitespace(char[] ch, int start, int length) argument
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java108 int start = rowCount++ * columnCount;
109 ensureCapacity(start + columnCount);
110 System.arraycopy(columnValues, 0, data, start, columnCount);
123 int start = rowCount * columnCount;
124 int end = start + columnCount;
128 addRow((ArrayList<?>) columnValues, start);
132 int current = start;
154 private void addRow(ArrayList<?> columnValues, int start) { argument
164 localData[start + i] = columnValues.get(i);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DGLThreadManager.java154 public void start() { method in class:GLThreadManager
155 mGLHandlerThread.start();
/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);

Completed in 7463 milliseconds

1234567891011>>