HomeSort by relevance Sort by last modified time
    Searched defs:divider (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /sdk/emulator/mksdcard/src/source/
mksdcard.c 102 Wide divider; local
107 divider = ((256 * sectors_per_cluster) + NUM_FATS) / 2;
109 return (int)( (disk_size + (divider-1)) / divider );
  /external/ltp/lib/
random_range.c 99 static long long divider(long long, long long, long long, long long);
352 randnum = divider(min, max, 0, -1);
439 randnum = divider(min, max, 0, -1);
526 randnum = divider(min, max, 0, -1);
547 divider(long long min, long long max, long long cnt, long long rand) function
575 printf("divider: min=%lld, max=%lld, cnt=%lld, rand=%lld\n", min, max,
596 return divider(med, max, cnt + 1, rand);
598 return divider(min, med, cnt + 1, rand);
  /frameworks/support/design/src/android/support/design/widget/
BottomNavigationView.java 376 View divider = new View(context); local
377 divider.setBackgroundColor(
383 divider.setLayoutParams(dividerParams);
384 addView(divider);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationsettings/
PeopleAndOptionsFragment.java 323 final View divider = view.findViewById(R.id.divider); local
325 divider.setVisibility(mNeedDivider ? View.VISIBLE : View.GONE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 75 * @param dividerWidth width of divider, zero for no dividers.
353 final Key divider = new MoreKeyDivider( local
355 params.onAddKey(divider);
362 // Used as a divider maker. A divider is drawn by {@link MoreKeysKeyboardView}.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 228 final Divider divider = new Divider(params, params.mDivider, x + width, y, local
230 params.onAddKey(divider);
250 private static final class Divider extends Key.Spacer {
253 public Divider(final KeyboardParams params, final Drawable icon, final int x,
SuggestionStripLayoutHelper.java 386 final View divider = mDividerViews.get(positionInStrip); local
387 // Add divider if this isn't the left most suggestion in suggestions strip.
388 addDivider(stripView, divider);
389 x += divider.getMeasuredWidth();
526 // Add divider if this isn't the left most suggestion in suggestions strip.
SuggestionStripView.java 153 final View divider = inflater.inflate(R.layout.suggestion_divider, null); local
154 mDividerViews.add(divider);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListViewCompat.java 248 * with this ListView's padding and divider heights included. If maxHeight is provided, the
281 final Drawable divider = getDivider(); local
291 final int dividerHeight = ((reportedDividerHeight > 0) && divider != null)
331 // Count the divider for all but one child
  /packages/apps/ExactCalculator/src/com/android/calculator2/
DragController.java 117 final View divider = vh.getDivider(); local
162 divider.setTranslationY(mAnimationController.getDateTranslationY(yFraction));
  /art/runtime/jit/
jit_code_cache.cc 119 uint8_t* divider = data_map->Begin() + data_size; local
122 data_map->RemapAtEnd(divider, "jit-code-cache", kProtAll, &error_str, use_ashmem);
129 DCHECK_EQ(code_map->Begin(), divider);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassMultisampleTests.cpp 1626 deUint32 divider = 2; local
1685 deUint32 divider = 2; local
1730 deUint32 divider = 2; local
1780 deUint32 divider = 2; local
1876 deUint32 divider = 2; local
1941 deUint32 divider = 2; local
2000 deUint32 divider = 2; local
2064 deUint32 divider = 2; local
    [all...]
  /frameworks/support/v14/preference/src/android/support/v14/preference/
PreferenceFragment.java 263 final Drawable divider = a.getDrawable(R.styleable.PreferenceFragment_android_divider); local
298 setDivider(divider);
316 * @param divider the drawable to use
319 public void setDivider(Drawable divider) {
320 mDividerDecoration.setDivider(divider);
324 * Sets the height of the divider that will be drawn between each item in the list. Calling
327 * @param height The new height of the divider in pixels.
    [all...]
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceFragmentCompat.java 251 final Drawable divider = a.getDrawable( local
287 setDivider(divider);
305 * @param divider the drawable to use
308 public void setDivider(Drawable divider) {
309 mDividerDecoration.setDivider(divider);
313 * Sets the height of the divider that will be drawn between each item in the list. Calling
316 * @param height The new height of the divider in pixels.
820 public void setDivider(Drawable divider) {
821 if (divider != null) {
822 mDividerHeight = divider.getIntrinsicHeight()
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp 1041 const char *divider = strchr(next, ' '); local
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 3518 int divider() const { return divider_; } function in class:testing::gmock_matchers_test::DivisibleByImpl
    [all...]
  /frameworks/base/core/java/android/widget/
ExpandableListView.java 214 /** Drawable to be used as a divider when it is adjacent to any children */
442 // Use item's full height + the divider height
511 * be drawn using the same height as the normal divider ({@link #setDivider(Drawable)}) or
524 // Only proceed as possible child if the divider isn't above all items (if it is above
532 // These are the cases where we draw the child divider
533 final Drawable divider = mChildDivider; local
534 divider.setBounds(bounds);
535 divider.draw(canvas);
542 // Otherwise draw the default divider
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 539 // Only show the divider if we have a title.
540 View divider = null; local
543 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
545 if (divider == null) {
546 divider = topPanel.findViewById(R.id.titleDivider);
550 divider = topPanel.findViewById(R.id.titleDividerTop);
553 if (divider != null) {
554 divider.setVisibility(View.VISIBLE);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertController.java 502 // Only show the divider if we have a title.
503 View divider = null; local
505 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
508 if (divider != null) {
509 divider.setVisibility(View.VISIBLE);
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/devices/
VirtualDevice.cpp 2226 uint32_t divider = strtoul(prop, &retptr, 10); local
    [all...]
  /external/googletest/googlemock/test/
gmock-matchers_test.cc 3988 int divider() const { return divider_; } function in class:testing::gmock_matchers_test::DivisibleByImpl
    [all...]
  /external/v8/testing/gmock/test/
gmock-matchers_test.cc 3978 int divider() const { return divider_; } function in class:testing::gmock_matchers_test::DivisibleByImpl
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
FloatingToolbar.java 1209 final View divider = createDivider(mContext); local
1713 View divider = new View(context); local
    [all...]
  /prebuilts/sdk/current/support/v14/preference/libs/
android-support-v14-preference.jar 
  /prebuilts/sdk/current/support/v7/preference/libs/
android-support-v7-preference.jar 

Completed in 3782 milliseconds

12 3 4 5