Searched defs:dest (Results 176 - 200 of 261) sorted by relevance

1234567891011

/frameworks/base/core/java/android/view/
H A DFocusFinder.java375 * checks whether the dest is at least partially to the direction of (e.g left of)
424 boolean isToDirectionOf(int direction, Rect src, Rect dest) { argument
427 return src.left >= dest.right;
429 return src.right <= dest.left;
431 return src.top >= dest.bottom;
433 return src.bottom <= dest.top;
441 * of source to the edge nearest in the given direction of dest. If the
442 * dest is not in the direction from source, return 0.
444 static int majorAxisDistance(int direction, Rect source, Rect dest) { argument
445 return Math.max(0, majorAxisDistanceRaw(direction, source, dest));
448 majorAxisDistanceRaw(int direction, Rect source, Rect dest) argument
469 majorAxisDistanceToFarEdge(int direction, Rect source, Rect dest) argument
473 majorAxisDistanceToFarEdgeRaw(int direction, Rect source, Rect dest) argument
496 minorAxisDistance(int direction, Rect source, Rect dest) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java348 * @param dest The {@link Parcel} to be written.
351 public void writeToParcel(Parcel dest, int flags) { argument
352 dest.writeInt(inputType);
353 dest.writeInt(imeOptions);
354 dest.writeString(privateImeOptions);
355 TextUtils.writeToParcel(actionLabel, dest, flags);
356 dest.writeInt(actionId);
357 dest.writeInt(initialSelStart);
358 dest.writeInt(initialSelEnd);
359 dest
[all...]
H A DInputMethodInfo.java392 * @param dest The {@link Parcel} to be written.
396 public void writeToParcel(Parcel dest, int flags) { argument
397 dest.writeString(mId);
398 dest.writeString(mSettingsActivityName);
399 dest.writeInt(mIsDefaultResId);
400 dest.writeInt(mIsAuxIme ? 1 : 0);
401 mService.writeToParcel(dest, flags);
402 dest.writeTypedList(mSubtypes);
H A DInputMethodSubtype.java350 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
351 dest.writeInt(mSubtypeNameResId);
352 dest.writeInt(mSubtypeIconResId);
353 dest.writeString(mSubtypeLocale);
354 dest.writeString(mSubtypeMode);
355 dest.writeString(mSubtypeExtraValue);
356 dest.writeInt(mIsAuxiliary ? 1 : 0);
357 dest.writeInt(mOverridesImplicitlyEnabledSubtype ? 1 : 0);
358 dest.writeInt(mSubtypeHashCode);
359 dest
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java200 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
201 dest.writeInt(mSubtypeNameResId);
202 dest.writeString(mSubtypeLocale);
203 dest.writeString(mSubtypeExtraValue);
/frameworks/base/core/tests/coretests/src/android/view/
H A DFocusFinderTest.java43 new Rect(0, 50, 10, 60)); // dest (left, top, right, bottom)
50 final Rect dest = new Rect(src);
51 dest.offset(0, -src.height());
52 assertEquals(src.top, dest.bottom);
54 assertDirectionIsCandidate(View.FOCUS_UP, src, dest);
522 private void assertIsNotCandidate(int direction, Rect src, Rect dest) { argument
528 src, dest, directionStr);
529 assertFalse(assertMsg, mFocusFinder.isCandidate(src, dest, direction));
543 private void assertDirectionIsCandidate(int direction, Rect src, Rect dest) { argument
549 src, dest, directionSt
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrengthCdma.java332 public void writeToParcel(Parcel dest, int flags) { argument
334 dest.writeInt(mCdmaDbm);
335 dest.writeInt(mCdmaEcio);
336 dest.writeInt(mEvdoDbm);
337 dest.writeInt(mEvdoEcio);
338 dest.writeInt(mEvdoSnr);
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramData.java120 * @param dest The Parcel in which the object should be written.
124 public void writeToParcel(Parcel dest, int flags) { argument
125 dest.writeInt(mOperation);
126 dest.writeInt(mCategory);
127 dest.writeInt(mLanguage);
128 dest.writeInt(mMaxMessages);
129 dest.writeInt(mAlertOption);
130 dest.writeString(mCategoryName);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDatePicker.java340 public void writeToParcel(Parcel dest, int flags) { argument
341 super.writeToParcel(dest, flags);
342 dest.writeInt(mYear);
343 dest.writeInt(mMonth);
344 dest.writeInt(mDay);
345 dest.writeInt(mHasYear ? 1 : 0);
346 dest.writeInt(mYearOptional ? 1 : 0);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiInfo.java316 public void writeToParcel(Parcel dest, int flags) { argument
317 dest.writeInt(mNetworkId);
318 dest.writeInt(mRssi);
319 dest.writeInt(mLinkSpeed);
321 dest.writeByte((byte)1);
322 dest.writeByteArray(mIpAddress.getAddress());
324 dest.writeByte((byte)0);
327 dest.writeInt(1);
328 mWifiSsid.writeToParcel(dest, flags);
330 dest
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java322 public void writeToParcel(Parcel dest, int flags) { argument
323 dest.writeString(deviceName);
324 dest.writeString(deviceAddress);
325 dest.writeString(primaryDeviceType);
326 dest.writeString(secondaryDeviceType);
327 dest.writeInt(wpsConfigMethodsSupported);
328 dest.writeInt(deviceCapability);
329 dest.writeInt(groupCapability);
330 dest.writeInt(status);
332 dest
[all...]
H A DWifiP2pGroup.java295 public void writeToParcel(Parcel dest, int flags) { argument
296 dest.writeString(mNetworkName);
297 dest.writeParcelable(mOwner, flags);
298 dest.writeByte(mIsGroupOwner ? (byte) 1: (byte) 0);
299 dest.writeInt(mClients.size());
301 dest.writeParcelable(client, flags);
303 dest.writeString(mPassphrase);
304 dest.writeString(mInterface);
305 dest.writeInt(mNetId);
H A DWifiP2pWfdInfo.java165 public void writeToParcel(Parcel dest, int flags) { argument
166 dest.writeInt(mWfdEnabled ? 1 : 0);
167 dest.writeInt(mDeviceInfo);
168 dest.writeInt(mCtrlPort);
169 dest.writeInt(mMaxThroughput);
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceResponse.java347 public void writeToParcel(Parcel dest, int flags) { argument
348 dest.writeInt(mServiceType);
349 dest.writeInt(mStatus);
350 dest.writeInt(mTransId);
351 dest.writeParcelable(mDevice, flags);
353 dest.writeInt(0);
355 dest.writeInt(mData.length);
356 dest.writeByteArray(mData);
/frameworks/native/include/utils/
H A DSortedVector.h129 virtual void do_copy(void* dest, const void* from, size_t num) const;
130 virtual void do_splat(void* dest, const void* item, size_t num) const;
131 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
132 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
253 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { argument
254 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
258 void SortedVector<TYPE>::do_splat(void* dest, const void* item, size_t num) const { argument
259 splat_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(item), num );
263 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { argument
264 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cas
268 do_move_backward(void* dest, const void* from, size_t num) const argument
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbMessage.java192 * @param dest The Parcel in which the object should be written.
196 public void writeToParcel(Parcel dest, int flags) { argument
197 dest.writeInt(mMessageFormat);
198 dest.writeInt(mGeographicalScope);
199 dest.writeInt(mSerialNumber);
200 mLocation.writeToParcel(dest, flags);
201 dest.writeInt(mServiceCategory);
202 dest.writeString(mLanguage);
203 dest.writeString(mBody);
204 dest
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DAdnRecord.java186 public void writeToParcel(Parcel dest, int flags) { argument
187 dest.writeInt(efid);
188 dest.writeInt(recordNumber);
189 dest.writeString(alphaTag);
190 dest.writeString(number);
191 dest.writeStringArray(emails);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTone.java173 public void writeToParcel(Parcel dest, int flags) { argument
174 dest.writeInt(ordinal());
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DDecTestBench.c739 library function memcpy to copy src to dest.
742 void H264SwDecMemcpy(void *dest, void *src, u32 count) argument
744 memcpy(dest, src, count);
/frameworks/base/cmds/rawbu/
H A Dbackup.cpp196 static int copy_file(FILE* dest, FILE* src, off_t size, const char* destName, argument
216 int writeLen = fwrite(copyBuffer, 1, readLen, dest);
573 FILE* dest = fopen(path, "w"); local
574 if (dest == NULL) {
581 int copyres = copy_file(dest, fh, size, path, NULL);
582 fclose(dest);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java606 public void writeToParcel(Parcel dest, int flags) { argument
608 dest.writeInt(count);
610 dest.writeInt(keyAt(i));
611 dest.writeParcelable(valueAt(i), 0);
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java556 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
557 super.writeToParcel(dest, parcelableFlags);
558 dest.writeInt(theme);
559 dest.writeInt(launchMode);
560 dest.writeString(permission);
561 dest.writeString(taskAffinity);
562 dest.writeString(targetActivity);
563 dest.writeInt(flags);
564 dest.writeInt(screenOrientation);
565 dest
[all...]
H A DApplicationInfo.java571 public void writeToParcel(Parcel dest, int parcelableFlags) { argument
572 super.writeToParcel(dest, parcelableFlags);
573 dest.writeString(taskAffinity);
574 dest.writeString(permission);
575 dest.writeString(processName);
576 dest.writeString(className);
577 dest.writeInt(theme);
578 dest.writeInt(flags);
579 dest.writeInt(requiresSmallestWidthDp);
580 dest
[all...]
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java573 public void writeToParcel(Parcel dest, int flags) { argument
574 dest.writeInt(mCompatibilityFlags);
575 dest.writeInt(applicationDensity);
576 dest.writeFloat(applicationScale);
577 dest.writeFloat(applicationInvertedScale);
/frameworks/base/core/java/android/net/
H A DNetworkStats.java168 public void writeToParcel(Parcel dest, int flags) { argument
169 dest.writeLong(elapsedRealtime);
170 dest.writeInt(size);
171 dest.writeStringArray(iface);
172 dest.writeIntArray(uid);
173 dest.writeIntArray(set);
174 dest.writeIntArray(tag);
175 dest.writeLongArray(rxBytes);
176 dest.writeLongArray(rxPackets);
177 dest
[all...]

Completed in 3898 milliseconds

1234567891011