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

  /libcore/ojluni/src/main/java/java/net/
InMemoryCookieStore.java 61 // it won't be cleared in domainIndex & uriIndex. Double-check the
66 private Map<URI, List<HttpCookie>> uriIndex = null;
82 uriIndex = new HashMap<>();
102 addIndex(uriIndex, getEffectiveURI(uri), cookie);
128 getInternal1(cookies, uriIndex, uri.getHost());
129 // check uriIndex then
130 getInternal2(cookies, uriIndex, getEffectiveURI(uri));
147 for (List<HttpCookie> list : uriIndex.values()) {
176 List<URI> result = new ArrayList<URI>(uriIndex.keySet());
180 uris.addAll(uriIndex.keySet())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 600 final int uriIndex = data.getColumnIndex(PhotoContract.PhotoViewColumns.URI);
612 final String uriString = data.getString(uriIndex);
809 int uriIndex = cursor.getColumnIndex(PhotoContract.PhotoViewColumns.URI);
810 mCurrentPhotoUri = cursor.getString(uriIndex);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 453 final int uriIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.URI);
473 values.put(LauncherSettings.Favorites.URI, c.getString(uriIndex));
    [all...]

Completed in 228 milliseconds