OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSparseArray
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLSparseArrayProperty.java
29
private final SparseArray<IGLProperty>
mSparseArray
;
47
mSparseArray
= new SparseArray<IGLProperty>(20);
55
mSparseArray
= contents;
59
List<IGLProperty> values = new ArrayList<IGLProperty>(
mSparseArray
.size());
61
for (int i = 0; i <
mSparseArray
.size(); i++) {
62
values.add(
mSparseArray
.valueAt(i));
69
IGLProperty p =
mSparseArray
.get(key);
72
p =
mSparseArray
.get(key);
78
int index =
mSparseArray
.indexOfValue(element);
79
return
mSparseArray
.keyAt(index)
[
all
...]
/packages/apps/TV/src/com/android/tv/util/
MultiLongSparseArray.java
34
private final LongSparseArray<Set<T>>
mSparseArray
;
39
mSparseArray
= new LongSparseArray<>();
44
mSparseArray
= new LongSparseArray<>(initialCapacity);
54
Set<T> values =
mSparseArray
.get(key);
57
mSparseArray
.put(key, values);
66
Set<T> values =
mSparseArray
.get(key);
70
mSparseArray
.remove(key);
81
Set<T> values =
mSparseArray
.get(key);
116
return
mSparseArray
.toString() + "(emptyCacheSize=" + getEmptyCacheSize() + ")";
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
BracketTest.java
30
private SparseArray<String>
mSparseArray
= new SparseArray<>();
38
mSparseArray
.put(0, "Hello");
52
mBinder.setSparseArray(
mSparseArray
);
Completed in 1010 milliseconds