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

1 2

  /external/clang/test/CodeGen/
ppc64-elf-abi.c 20 // CHECK-ELFv1: define void @func_fab(%struct.fab* noalias sret %agg.result, i64 %x.coerce)
22 struct fab { float a; float b; }; struct
23 struct fab func_fab(struct fab x) { return x; }
ppc64le-aggregates.c 15 struct fab { float a; float b; }; struct
48 struct fab func_fab(struct fab x) { return x; }
114 // CHECK: %[[TMP:[^ ]+]] = load [2 x float], [2 x float]* bitcast (%struct.fab* @global_fab to [2 x float]*)
116 struct fab global_fab;
  /frameworks/support/design/tests/src/android/support/design/widget/
AppBarWithAnchoredFabMarginsTest.java 41 final FloatingActionButton fab = local
42 (FloatingActionButton) mCoordinatorLayout.findViewById(R.id.fab);
44 (CoordinatorLayout.LayoutParams) fab.getLayoutParams();
50 fab.getLocationOnScreen(fabOnScreenXY);
52 // FAB is horizontally centered in the coordinate system of its anchor (app bar).
54 fabOnScreenXY[0] + fab.getWidth() / 2, 1);
56 // the anchor. Since our FAB is far enough from the bottom edge of CoordinatorLayout,
57 // we are expecting the vertical center of the FAB to be aligned with the bottom edge
60 fabOnScreenXY[1] + fab.getHeight() / 2, 1);
68 final FloatingActionButton fab local
95 final FloatingActionButton fab = local
120 final FloatingActionButton fab = local
    [all...]
SnackbarTestWithFAB.java 49 final View fab = mCoordinatorLayout.findViewById(R.id.fab); local
50 fab.getLocationOnScreen(originalFabPosition);
57 // Now check that the FAB has shifted up to make space for the Snackbar
59 fab.getLocationOnScreen(fabPosition);
66 // And check that the FAB is back in it's original position
67 fab.getLocationOnScreen(fabPosition);
75 final View fab = mCoordinatorLayout.findViewById(R.id.fab); local
76 fab.getLocationOnScreen(originalFabPosition)
    [all...]
CoordinatorSnackbarWithFabTest.java 112 final FloatingActionButton fab = local
113 (FloatingActionButton) mCoordinatorLayout.findViewById(R.id.fab);
114 verifySnackbarViewStacking(fab, fab.getPaddingBottom()
115 - ((ViewGroup.MarginLayoutParams) fab.getLayoutParams()).bottomMargin);
122 onView(withId(R.id.fab)).perform(setVisibility(View.GONE));
131 onView(withId(R.id.fab)).perform(setVisibility(View.VISIBLE));
132 final FloatingActionButton fab = local
133 (FloatingActionButton) mCoordinatorLayout.findViewById(R.id.fab);
134 verifySnackbarViewStacking(fab, fab.getPaddingBottom(
    [all...]
BottomSheetBehaviorActivity.java 46 mFab = (FloatingActionButton) findViewById(R.id.fab);
AppBarWithCollapsingToolbarTest.java 247 final FloatingActionButton fab = local
248 (FloatingActionButton) mCoordinatorLayout.findViewById(R.id.fab);
269 // FloatingActionButton.show and not the internal path that FAB's behavior is using,
271 // that scales the FAB to 0/0 scales and interpolates its alpha to 0. Since that animation
273 // the swipe gesture, sleep for a bit to catch the "final" state of the FAB.
276 // At this point the FAB should be scaled to 0/0 and set at alpha 0. Since the relevant
279 assertEquals(0.0f, fab.getScaleX(), 0.0f);
280 assertEquals(0.0f, fab.getScaleY(), 0.0f);
281 assertEquals(0.0f, fab.getAlpha(), 0.0f);
292 // the FAB
    [all...]
BottomSheetBehaviorTest.java 118 * Wait for a FAB to change its visibility (either shown or hidden).
141 public void onShown(FloatingActionButton fab) {
148 public void onHidden(FloatingActionButton fab) {
  /frameworks/support/design/tests/src/android/support/design/testutils/
FloatingActionButtonActions.java 50 final FloatingActionButton fab = (FloatingActionButton) view; local
51 fab.setBackgroundTintList(ColorStateList.valueOf(color));
74 final FloatingActionButton fab = (FloatingActionButton) view;
75 fab.setImageResource(resId);
98 final FloatingActionButton fab = (FloatingActionButton) view;
99 fab.setSize(size);
148 FloatingActionButton fab = (FloatingActionButton) view;
149 fab.hide();
150 fab.show();
173 FloatingActionButton fab = (FloatingActionButton) view
    [all...]
TestUtilsMatchers.java 282 final FloatingActionButton fab = (FloatingActionButton) view;
284 // Since the FAB background is round, and may contain the shadow, we'll look at
287 fab.getContentRect(area);
298 fab.getBackground(), view.getWidth(), view.getHeight(), false,
354 final FloatingActionButton fab = (FloatingActionButton) view;
356 fab.getContentRect(area);
381 final FloatingActionButton fab = (FloatingActionButton) view;
383 (ViewGroup.MarginLayoutParams) fab.getLayoutParams();
387 fab.getContentRect(area);
395 assertEquals(lp.topMargin, fab.getTop() + area.top)
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsdir.h 60 struct FAB fab; member in struct:DIR
62 struct fabdef fab; member in struct:DIR
vmsfunctions.c 39 struct FAB *dfab = &dir->fab;
48 dfab->fab$l_fna = searchspec;
49 dfab->fab$b_fns = strlen (searchspec);
50 dfab->fab$l_nam = dnam;
80 struct FAB *dfab = &dir->fab;
81 struct NAM *dnam = (struct NAM *)(dfab->fab$l_nam);
121 struct FAB *dfab = &dir->fab;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
te-vms.c 120 struct FAB fab; local
176 /* Allocate and initialize a FAB and NAM structures. */
177 fab = cc$rms_fab;
184 fab.fab$l_fna = tryfile;
185 fab.fab$b_fns = strlen (tryfile);
186 fab.fab$l_nam = &nam
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
vms-misc.c 408 struct FAB fab = cc$rms_fab;
410 fab.fab$l_fna = vms_filename;
411 fab.fab$b_fns = strlen (vms_filename);
412 fab.fab$b_fac = FAB$M_PUT;
413 fab.fab$l_fop = FAB$M_ESC
406 struct FAB fab = cc$rms_fab; local
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
FloatingActionButton.java 82 * @param fab the FloatingActionButton that was shown.
84 public void onShown(FloatingActionButton fab) {}
90 * @param fab the FloatingActionButton that was hidden.
92 public void onHidden(FloatingActionButton fab) {}
604 // if the FAB is anchored to the AppBarLayout
635 // show/hide the FAB
663 // If the anchor's bottom is below the seam, we'll animate our FAB out
666 // Else, we'll animate our FAB back in
690 // First, let's make sure that the visibility of the FAB is consistent
705 // Now let the CoordinatorLayout lay out the FAB
    [all...]
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/
SchedulerFragment.java 81 FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.fab_add_alarm); local
82 fab.setOnClickListener(new View.OnClickListener() {
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/
SchedulerFragment.java 81 FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.fab_add_alarm); local
82 fab.setOnClickListener(new View.OnClickListener() {
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/
SchedulerFragment.java 81 FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.fab_add_alarm); local
82 fab.setOnClickListener(new View.OnClickListener() {
  /external/v8/test/cctest/
test-api-fast-accessor-builder.cc 80 auto fab = v8::experimental::FastAccessorBuilder::New(isolate); local
81 fab->ReturnValue(fab->IntegerConstant(124));
84 isolate, NativePropertyAccessor, fab));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
all-opcodes.d 660 28a: 3fab.*
661 28b: 3fab.*
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
ExpiredTimersActivity.java 66 findViewById(R.id.fab).setOnClickListener(new FabClickListener());
237 * Clicking the fab resets all expired timers.
  /build/tools/droiddoc/templates-sdk/
footer.cs 7 class="dac-fab dac-primary"><i class="dac-sprite dac-mail"></i></span></a>
167 <button type="submit" value="Submit" class="dac-fab dac-primary dac-large dac-modal-action"><i class="dac-sprite dac-arrow-right"></i></button>
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 163 mFab = (ImageView) findViewById(R.id.fab);
171 // prevent the fab from being selected.
  /packages/apps/Settings/src/com/android/settings/
SettingsPreferenceFragment.java 133 mFloatingActionButton = (FloatingActionButton) root.findViewById(R.id.fab);
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css     [all...]

Completed in 591 milliseconds

1 2