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

  /packages/apps/Exchange/src/com/android/exchange/adapter/
GalParser.java 19 import com.android.exchange.provider.GalResult.GalData;
61 final GalData galData = new GalData();
64 // Display name and email address use both legacy and new code for galData
67 galData.put(GalData.DISPLAY_NAME, displayName);
68 galData.displayName = displayName;
72 galData.put(GalData.EMAIL_ADDRESS, emailAddress)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/provider/
GalResult.java 24 * Each element of the galData array becomes an element of the list used by autocomplete
29 public ArrayList<GalData> galData = new ArrayList<GalData>();
38 galData.add(new GalData(id, displayName, emailAddress));
41 public void addGalData(GalData data) {
42 galData.add(data);
45 public int getNumEntries() { return galData.size(); }
47 public static class GalData {
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
ExchangeDirectoryProviderTests.java 21 import com.android.exchange.provider.GalResult.GalData;
64 GalData data = result.galData.get(i);
88 GalData galData = new GalData();
90 galData.put(GalData.FIRST_NAME, names[TEST_FIELD_FIRST_NAME]);
91 galData.put(GalData.LAST_NAME, names[TEST_FIELD_LAST_NAME])
    [all...]

Completed in 370 milliseconds