OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mObjects
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/widget/
ArrayAdapter.java
52
private List<T>
mObjects
;
55
* Lock used to modify the content of {@link #
mObjects
}. Any write operation
83
* {@link #
mObjects
} is modified.
89
// A copy of the original
mObjects
array, initialized from and then used instead as soon as
90
// the mFilter ArrayFilter is used.
mObjects
will then only contain the filtered values.
179
mObjects
.add(object);
195
mObjects
.addAll(collection);
211
Collections.addAll(
mObjects
, items);
228
mObjects
.add(index, object);
244
mObjects
.remove(object)
[
all
...]
/frameworks/base/include/binder/
BpBinder.h
90
KeyedVector<const void*, entry_t>
mObjects
;
115
ObjectManager
mObjects
;
Parcel.h
225
size_t*
mObjects
;
/frameworks/base/libs/binder/
Binder.cpp
67
BpBinder::ObjectManager
mObjects
;
153
e->
mObjects
.attach(objectID, object, cleanupCookie, func);
162
return e->
mObjects
.find(objectID);
171
e->
mObjects
.detach(objectID);
/frameworks/base/core/java/android/text/
DynamicLayout.java
117
mObjects
= new PackedObjectVector<Directions>(1);
165
mObjects
.insertAt(0, dirs);
300
mObjects
.deleteAt(startline, endline - startline);
357
mObjects
.insertAt(startline + i, objects);
398
return
mObjects
.getValue(line, 0);
487
private PackedObjectVector<Directions>
mObjects
;
Completed in 37 milliseconds