Lines Matching defs:length

2369         sb.setLength(sb.length() - 1); // Yank the last comma
3021 for (int i = 0; i < allowedMimeTypes.length; i++) {
3470 args = new String[selectionArgs.length + 2];
3471 System.arraycopy(selectionArgs, 0, args, 2, selectionArgs.length);
4641 if (sb.length() > 0) {
4658 if (accountsString.length() == 0) return ret; // no accounts
5345 subProjection = new String[projection.length + 2];
5346 System.arraycopy(projection, 0, subProjection, 0, projection.length);
5347 subProjection[projection.length + 0] = DataUsageStatColumns.TIMES_USED;
5348 subProjection[projection.length + 1] = DataUsageStatColumns.LAST_TIME_USED;
5473 final int length = selectionArgs.length;
5474 doubledSelectionArgs = new String[length * 2];
5475 System.arraycopy(selectionArgs, 0, doubledSelectionArgs, 0, length);
5476 System.arraycopy(selectionArgs, 0, doubledSelectionArgs, length, length);
6155 sortOrder = " length(lookup.normalized_number) DESC";
6286 if (projection != null && projection.length != 0 &&
6290 if (projection != null && projection.length != 0 &&
6436 if (projection != null && projection.length == 1
6465 args = new String[selectionArgs.length + 2];
6466 System.arraycopy(selectionArgs, 0, args, 2, selectionArgs.length);
6722 sb.setLength(sb.length() - 1); // Last comma
6779 sb.setLength(sb.length() - 1); // Last comma
6837 sb.setLength(sb.length() - 1); // Last comma
6987 String startMatch = args != null && args.length > 0 ? args[0]
6989 String endMatch = args != null && args.length > 1 ? args[1]
6991 String ellipsis = args != null && args.length > 2 ? args[2]
6993 int maxTokens = args != null && args.length > 3 ? Integer.parseInt(args[3])
7973 byteData.length);
7984 private AssetFileDescriptor makeAssetFileDescriptor(ParcelFileDescriptor fd, long length) {
7985 return fd != null ? new AssetFileDescriptor(fd, 0, length) : null;
8226 int len = query.length();
8273 Object[] row = new Object[projection.length];
8274 for (int i = 0; i < projection.length; i++) {
8298 int newLength = selectionArgs.length + 1;
8301 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length);
8310 int newLength = selectionArgs.length + 1;
8313 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1);
8322 if (accounts != null && accounts.length > 0) {
8381 index += parameter.length();
8389 int length = value.length();
8390 return query.regionMatches(ignoreCase, index, value, 0, length)
8391 && (query.length() == index + length || query.charAt(index + length) == '&');
8403 int queryLength = query.length();
8404 int parameterLength = parameter.length();
8631 final ArrayList<Long> dataIds = new ArrayList<Long>(ids.length);
8648 for (int i = 0; i < ids.length; i++) {
8815 Preconditions.checkArgument(availableColumns.length == data.length);
8827 for (int j = 0; j < availableColumns.length; j++) {