Searched defs:colGetEntry (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/ |
H A D | MapCollections.java | 56 Object res = colGetEntry(mIndex, mOffset); 114 return (K)colGetEntry(mIndex, 0); 123 return (V)colGetEntry(mIndex, 1); 145 return Objects.equals(e.getKey(), colGetEntry(mIndex, 0)) 146 && Objects.equals(e.getValue(), colGetEntry(mIndex, 1)); 155 final Object key = colGetEntry(mIndex, 0); 156 final Object value = colGetEntry(mIndex, 1); 196 Object foundVal = colGetEntry(index, 1); 260 final Object key = colGetEntry(i, 0); 261 final Object value = colGetEntry( 553 protected abstract Object colGetEntry(int index, int offset); method in class:MapCollections [all...] |
/frameworks/support/collection/src/main/java/androidx/collection/ |
H A D | MapCollections.java | 54 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 8 milliseconds