OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CacheToken
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Email/src/com/android/email/provider/
ContentCache.java
54
* 1. Get a
CacheToken
:
CacheToken
token = cache.getToken(id);
179
/*package*/ static class TokenList extends ArrayList<
CacheToken
> {
191
ArrayList<
CacheToken
> removeList = new ArrayList<
CacheToken
>();
193
for (
CacheToken
token: this) {
200
for (
CacheToken
token: removeList) {
210
for (
CacheToken
token: this) {
216
/*package*/ boolean remove(
CacheToken
token) {
228
public
CacheToken
add(String id)
[
all
...]
/packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java
19
import com.android.email.provider.ContentCache.
CacheToken
;
92
CacheToken
token1a = list.add("1");
96
CacheToken
token1b = list.add("1");
103
CacheToken
token2 = list.add("2");
118
CacheToken
token3a = list.add("3");
119
CacheToken
token3b = list.add("3");
120
CacheToken
token3c = list.add("3");
210
CacheToken
token = cache.getCacheToken("1");
Completed in 144 milliseconds