Home | History | Annotate | Download | only in accessibility

Lines Matching full:resid

152         final int resId;
160 resId = R.string.spoken_description_to_symbol;
164 resId = R.string.spoken_description_to_alpha;
167 resId = R.string.spoken_description_to_symbol;
170 resId = R.string.spoken_description_to_numeric;
176 return context.getString(resId);
190 final int resId;
195 resId = R.string.spoken_description_caps_lock;
199 resId = R.string.spoken_description_shift_shifted;
202 resId = R.string.spoken_description_symbols_shift;
205 resId = R.string.spoken_description_symbols_shift_shifted;
208 resId = R.string.spoken_description_shift;
210 return context.getString(resId);
225 final int resId;
235 resId = R.string.spoken_description_search;
238 resId = R.string.label_go_key;
241 resId = R.string.label_send_key;
244 resId = R.string.label_next_key;
247 resId = R.string.label_done_key;
250 resId = R.string.label_previous_key;
253 resId = R.string.spoken_description_return;
255 return context.getString(resId);
296 final int resId = (baseIndex >= 0) ? mKeyCodeMap.valueAt(baseIndex)
298 if (resId == 0) {
301 final String spokenText = context.getString(resId);
308 final int resId = getSpokenDescriptionId(context, code, SPOKEN_SYMBOL_RESOURCE_NAME_FORMAT);
309 if (resId == 0) {
312 final String spokenText = context.getString(resId);
322 final int resId = getSpokenDescriptionId(context, code, SPOKEN_EMOJI_RESOURCE_NAME_FORMAT);
323 if (resId == 0) {
326 final String spokenText = context.getString(resId);
341 final int resId = resources.getIdentifier(resourceName, "string", resourcePackageName);
342 if (resId != 0) {
343 mKeyCodeMap.append(code, resId);
345 return resId;
362 final int resId = resources.getIdentifier(resourceName, "string", resourcePackageName);
363 return (resIdresId);