Lines Matching refs:localeStr

697     private void indexOneSearchIndexableData(SQLiteDatabase database, String localeStr,
700 indexOneResource(database, localeStr, (SearchIndexableResource) data, nonIndexableKeys);
702 indexOneRaw(database, localeStr, (SearchIndexableRaw) data);
706 private void indexOneRaw(SQLiteDatabase database, String localeStr,
709 if (!raw.locale.toString().equalsIgnoreCase(localeStr)) {
713 updateOneRowWithFilteredData(database, localeStr,
746 private void indexOneResource(SQLiteDatabase database, String localeStr,
762 indexFromResource(sir.context, database, localeStr,
788 indexFromProvider(mContext, database, localeStr, provider, sir.className,
814 private void indexFromResource(Context context, SQLiteDatabase database, String localeStr,
854 updateOneRowWithFilteredData(database, localeStr, title, summary, null, null,
886 updateOneRowWithFilteredData(database, localeStr, title, summary, null, entries,
898 updateOneRowWithFilteredData(database, localeStr, title, summaryOn, summaryOff,
914 private void indexFromProvider(Context context, SQLiteDatabase database, String localeStr,
931 if (!raw.locale.toString().equalsIgnoreCase(localeStr)) {
939 updateOneRowWithFilteredData(database, localeStr,
966 if (!item.locale.toString().equalsIgnoreCase(localeStr)) {
975 indexFromResource(context, database, localeStr,
1174 final String localeStr = Locale.getDefault().toString();
1179 processDataToDelete(database, localeStr, dataToDelete);
1182 processDataToUpdate(database, localeStr, dataToUpdate, nonIndexableKeys,
1193 private boolean processDataToUpdate(SQLiteDatabase database, String localeStr,
1197 if (!forceUpdate && isLocaleAlreadyIndexed(database, localeStr)) {
1198 Log.d(LOG_TAG, "Locale '" + localeStr + "' is already indexed");
1209 indexOneSearchIndexableData(database, localeStr, data, nonIndexableKeys);
1212 "Cannot index: " + data.className + " for locale: " + localeStr, e);
1217 Log.d(LOG_TAG, "Indexing locale '" + localeStr + "' took " +
1222 private boolean processDataToDelete(SQLiteDatabase database, String localeStr,
1247 Log.d(LOG_TAG, "Deleting data for locale '" + localeStr + "' took " +