Home | History | Annotate | Download | only in calendar

Lines Matching defs:eid

58      * Extracts the ID from the eid parameter of a URI.
60 * The URI contains an "eid" parameter, which is comprised of an ID, followed by a space,
68 String eid = uri.getQueryParameter("eid");
69 if (eid == null) {
73 byte[] decodedBytes = Base64.decode(eid, Base64.DEFAULT);
95 String eid = extractEid(uri);
96 if (eid != null) {
97 String selection = Events._SYNC_ID + " LIKE \"%/" + eid + "\"";
114 + " matches on event with id='" + eid + "'");