HomeSort by relevance Sort by last modified time
    Searched refs:divider (Results 1 - 25 of 47) sorted by null

1 2

  /external/webkit/Source/WebCore/inspector/front-end/
TimelineGrid.js 70 // Reuse divider elements and labels.
71 var divider = this._dividersElement.firstChild;
77 if (!divider) {
78 divider = document.createElement("div");
79 divider.className = "resources-divider";
80 this._dividersElement.appendChild(divider);
83 dividerLabelBar.className = "resources-divider";
85 label.className = "resources-divider-label";
93 divider.addStyleClass("first")
    [all...]
ApplicationCacheItemsView.js 53 this.divider = document.createElement("span");
54 this.divider.className = "status-bar-item status-bar-divider";
80 this.connectivityIcon, this.connectivityMessage, this.divider,
85 this.refreshButton.element, this.deleteButton.element, this.divider,
TimelineOverviewPane.js 189 var divider = dividerConstructor(record);
190 divider.style.left = positions.start + "%";
191 dividers[dividerPosition] = divider;
  /external/freetype/src/psaux/
psconv.c 149 FT_Long decimal = 0, divider = 1; local
195 if ( divider < 10000000L )
198 divider *= 10;
221 divider *= 10;
226 integral += FT_DivFix( decimal, divider );
  /hardware/invensense/mlsdk/mllite/
mldl_cfg.h 95 unsigned char divider; member in struct:mldl_cfg
319 return 8000L / (mldl_cfg->divider + 1);
321 return 1000L / (mldl_cfg->divider + 1);
327 return (long) (1000000L * (mldl_cfg->divider + 1)) / 8000L;
329 return (long) (1000000L * (mldl_cfg->divider + 1)) / 1000L;
mldl.h 131 inv_error_t inv_dl_cfg_sampling(unsigned char lpf, unsigned char divider);
mldl.c 450 * 2) output sampling divider.
452 * The output sampling rate is determined by the divider and the low
455 * divider is 8kHz; for all other settings it is 1kHz.
456 * The 8-bit divider will divide this frequency to get the resulting
458 * For example, if the filter setting is not 256Hz and the divider is
465 * sample rate divider settig.
476 * @param divider Output sampling rate divider, 0 to 255.
480 inv_error_t inv_dl_cfg_sampling(unsigned char lpf, unsigned char divider)
488 mldlCfg.divider = divider
    [all...]
mldl_cfg_mpu.c 71 MPL_LOGD("mldl_cfg.divider = %02x\n", mldl_cfg->divider);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 162 // Add a header if this is the first group in an account and hide the divider
166 viewCache.divider.setVisibility(View.GONE);
179 viewCache.divider.setVisibility(View.VISIBLE);
220 public final View divider; field in class:GroupBrowseListAdapter.GroupListItemViewCache
230 divider = view.findViewById(R.id.divider);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestionsView.java 184 final View divider = dividers.get(0); local
186 divider.measure(
188 mDividerWidth = divider.getMeasuredWidth();
327 private static void addDivider(final ViewGroup stripView, final View divider) {
328 stripView.addView(divider);
330 (LinearLayout.LayoutParams)divider.getLayoutParams();
349 final View divider = mDividers.get(pos); local
350 // Add divider if this isn't the left most suggestion in suggestions strip.
351 addDivider(stripView, divider);
352 x += divider.getMeasuredWidth()
505 final View divider = inflater.inflate(R.layout.suggestion_divider, null); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogListItemViews.java 38 /** The divider between the primary and secondary actions. */
44 /** The divider to be shown below items. */
65 view.findViewById(R.id.divider),
  /sdk/emulator/mksdcard/
mksdcard.c 102 Wide divider; local
107 divider = ((256 * sectors_per_cluster) + NUM_FATS) / 2;
109 return (int)( (disk_size + (divider-1)) / divider );
  /external/chromium/chrome/browser/resources/net_internals/
resizableverticalsplitview.js 6 * This view implements a vertically split display with a draggable divider.
25 * @param {!DivView} sizerView The widget that will serve as draggable divider.
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
main.css 96 #header .divider,
97 #footer .divider {
  /packages/apps/Contacts/src/com/android/contacts/editor/
BaseRawContactEditorView.java 70 mDivider = findViewById(R.id.divider);
RawContactReadOnlyEditorView.java 260 final View divider = field.findViewById(R.id.divider); local
264 divider.setVisibility(View.GONE);
268 divider.setVisibility(View.VISIBLE);
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 80 // Yes <-- divider
82 // No <-- divider
152 // Add the number of attendees in the specific status (corresponding to the divider) in
154 private void updateDividerViewLabel(View divider, CharSequence label, int count) {
156 ((TextView)divider).setText(label);
159 ((TextView)divider).setText(label + " (" + count + ")");
225 if (view instanceof TextView) { // divider
355 if (view instanceof TextView) { // divider
422 if (view instanceof TextView) { // divider
  /packages/inputmethods/LatinIME/native/src/
correction.cpp 830 const int divider = diff < 31 ? 1 << diff : S_INT_MAX; local
    [all...]
  /external/oprofile/events/i386/westmere/
events 23 event:0x14 counters:0,1,2,3 um:arith minimum:2000000 name:ARITH : Cycles the divider is busy
  /frameworks/base/core/java/android/widget/
LinearLayout.java 66 * Show a divider at the beginning of the group.
74 * Show a divider at the end of the group.
236 * Set a drawable to be used as a divider between items.
237 * @param divider Drawable that will divide each item.
240 public void setDividerDrawable(Drawable divider) {
241 if (divider == mDivider) {
244 mDivider = divider;
245 if (divider != null) {
246 mDividerWidth = divider.getIntrinsicWidth();
247 mDividerHeight = divider.getIntrinsicHeight()
    [all...]
ExpandableListView.java 185 /** Drawable to be used as a divider when it is adjacent to any children */
309 // Use item's full height + the divider height
379 * be drawn using the same height as the normal divider ({@link #setDivider(Drawable)}) or
392 // Only proceed as possible child if the divider isn't above all items (if it is above
400 // These are the cases where we draw the child divider
401 final Drawable divider = mChildDivider; local
402 divider.setBounds(bounds);
403 divider.draw(canvas);
410 // Otherwise draw the default divider
    [all...]
ListView.java 155 // If a divider is specified use its intrinsic height for divider height
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 413 /* Only display the divider if we have a title and a
417 View divider = null; local
419 divider = mWindow.findViewById(R.id.titleDivider);
421 divider = mWindow.findViewById(R.id.titleDividerTop);
424 if (divider != null) {
425 divider.setVisibility(View.VISIBLE);
    [all...]
  /external/webkit/Source/WebCore/html/
DateComponents.cpp 502 static inline double positiveFmod(double value, double divider)
504 double remainder = fmod(value, divider);
505 return remainder < 0 ? remainder + divider : remainder;
  /packages/apps/Camera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java 39 private View mDivider; // the divider line
44 // such as Close icon, divider line and the hightlight bar, we need to
54 mDivider = findViewById(R.id.divider);
189 // And layout the divider line.

Completed in 683 milliseconds

1 2