HomeSort by relevance Sort by last modified time
    Searched defs:mDestination (Results 1 - 8 of 8) sorted by null

  /packages/apps/Exchange/exchange2/src/com/android/exchange/
PartRequest.java 29 public final String mDestination;
37 mDestination = _destination;
  /frameworks/base/core/java/android/net/
RouteInfo.java 49 private final LinkAddress mDestination;
103 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
138 return (mDestination.getAddress() instanceof Inet4Address &&
139 mDestination.getNetworkPrefixLength() == 32) ||
140 (mDestination.getAddress() instanceof Inet6Address &&
141 mDestination.getNetworkPrefixLength() == 128);
148 val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0);
150 val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 75 private Text mDestination;
106 mDestination = new Text(composite, SWT.BORDER);
107 mDestination.setLayoutData(gd = new GridData(GridData.FILL_HORIZONTAL));
108 mDestination.addModifyListener(new ModifyListener() {
129 mDestination.setText(saveLocation);
163 mDestination.setText(destination);
297 String path = mDestination.getText().trim();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 55 public String mDestination;
80 mDestination = destination;
BluetoothOppBatch.java 71 public final BluetoothDevice mDestination;
111 mDestination = adapter.getRemoteDevice(info.mDestination);
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEntry.java 54 private final String mDestination;
83 mDestination = destination;
188 return mDestination;
235 return mDisplayName + " <" + mDestination + ">, isValid=" + mIsValid;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
RenderingRequest.java 36 private Rect mDestination = null;
156 return mDestination;
160 mDestination = destination;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 79 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION);
213 public int mDestination;
386 return mDestination != Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING;
495 return (mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION
496 || mDestination == Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION
497 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING
498 || mDestination == Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE);
529 pw.printPair("mDestination", mDestination);
577 && (mDestination == Downloads.Impl.DESTINATION_EXTERNAL |
    [all...]

Completed in 364 milliseconds