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

1 2

  /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 447 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
467 values.put(BluetoothShare.DESTINATION, mRemoteDevice.getAddress());
BluetoothOppUtility.java 85 .getColumnIndexOrThrow(BluetoothShare.DESTINATION));
303 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr);
BluetoothOppTransferHistory.java 124 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION
BluetoothOppService.java 577 cursor.getString(cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION)),
704 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);
557 String destination; local
559 destination = ((BluetoothOppRfcommTransport)mTransport).getRemoteAddress();
561 destination = "FF:FF:FF:00:00:00";
564 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/opt/chips/src/com/android/ex/chips/
Queries.java 77 public static final int DESTINATION = 1; // String
RecipientAlternatesAdapter.java 128 query.getProjection()[Queries.Query.DESTINATION] + " IN ("
251 String address = c.getString(Queries.Query.DESTINATION);
256 c.getString(Queries.Query.DESTINATION),
280 + " ADDRESS :" + c.getString(Queries.Query.DESTINATION));
314 // If only one has a display name that is not the same as the destination, use it
443 * - This method ignores all other fields and dedupe solely on the destination. Normally,
444 * if a cursor contains multiple contacts and they have the same destination, we'd still want
489 final String destination = original.getString(Query.DESTINATION); local
490 if (destinationsSeen.contains(destination)) {
    [all...]
BaseRecipientAdapter.java 129 public final String destination; field in class:BaseRecipientAdapter.TemporaryEntry
141 String destination,
151 this.destination = destination;
164 this.destination = cursor.getString(Queries.Query.DESTINATION);
456 * First, each destination (an email address or a phone number) with a valid contactId is
725 if (existingDestinations.contains(entry.destination)) {
729 existingDestinations.add(entry.destination);
735 entry.destination, entry.destinationType, entry.destinationLabel
    [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/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 107 * @see AttachmentColumns#DESTINATION
109 public int destination; field in class:Attachment
180 destination = in.readInt();
201 destination = cursor.getInt(cursor.getColumnIndex(AttachmentColumns.DESTINATION));
222 destination = srcJson.optInt(AttachmentColumns.DESTINATION);
256 destination = AttachmentDestination.CACHE;
295 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...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 

Completed in 439 milliseconds

1 2