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

  /external/chromium_org/build/mac/
copy_framework_unversioned.sh 88 DESTINATION="${DESTINATION_DIR}/${FRAMEWORK_NAME}"
91 # destination location.
94 --include '*.so' "${CURRENT_VERSION}/" "${DESTINATION}"
106 FRAMEWORK_DYLIB="${DESTINATION}/${FRAMEWORK_NAME_NOEXT}"
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 148 public static final String DESTINATION = "destination";
BluetoothOppProvider.java 179 + BluetoothShare.DESTINATION + " TEXT, " + BluetoothShare.VISIBILITY
245 copyString(BluetoothShare.DESTINATION, values, filteredValues);
255 String address = values.getAsString(BluetoothShare.DESTINATION);
BluetoothOppTransferAdapter.java 95 int destinationColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
BluetoothOppManager.java 439 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
459 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
BluetoothOppUtility.java 85 .getColumnIndexOrThrow(BluetoothShare.DESTINATION));
303 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr);
BluetoothOppTransferHistory.java 122 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION
BluetoothOppService.java 562 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION)),
689 info.mDestination = stringFromCursor(info.mDestination, cursor, BluetoothShare.DESTINATION);
    [all...]
BluetoothOppNotification.java 124 String destination; // destination associated with this transfer field in class:BluetoothOppNotification.NotificationItem
237 final int destinationIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
248 String destination = cursor.getString(destinationIndex); local
280 item.destination = destination;
310 intent.putExtra(Constants.EXTRA_BT_OPP_ADDRESS, item.destination);
BluetoothOppObexServerSession.java 183 String destination; local
185 destination = ((BluetoothOppRfcommTransport)mTransport).getRemoteAddress();
187 destination = "FF:FF:FF:00:00:00";
190 isWhitelisted(destination);
272 values.put(BluetoothShare.DESTINATION, destination);
556 String destination; local
558 destination = ((BluetoothOppRfcommTransport)mTransport).getRemoteAddress();
560 destination = "FF:FF:FF:00:00:00";
563 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...]
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 126 query.getProjection()[Queries.Query.DESTINATION] + " IN ("
221 String address = c.getString(Queries.Query.DESTINATION);
226 c.getString(Queries.Query.DESTINATION),
248 + " ADDRESS :" + c.getString(Queries.Query.DESTINATION));
282 // If only one has a display name that is not the same as the destination, use it
375 * - This method ignores all other fields and dedupe solely on the destination. Normally,
376 * if a cursor contains multiple contacts and they have the same destination, we'd still want
390 final String destination = original.getString(Query.DESTINATION); local
391 if (destinationsSeen.contains(destination)) {
472 TextView destination = (TextView) view.findViewById(android.R.id.text1); local
    [all...]
Queries.java 72 public static final int DESTINATION = 1; // String
BaseRecipientAdapter.java 148 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
158 String destination,
166 this.destination = destination;
177 this.destination = cursor.getString(Queries.Query.DESTINATION);
465 * First, each destination (an email address or a phone number) with a valid contactId is
675 if (existingDestinations.contains(entry.destination)) {
679 existingDestinations.add(entry.destination);
685 entry.destination, entry.destinationType, entry.destinationLabel
940 String destination = entry.getDestination(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 79 public void showAttachment(int destination) {
87 (destination == AttachmentDestination.CACHE ||
88 mAttachment.destination == destination)) {
92 startDownloadingAttachment(destination);
100 public void startDownloadingAttachment(int destination) {
101 startDownloadingAttachment(destination, UIProvider.AttachmentRendition.BEST, 0, false);
105 int destination, int rendition, int additionalPriority, boolean delayDownload) {
107 mAttachment, destination, rendition, additionalPriority, delayDownload);
111 Attachment attachment, int destination, int rendition, int additionalPriority
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
ASCIIFastPath.h 105 inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length)
114 destination[i] = static_cast<LChar>(source[i]);
129 _mm_storeu_si128(reinterpret_cast<__m128i*>(&destination[i]), packedChars);
135 destination[i] = static_cast<LChar>(source[i]);
138 const LChar* const end = destination + length;
144 while (!isAlignedTo<memoryAccessMask>(destination))
145 *destination++ = static_cast<LChar>(*source++);
148 const uintptr_t lengthLeft = end - destination;
152 "vst1.8 { d0 }, [%[DESTINATION],:64] !\n\t"
153 : [SOURCE]"+r" (source), [DESTINATION]"+r" (destination
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 108 * @see AttachmentColumns#DESTINATION
110 public int destination; field in class:Attachment
181 destination = in.readInt();
202 destination = cursor.getInt(cursor.getColumnIndex(AttachmentColumns.DESTINATION));
223 destination = srcJson.optInt(AttachmentColumns.DESTINATION);
256 destination = AttachmentDestination.CACHE;
294 destination = values.getAsInteger(AttachmentColumns.DESTINATION);
    [all...]
EmlAttachmentProvider.java 239 .add(attachment.destination) // destination
256 values.getAsInteger(UIProvider.AttachmentColumns.DESTINATION);
261 final int destination = newDestination != null ? local
264 destination == UIProvider.AttachmentDestination.EXTERNAL;
280 // update the destination before getting the new file path
282 attachment.destination = UIProvider.AttachmentDestination.EXTERNAL;
422 attachment.destination == UIProvider.AttachmentDestination.EXTERNAL;
UIProvider.java     [all...]
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 

Completed in 678 milliseconds