Searched defs:divider (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/event/
H A DAttendeesView.java80 // Yes <-- divider
82 // No <-- divider
155 // Add the number of attendees in the specific status (corresponding to the divider) in
157 private void updateDividerViewLabel(View divider, CharSequence label, int count) { argument
159 ((TextView)divider).setText(label);
162 ((TextView)divider).setText(label + " (" + count + ")");
246 if (view instanceof TextView) { // divider
266 if (view instanceof TextView) { // divider
405 if (view instanceof TextView) { // divider
473 if (view instanceof TextView) { // divider
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupBrowseListAdapter.java161 // Add a header if this is the first group in an account and hide the divider
165 viewCache.divider.setVisibility(View.GONE);
178 viewCache.divider.setVisibility(View.VISIBLE);
219 public final View divider; field in class:GroupBrowseListAdapter.GroupListItemViewCache
229 divider = view.findViewById(R.id.divider);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DSuggestionStripView.java187 final View divider = dividers.get(0);
189 divider.measure(
191 mDividerWidth = divider.getMeasuredWidth();
351 private static void addDivider(final ViewGroup stripView, final View divider) { argument
352 stripView.addView(divider);
354 (LinearLayout.LayoutParams)divider.getLayoutParams();
373 final View divider = mDividers.get(pos);
374 // Add divider if this isn't the left most suggestion in suggestions strip.
375 addDivider(stripView, divider);
376 x += divider
[all...]
/packages/inputmethods/LatinIME/native/jni/src/
H A Dcorrection.cpp891 const int divider = diff < 31 ? 1 << diff : S_INT_MAX; local
892 finalFreq = divider > finalFreq ? 1 : finalFreq / divider;

Completed in 134 milliseconds