OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:objectids
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/
TestableInvalidationService.java
63
public void register(byte[] clientId, Iterable<ObjectId>
objectIds
) {
64
List<ObjectId> objectIdList = CollectionUtil.newArrayList(
objectIds
);
67
super.register(clientId,
objectIds
);
71
public void unregister(byte[] clientId, Iterable<ObjectId>
objectIds
) {
72
List<ObjectId> objectIdList = CollectionUtil.newArrayList(
objectIds
);
75
super.unregister(clientId,
objectIds
);
InvalidationPreferencesTest.java
91
Set<ObjectId>
objectIds
= CollectionUtil.newHashSet(
97
invPreferences.setObjectIds(editContext,
objectIds
);
110
assertEquals(
objectIds
, invPreferences.getSavedObjectIds());
InvalidationServiceTest.java
606
Set<ObjectId>
objectIds
= new HashSet<ObjectId>();
610
objectIds
.add(ObjectId.newInstance(1, "obj1".getBytes()));
611
objectIds
.add(ObjectId.newInstance(2, "obj2".getBytes()));
615
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, false /* isReady */));
622
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, false /* isReady */));
626
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, true /* isReady */));
629
objectIds
.add(ObjectId.newInstance(3, "obj3".getBytes()));
633
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, true /* isReady */));
639
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, true /* isReady */));
645
assertTrue(expectedObjectIdsRegistered(types,
objectIds
, true /* isReady */))
[
all
...]
/external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java
156
Set<ObjectId>
objectIds
= new HashSet<ObjectId>(modelTypes.size());
159
objectIds
.add(modelType.toObjectId());
162
return
objectIds
;
167
Set<String>
objectIds
= new HashSet<String>(modelTypes.size());
169
objectIds
.add(modelType.toString());
171
return
objectIds
;
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationPreferences.java
125
Set<ObjectId>
objectIds
= new HashSet<ObjectId>(objectIdStrings.size());
129
objectIds
.add(objectId);
132
return
objectIds
;
136
public void setObjectIds(EditContext editContext, Collection<ObjectId>
objectIds
) {
137
Preconditions.checkNotNull(
objectIds
);
138
Set<String> objectIdStrings = new HashSet<String>(
objectIds
.size());
139
for (ObjectId objectId :
objectIds
) {
InvalidationService.java
304
Set<ObjectId>
objectIds
= new InvalidationPreferences(this).getSavedObjectIds();
305
if (
objectIds
== null) return Collections.emptySet();
306
else return
objectIds
;
342
* {@code
objectIds
}. Either parameter may be null if the corresponding registrations are not
347
private void setRegisteredTypes(Set<String> syncTypes, Set<ObjectId>
objectIds
) {
365
if (
objectIds
!= null) {
366
prefs.setObjectIds(editContext,
objectIds
);
385
Set<ObjectId> desiredNonSyncRegistrations =
objectIds
!= null ?
386
objectIds
: existingNonSyncRegistrations;
InvalidationIntentProtocol.java
131
Set<ObjectId>
objectIds
= new HashSet<ObjectId>(objectSources.size());
133
objectIds
.add(ObjectId.newInstance(
136
return
objectIds
;
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/invalidation/
InvalidationControllerTest.java
307
Set<ObjectId>
objectIds
= InvalidationIntentProtocol.getRegisteredObjectIds(intent);
308
assertEquals(2,
objectIds
.size());
309
assertTrue(
objectIds
.contains(ObjectId.newInstance(1, "a".getBytes())));
310
assertTrue(
objectIds
.contains(ObjectId.newInstance(2, "b".getBytes())));
/external/chromium_org/sync/notifier/
invalidator.h
60
// Updates the set of
ObjectIds
associated with |handler|. |handler| must
invalidator_registrar.h
40
// Updates the set of
ObjectIds
associated with |handler|. |handler| must
object_id_invalidation_map.h
29
// Returns set of
ObjectIds
for which at least one invalidation is present.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Extensions.java
328
* @param
objectIDs
a vector of the object identifiers.
333
Vector
objectIDs
,
336
Enumeration e =
objectIDs
.elements();
/external/chromium_org/chrome/browser/invalidation/
invalidation_service.h
76
// Updates the set of
ObjectIds
associated with |handler|. |handler| must
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar
Completed in 933 milliseconds