/packages/apps/DeskClock/src/com/android/deskclock/ |
FabController.java | 9 * Implementers of this interface are able to {@link #onUpdateFab configure the fab} and associated 12 * {@link #onFabClick fab}, {@link #onLeftButtonClick left button} and 18 * Configures the display of the fab component to match the current state of this controller. 20 * @param fab the fab component to be configured based on current state 22 void onUpdateFab(@NonNull ImageView fab); 25 * Called before onUpdateFab when the fab should be animated. 27 * @param fab the fab component to be configured based on current state 29 void onMorphFab(@NonNull ImageView fab); [all...] |
FabContainer.java | 6 * Implemented by containers that house the fab and its associated buttons. Also implemented by 7 * containers that know how to contact the <strong>true</strong> fab container to ferry through 16 /** Signals that the fab should be updated in place with no animation. */ 18 /** Signals the fab should be "animated away", updated, and "animated back". */ 20 /** Signals that the fab should morph into a new state in place. */ 25 /** Signals that the fab should request focus. */ 37 /** Disable the buttons of the fab so they do not respond to clicks. */ 42 /** Signals the fab and buttons should be "animated away". */ 44 /** Signals the fab and buttons should be "animated back". */ 61 * Requests that this container update the fab and/or its buttons because their state ha [all...] |
DeskClockFragment.java | 34 /** The container that houses the fab and its left and right buttons. */ 45 // Update the fab and buttons in case their state changed while the fragment was paused. 67 public void onMorphFab(@NonNull ImageView fab) { 79 * @param fabContainer the container that houses the fab and its left and right buttons 86 * Requests that the parent activity update the fab and buttons. 88 * @param updateTypes the manner in which the fab container should be updated
|
/packages/apps/Dialer/java/com/android/dialer/widget/ |
FloatingActionButtonController.java | 32 /** Controls the movement and appearance of the FAB (Floating Action Button). */ 42 private final FloatingActionButton fab; field in class:FloatingActionButtonController 47 public FloatingActionButtonController(Activity activity, FloatingActionButton fab) { 56 this.fab = fab; 71 return fab.isShown(); 75 * Sets FAB as shown or hidden. 90 fab.setImageResource(iconId); 91 fab.setImageTintList( 95 if (!fab.getContentDescription().equals(description)) [all...] |
/external/llvm/test/CodeGen/PowerPC/ |
ppc-empty-fs.ll | 8 %struct.fab = type { float, float } 11 define void @func_fab(%struct.fab* noalias sret %agg.result, i64 %x.coerce) #0 { 13 %x = alloca %struct.fab, align 8 14 %0 = bitcast %struct.fab* %x to i64* 16 %1 = bitcast %struct.fab* %agg.result to i8* 17 %2 = bitcast %struct.fab* %x to i8*
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
FabDrawable.java | 33 * When not focused or pressed, the fab will be a solid circle of the color specified with 34 * {@link #setFabColor(int)}. When it is pressed or focused, the fab will grow or shrink 37 * {@link #FabDrawable(android.content.Context)} provides a quick way to use fab drawable using 56 * Default constructor to provide consistent fab values across uses. 65 * Custom constructor allows extra customization of the fab's behavior. 67 * @param fabGrowth The amount that the fab should change by when it is focused in pixels. 68 * @param strokeWidth The width of the stroke when the fab is focused in pixels. 69 * @param duration The animation duration for the growth of the fab and stroke. 73 throw new IllegalArgumentException("Fab growth must be >= 0."); 75 throw new IllegalArgumentException("Fab growth must be <= strokeWidth.") [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerFragment.java | 239 private void updateFab(@NonNull ImageView fab, boolean animate) { 243 fab.setVisibility(INVISIBLE); 247 fab.setVisibility(VISIBLE); 251 fab.setImageResource(R.drawable.ic_play_pause_animation); 253 fab.setImageResource(R.drawable.ic_play_pause); 255 fab.setContentDescription(fab.getResources().getString(R.string.timer_stop)); 259 fab.setImageResource(R.drawable.ic_stop_play_animation); 261 fab.setImageResource(R.drawable.ic_pause_play); 263 fab.setContentDescription(fab.getResources().getString(R.string.timer_start)) [all...] |
/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; }
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
FloatingActionButtonController.java | 32 * Controls the movement and appearance of the FAB (Floating Action Button). 77 * Sets FAB as View.VISIBLE or View.GONE. 98 * Updates the FAB location (middle to right position) as the PageView scrolls. 100 * @param positionOffset A fraction used to calculate position of the FAB during page scroll. 103 // As the page is scrolling, if we're on the first tab, update the FAB position so it 110 * Aligns the FAB to the described location 120 * Aligns the FAB to the described location plus specified additional offsets. 197 * Calculates the X offset of the FAB to the given alignment, adjusted for whether or not the 207 // Moves the FAB to exactly center screen. 210 // Moves the FAB a quarter of the screen width [all...] |
/developers/build/prebuilts/gradle/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/ |
FloatingActionButton.java | 40 * Called when the checked state of a FAB has changed. 42 * @param fabView The FAB view whose state has changed. 57 // A boolean that tells if the FAB is checked or not. 60 // A listener to communicate that the FAB has changed it's state 96 * Sets the checked/unchecked state of the FAB.
|
FloatingActionButtonBasicFragment.java | 55 // When a FAB is toggled, log the action. 58 Log.d(TAG, String.format("FAB 1 was %s.", isChecked ? "checked" : "unchecked")); 61 Log.d(TAG, String.format("FAB 2 was %s.", isChecked ? "checked" : "unchecked"));
|
/developers/samples/android/ui/views/FloatingActionButton/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/ |
FloatingActionButton.java | 40 * Called when the checked state of a FAB has changed. 42 * @param fabView The FAB view whose state has changed. 57 // A boolean that tells if the FAB is checked or not. 60 // A listener to communicate that the FAB has changed it's state 96 * Sets the checked/unchecked state of the FAB.
|
FloatingActionButtonBasicFragment.java | 55 // When a FAB is toggled, log the action. 58 Log.d(TAG, String.format("FAB 1 was %s.", isChecked ? "checked" : "unchecked")); 61 Log.d(TAG, String.format("FAB 2 was %s.", isChecked ? "checked" : "unchecked"));
|
/development/samples/browseable/FloatingActionButtonBasic/src/com.example.android.floatingactionbuttonbasic/ |
FloatingActionButton.java | 40 * Called when the checked state of a FAB has changed. 42 * @param fabView The FAB view whose state has changed. 57 // A boolean that tells if the FAB is checked or not. 60 // A listener to communicate that the FAB has changed it's state 96 * Sets the checked/unchecked state of the FAB.
|
FloatingActionButtonBasicFragment.java | 55 // When a FAB is toggled, log the action. 58 Log.d(TAG, String.format("FAB 1 was %s.", isChecked ? "checked" : "unchecked")); 61 Log.d(TAG, String.format("FAB 2 was %s.", isChecked ? "checked" : "unchecked"));
|
/toolchain/binutils/binutils-2.27/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...] |
/test/framework/host_setup/ |
fabfile.py | 26 usage: $ fab SetPassword:<password for hosts> 36 usage: $ fab GetHosts:<path to a source file contains hosts info> 48 usage: $ fab SetupIptables:<path to a source file contains ip addresses of
|
host_setup.sh | 68 fab SetPassword:$PASSWORD GetHosts:$HOSTS_PATH $TASK:$IPADDRESSES_PATH 70 fab SetPassword:$PASSWORD GetHosts:$HOSTS_PATH $TASK
|
/toolchain/binutils/binutils-2.27/gas/config/ |
te-vms.c | 121 struct FAB fab; local 175 /* Allocate and initialize a FAB and NAM structures. */ 176 fab = cc$rms_fab; 183 fab.fab$l_fna = tryfile; 184 fab.fab$b_fns = strlen (tryfile); 185 fab.fab$l_nam = &nam [all...] |
/packages/apps/Dialer/java/com/android/dialer/main/impl/ |
MainSearchController.java | 64 * <li>FAB, visible in dialpad search when dialpad is hidden. Otherwise, FAB is hidden. 66 * <li>Dialpad, shown through fab clicks and hidden with Android back button. 83 private final FloatingActionButton fab; field in class:MainSearchController 92 FloatingActionButton fab, 97 this.fab = fab; 108 /** Shows the dialpad, hides the FAB and slides the toolbar off screen. */ 117 fab.hide(); 160 * Hides the dialpad, reveals the FAB and slides the toolbar back onto the screen [all...] |
OldMainActivityPeer.java | 202 FloatingActionButton fab = mainActivity.findViewById(R.id.fab); local 203 fab.setOnClickListener( 217 mainActivity, mainActivity.getFragmentManager(), fab); 230 bottomNav, fab, toolbar, mainActivity.findViewById(R.id.toolbar_shadow)); 239 callLogHostInterface = new MainCallLogHost(searchController, fab); 557 FloatingActionButton fab, 560 return new MainSearchController(mainActivity, bottomNavBar, fab, mainToolbar, toolbarShadow); 693 private final FloatingActionButton fab; field in class:OldMainActivityPeer.MainCallLogHost 696 MainCallLogHost(MainSearchController searchController, FloatingActionButton fab) { 1082 private final FloatingActionButton fab; field in class:OldMainActivityPeer.MainBottomNavBarBottomNavTabListener [all...] |
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/ |
MiscBaseBoardManufacturer.uni | 21 #string STR_MISC_BASE_BOARD_VERSION #language en-US "FAB-D"
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
StopwatchFragment.java | 89 /** Draws a gradient over the bottom of the {@link #mLapsList} to reduce clash with the fab. */ 221 public void onFabClick(@NonNull ImageView fab) { 242 private void updateFab(@NonNull ImageView fab, boolean animate) { 245 fab.setImageResource(R.drawable.ic_play_pause_animation); 247 fab.setImageResource(R.drawable.ic_play_pause); 249 fab.setContentDescription(fab.getResources().getString(R.string.sw_pause_button)); 252 fab.setImageResource(R.drawable.ic_pause_play_animation); 254 fab.setImageResource(R.drawable.ic_pause_play); 256 fab.setContentDescription(fab.getResources().getString(R.string.sw_start_button)) [all...] |
/device/google/accessory/demokit/hardware/fab/m256c/ |
README | 15 Fab drawing:
|
/external/walt/hardware/kicad/walt_footprints.pretty/ |
BPW34_DIP2.kicad_mod | 7 (fp_text value Photodiode (at 2.52 -3.15) (layer F.Fab)
|