Home
last modified time | relevance | path

Searched refs:indexString (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DCity.kt33 val indexString: String?, constant in com.android.deskclock.data.City
87 id, index, indexString, name, phoneticName, timeZone.id) in toString()
167 result = mNameCollator.compare(c1.indexString, c2.indexString) in compare()
DCityDAO.kt146 val indexString = if (TextUtils.isEmpty(parts[0])) name.substring(0, 1) else parts[0] in createCity() constant
149 val matcher = NUMERIC_INDEX_REGEX.matcher(indexString) in createCity()
152 return City(id, index, indexString, name, phoneticName, tz) in createCity()
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
DCitySelectionActivity.kt327 holder.index.setText(city.indexString) in getView()
395 DataModel.CitySort.NAME -> sections.add(city.indexString.orEmpty()) in getSections()