Searched refs:colIndex (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/core/java/com/android/server/utils/ |
D | WatchedSparseBooleanMatrix.java | 314 public boolean valueAt(int rowIndex, int colIndex) { in valueAt() argument 315 validateIndex(rowIndex, colIndex); in valueAt() 317 int c = mMap[colIndex]; in valueAt() 339 public void setValueAt(int rowIndex, int colIndex, boolean value) { in setValueAt() argument 340 validateIndex(rowIndex, colIndex); in setValueAt() 342 int c = mMap[colIndex]; in setValueAt()
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
D | TrackerEntry.java | 247 int colIndex = cursor.getColumnIndexOrThrow(colName); in getNullableFloat() local 248 if (!cursor.isNull(colIndex)) { in getNullableFloat() 249 retValue = cursor.getFloat(colIndex); in getNullableFloat()
|
/frameworks/base/core/java/android/database/ |
D | DatabaseUtils.java | 829 int colIndex = cursor.getColumnIndex(field); in cursorIntToContentValues() local 830 if (!cursor.isNull(colIndex)) { in cursorIntToContentValues() 831 values.put(key, cursor.getInt(colIndex)); in cursorIntToContentValues() 859 int colIndex = cursor.getColumnIndex(field); in cursorLongToContentValues() local 860 if (!cursor.isNull(colIndex)) { in cursorLongToContentValues() 861 Long value = Long.valueOf(cursor.getLong(colIndex)); in cursorLongToContentValues() 890 int colIndex = cursor.getColumnIndex(field); in cursorDoubleToContentValues() local 891 if (!cursor.isNull(colIndex)) { in cursorDoubleToContentValues() 892 values.put(key, cursor.getDouble(colIndex)); in cursorDoubleToContentValues()
|
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/ |
D | ProxyServer.java | 307 int colIndex = line.indexOf(":"); in shouldRemoveHeaderLine() local 308 if (colIndex != -1) { in shouldRemoveHeaderLine() 309 String headerName = line.substring(0, colIndex).trim(); in shouldRemoveHeaderLine()
|
/frameworks/base/core/java/android/widget/ |
D | Magnifier.java | 1135 final int colIndex = i % (2 * (mMeshWidth + 1)) / 2; in fillMeshMatrix() local 1136 mMeshLeft[i] = (float) colIndex * mRamp / mMeshWidth; in fillMeshMatrix() 1137 mMeshRight[i] = w - mRamp + colIndex * mRamp / mMeshWidth; in fillMeshMatrix() 1141 final float hl = h0 + dh * colIndex / mMeshWidth; in fillMeshMatrix() 1144 final float hr = h - dh * colIndex / mMeshWidth; in fillMeshMatrix()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/utils/ |
D | WatcherTest.java | 1043 int colIndex = b.keyAt(4); in testWatchedSparseBooleanMatrix() local 1044 b.put(rowIndex, colIndex, !b.get(rowIndex, colIndex)); in testWatchedSparseBooleanMatrix() 1050 a.put(rowIndex, colIndex, !a.get(rowIndex, colIndex)); in testWatchedSparseBooleanMatrix()
|