HomeSort by relevance Sort by last modified time
    Searched refs:DESTINATION (Results 1 - 25 of 42) sorted by null

1 2

  /external/libdivsufsort/pkgconfig/
CMakeLists.txt 4 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libdivsufsort.pc" DESTINATION ${CMAKE_INSTALL_PKGCONFIGDIR})
8 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libdivsufsort64.pc" DESTINATION ${CMAKE_INSTALL_PKGCONFIGDIR})
  /external/ltp/tools/pounder21/test_scripts/
ide_cdrom_copy 28 DESTINATION="$POUNDER_TMPDIR/cddata"
30 # Ensure that our default mountpoint and destination dirs exist.
60 # Create destination and set up auto-removal
61 trap 'echo Cleaning up...; rm -rf $DESTINATION; umount $MOUNTPOINT; echo Clean.; exit 0' 1 2 15
62 mkdir -p "$DESTINATION"
66 cp -pRdu "$MOUNTPOINT" "$DESTINATION"
69 echo "Comparing $DEV to $DESTINATION."
70 diff -rq "$MOUNTPOINT" "$DESTINATION/`basename $MOUNTPOINT`"
77 rm -rf "$DESTINATION"
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 142 public static final String DESTINATION = "destination";
BluetoothOppTransferAdapter.java 95 int destinationColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
BluetoothOppManager.java 443 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
463 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
BluetoothOppProvider.java 161 + BluetoothShare.DESTINATION + " TEXT, " + BluetoothShare.VISIBILITY
234 copyString(BluetoothShare.DESTINATION, values, filteredValues);
BluetoothOppUtility.java 101 .getColumnIndexOrThrow(BluetoothShare.DESTINATION));
328 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr);
BluetoothOppTransferHistory.java 124 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION
BluetoothOppNotification.java 133 String destination; // destination associated with this transfer field in class:BluetoothOppNotification.NotificationItem
253 final int destinationIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
264 String destination = cursor.getString(destinationIndex); local
296 item.destination = destination;
326 intent.putExtra(Constants.EXTRA_BT_OPP_ADDRESS, item.destination);
BluetoothOppObexServerSession.java 186 String destination; local
188 destination = ((BluetoothObexTransport)mTransport).getRemoteAddress();
190 destination = "FF:FF:FF:00:00:00";
193 isWhitelisted(destination);
277 values.put(BluetoothShare.DESTINATION, destination);
555 String destination; local
557 destination = ((BluetoothObexTransport)mTransport).getRemoteAddress();
559 destination = "FF:FF:FF:00:00:00";
562 isWhitelisted(destination);
    [all...]
TestActivity.java 130 * values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
203 * BluetoothShare.MIMETYPE, BluetoothShare.DESTINATION,
238 // values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
240 // values.put(BluetoothShare.DESTINATION, "12:34:56:78:9A:BC");
242 // values.put(BluetoothShare.DESTINATION, "00:1B:33:F0:58:FB");
244 // values.put(BluetoothShare.DESTINATION, "00:17:E5:5D:74:F3");
246 // values.put(BluetoothShare.DESTINATION, "00:1A:1B:7F:1E:F0");
248 // values.put(BluetoothShare.DESTINATION, "00:17:83:58:5D:CC");
250 // values.put(BluetoothShare.DESTINATION, "00:16:41:49:5B:F3");
252 values.put(BluetoothShare.DESTINATION, address)
    [all...]
BluetoothOppService.java 623 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION)),
    [all...]
  /external/googletest/googlemock/
CMakeLists.txt 107 DESTINATION lib)
109 DESTINATION include)
  /frameworks/opt/chips/src/com/android/ex/chips/
Queries.java 77 public static final int DESTINATION = 1; // String
RecipientAlternatesAdapter.java 131 query.getProjection()[Queries.Query.DESTINATION] + " IN ("
253 String address = c.getString(Queries.Query.DESTINATION);
258 c.getString(Queries.Query.DESTINATION),
282 + " ADDRESS :" + c.getString(Queries.Query.DESTINATION));
316 // If only one has a display name that is not the same as the destination, use it
454 * - This method ignores all other fields and dedupe solely on the destination. Normally,
455 * if a cursor contains multiple contacts and they have the same destination, we'd still want
500 final String destination = original.getString(Query.DESTINATION); local
501 if (destinationsSeen.contains(destination)) {
    [all...]
BaseRecipientAdapter.java 141 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
153 String destination,
163 this.destination = destination;
176 this.destination = cursor.getString(Queries.Query.DESTINATION);
510 * First, each destination (an email address or a phone number) with a valid contactId is
    [all...]
  /external/libjpeg-turbo/
CMakeLists.txt 59 option(WITH_MEM_SRCDST "Include in-memory source/destination manager functions when emulating the libjpeg v6b or v7 API/ABI" TRUE)
134 message(STATUS "In-memory source/destination managers enabled")
136 message(STATUS "In-memory source/destination managers disabled")
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 92 public void showAttachment(int destination) {
100 (destination == AttachmentDestination.CACHE ||
101 mAttachment.destination == destination)) {
105 startDownloadingAttachment(destination);
113 public void startDownloadingAttachment(int destination) {
114 startDownloadingAttachment(destination, UIProvider.AttachmentRendition.BEST, 0, false);
118 int destination, int rendition, int additionalPriority, boolean delayDownload) {
120 mAttachment, destination, rendition, additionalPriority, delayDownload);
124 Attachment attachment, int destination, int rendition, int additionalPriority
    [all...]
  /external/googletest/googletest/
CMakeLists.txt 106 DESTINATION lib)
108 DESTINATION include)
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 107 * @see AttachmentColumns#DESTINATION
109 public int destination; field in class:Attachment
188 destination = in.readInt();
210 destination = cursor.getInt(cursor.getColumnIndex(AttachmentColumns.DESTINATION));
232 destination = srcJson.optInt(AttachmentColumns.DESTINATION);
267 destination = AttachmentDestination.CACHE;
307 destination = values.getAsInteger(AttachmentColumns.DESTINATION);
    [all...]
EmlAttachmentProvider.java 266 .add(attachment.destination) // destination
286 values.getAsInteger(UIProvider.AttachmentColumns.DESTINATION);
291 final int destination = newDestination != null ? local
294 destination == UIProvider.AttachmentDestination.EXTERNAL;
310 // update the destination before getting the new file path
312 attachment.destination = UIProvider.AttachmentDestination.EXTERNAL;
473 attachment.destination == UIProvider.AttachmentDestination.EXTERNAL;
UIProvider.java     [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 158 final int DESTINATION = 6;
257 final int destination = cursor.getInt(UpdateQuery.DESTINATION); local
267 if (destination != Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION) {
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 

Completed in 1625 milliseconds

1 2