Searched defs:start (Results 151 - 175 of 722) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSendKeyAction.java50 // {@link #start()} and lasts for {@link #AWAIT_LONGPRESS_MS}.
82 public boolean start() { method in class:SendKeyAction
168 // The first key press lasts long enough to start press-and-hold.
H A DSystemAudioStatusAction.java47 boolean start() { method in class:SystemAudioStatusAction
H A DTimerRecordingAction.java55 boolean start() { method in class:TimerRecordingAction
/frameworks/base/services/net/java/android/net/util/
H A DBlockingSocketReader.java70 public final boolean start() { method in class:BlockingSocketReader
83 mThread.start();
H A DIpUtils.java46 private static int checksum(ByteBuffer buf, int seed, int start, int end) { argument
52 buf.position(start);
58 final int numShorts = (end - start) / 2;
62 start += numShorts * 2;
65 if (end != start) {
66 short b = buf.get(start);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberFormattingTextWatcher.java75 public void beforeTextChanged(CharSequence s, int start, int count, argument
81 if (count > 0 && hasSeparator(s, start, count)) {
87 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
92 if (count > 0 && hasSeparator(s, start, count)) {
165 private boolean hasSeparator(final CharSequence s, final int start, final int count) { argument
166 for (int i = start; i < start + count; i++) {
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DService.java60 public void start() { method in class:Service
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewGroupBindingAdapter.java74 public static void setListener(ViewGroup view, final OnAnimationStart start, argument
76 if (start == null && end == null && repeat == null) {
82 if (start != null) {
83 start.onAnimationStart(animation);
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DListChangeRegistry.java44 callback.onItemRangeChanged(sender, listChanges.start, listChanges.count);
47 callback.onItemRangeInserted(sender, listChanges.start, listChanges.count);
50 callback.onItemRangeMoved(sender, listChanges.start, listChanges.to,
54 callback.onItemRangeRemoved(sender, listChanges.start, listChanges.count);
76 * @param start The index of the first changed element.
79 public void notifyChanged(ObservableList list, int start, int count) { argument
80 ListChanges listChanges = acquire(start, 0, count);
88 * @param start The index where the elements were inserted.
91 public void notifyInserted(ObservableList list, int start, int count) { argument
92 ListChanges listChanges = acquire(start,
116 notifyRemoved(ObservableList list, int start, int count) argument
121 acquire(int start, int to, int count) argument
146 public int start; field in class:ListChangeRegistry.ListChanges
[all...]
H A DObservableArrayList.java116 private void notifyAdd(int start, int count) { argument
118 mListeners.notifyInserted(this, start, count);
122 private void notifyRemove(int start, int count) { argument
124 mListeners.notifyRemoved(this, start, count);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DCallbackBindingObject.java64 void beforeTextChanged(CharSequence s, int start, int count, int after); argument
66 void onTextChanged(CharSequence s, int start, int before, int count); argument
/frameworks/minikin/libs/minikin/
H A DGraphemeBreak.cpp59 bool GraphemeBreak::isGraphemeBreak(const float* advances, const uint16_t* buf, size_t start, argument
67 if (offset <= start || offset >= start + count) {
78 U16_PREV(buf, start, offset_back, c1);
79 U16_NEXT(buf, offset_forward, start + count, c2);
113 const bool c2_has_advance = (advances != nullptr && advances[offset - start] != 0.0);
136 if (p0 == U_GCB_EXTEND && offset_backback > start) {
138 U16_PREV(buf, start, offset_backback, c0);
151 if (p1 == U_GCB_ZWJ && isEmoji(c2) && offset_back > start) {
155 U16_PREV(buf, start, offset_backbac
205 getTextRunCursor(const float* advances, const uint16_t* buf, size_t start, size_t count, size_t offset, MoveOpt opt) argument
[all...]
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/native/libs/vr/libpdx/private/pdx/rpc/
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/native/opengl/tests/swapinterval/
H A Dswapinterval.cpp107 nsecs_t start = systemTime(); local
116 t = systemTime() - start;
/frameworks/native/services/vr/performanced/
H A Dtask.cpp31 const char* start = value.c_str(); local
33 ids[0] = std::strtol(start, const_cast<char**>(&start), 10);
34 ids[1] = std::strtol(start, const_cast<char**>(&start), 10);
35 ids[2] = std::strtol(start, const_cast<char**>(&start), 10);
36 ids[3] = std::strtol(start, const_cast<char**>(&start), 10);
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetServiceImpl.java83 public void start() { method in class:EthernetServiceImpl
87 handlerThread.start();
90 mTracker.start(mContext, mHandler);
127 mTracker.start(mContext, mHandler);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareRttStateManager.java57 public void start(Context context, Looper looper) { method in class:WifiAwareRttStateManager
58 if (VDBG) Log.v(TAG, "start()");
63 Log.e(TAG, "start(): not able to get WIFI_RTT_SERVICE");
79 Log.e(TAG, "start(): not able to getMessenger() of WIFI_RTT_SERVICE");
/frameworks/rs/driver/
H A DrsdMeshObj.cpp133 size_t start, uint32_t len) const {
175 (uint16_t *)(start * 2));
182 RSD_CALL_GL(glDrawArrays, mGLPrimitives[primIndex], start, len);
132 renderPrimitiveRange(const Context *rsc, uint32_t primIndex, size_t start, uint32_t len) const argument
/frameworks/support/design/base/android/support/design/widget/
H A DStateListAnimator.java79 start(match);
83 private void start(Tuple match) { method in class:StateListAnimator
85 mRunningAnimator.start();
/frameworks/support/dynamic-animation/src/android/support/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/android/support/text/emoji/
H A DEmojiSpan.java76 public int getSize(@NonNull final Paint paint, final CharSequence text, final int start, 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);
124 } else if (start >= 0) {
125 Selection.setSelection(spannable, start);
H A DEmojiTextWatcher.java58 public void onTextChanged(CharSequence charSequence, final int start, final int before, argument
69 EmojiCompat.get().process(s, start, start + after, mMaxEmojiCount);
78 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DViewPropertyAnimatorCompatSet.java66 public void start() { method in class:ViewPropertyAnimatorCompatSet
78 animator.start();

Completed in 6714 milliseconds

1234567891011>>