Searched refs:colGetEntry (Results 1 - 5 of 5) sorted by path

/frameworks/base/core/java/android/util/
H A DArrayMap.java754 protected Object colGetEntry(int index, int offset) {
H A DArraySet.java593 protected Object colGetEntry(int index, int offset) {
H A DMapCollections.java55 Object res = colGetEntry(mIndex, mOffset);
112 return (K)colGetEntry(mIndex, 0);
121 return (V)colGetEntry(mIndex, 1);
143 return Objects.equal(e.getKey(), colGetEntry(mIndex, 0))
144 && Objects.equal(e.getValue(), colGetEntry(mIndex, 1));
153 final Object key = colGetEntry(mIndex, 0);
154 final Object value = colGetEntry(mIndex, 1);
194 Object foundVal = colGetEntry(index, 1);
258 final Object key = colGetEntry(i, 0);
259 final Object value = colGetEntry(
551 protected abstract Object colGetEntry(int index, int offset); method in class:MapCollections
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DArrayMap.java80 protected Object colGetEntry(int index, int offset) {
H A DMapCollections.java53 Object res = colGetEntry(mIndex, mOffset);
110 return (K)colGetEntry(mIndex, 0);
119 return (V)colGetEntry(mIndex, 1);
141 return ContainerHelpers.equal(e.getKey(), colGetEntry(mIndex, 0))
142 && ContainerHelpers.equal(e.getValue(), colGetEntry(mIndex, 1));
151 final Object key = colGetEntry(mIndex, 0);
152 final Object value = colGetEntry(mIndex, 1);
192 Object foundVal = colGetEntry(index, 1);
256 final Object key = colGetEntry(i, 0);
257 final Object value = colGetEntry(
550 protected abstract Object colGetEntry(int index, int offset); method in class:MapCollections
[all...]

Completed in 145 milliseconds