Searched defs:colGetEntry (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/util/
H A DMapCollections.java57 Object res = colGetEntry(mIndex, mOffset);
115 return (K)colGetEntry(mIndex, 0);
124 return (V)colGetEntry(mIndex, 1);
146 return Objects.equal(e.getKey(), colGetEntry(mIndex, 0))
147 && Objects.equal(e.getValue(), colGetEntry(mIndex, 1));
156 final Object key = colGetEntry(mIndex, 0);
157 final Object value = colGetEntry(mIndex, 1);
197 Object foundVal = colGetEntry(index, 1);
261 final Object key = colGetEntry(i, 0);
262 final Object value = colGetEntry(
554 protected abstract Object colGetEntry(int index, int offset); method in class:MapCollections
[all...]
/frameworks/support/compat/java/android/support/v4/util/
H A DMapCollections.java54 Object res = colGetEntry(mIndex, mOffset);
112 return (K)colGetEntry(mIndex, 0);
121 return (V)colGetEntry(mIndex, 1);
143 return ContainerHelpers.equal(e.getKey(), colGetEntry(mIndex, 0))
144 && ContainerHelpers.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(
552 protected abstract Object colGetEntry(int index, int offset); method in class:MapCollections
[all...]

Completed in 100 milliseconds