Searched defs:Behavior (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/include/input/
H A DKeyCharacterMap.h147 struct Behavior { struct in class:android::KeyCharacterMap
148 Behavior();
149 Behavior(const Behavior& other);
152 Behavior* next;
180 Behavior* firstBehavior;
238 const Key** outKey, const Behavior** outBehavior) const;
/frameworks/support/design/src/android/support/design/widget/
H A DBaseTransientBottomBar.java409 // If our LayoutParams are from a CoordinatorLayout, we'll setup our Behavior
412 final Behavior behavior = new Behavior();
727 final class Behavior extends SwipeDismissBehavior<SnackbarBaseLayout> { class in class:BaseTransientBottomBar
H A DFloatingActionButton.java67 @CoordinatorLayout.DefaultBehavior(FloatingActionButton.Behavior.class)
545 * Behavior designed for use with {@link FloatingActionButton} instances. Its main function
549 public static class Behavior extends CoordinatorLayout.Behavior<FloatingActionButton> { class in class:FloatingActionButton
556 public Behavior() { method in class:FloatingActionButton.Behavior
561 public Behavior(Context context, AttributeSet attrs) { method in class:FloatingActionButton.Behavior
H A DAppBarLayout.java107 @CoordinatorLayout.DefaultBehavior(AppBarLayout.Behavior.class)
785 * The default {@link Behavior} for {@link AppBarLayout}. Implements the necessary nested
788 public static class Behavior extends HeaderBehavior<AppBarLayout> { class in class:AppBarLayout
818 public Behavior() {} method in class:AppBarLayout.Behavior
820 public Behavior(Context context, AttributeSet attrs) { method in class:AppBarLayout.Behavior
1251 final CoordinatorLayout.Behavior behavior = lp.getBehavior();
1359 * Behavior which should be used by {@link View}s which can scroll vertically and support
1411 final CoordinatorLayout.Behavior behavior =
1413 if (behavior instanceof Behavior) {
1416 final Behavior ablBehavio
[all...]
H A DCoordinatorLayout.java89 * <p>By specifying {@link CoordinatorLayout.Behavior Behaviors} for child views of a
135 static final ThreadLocal<Map<String, Constructor<Behavior>>> sConstructors =
371 * Reset all Behavior-related tracking records either to clean up or in preparation
378 final Behavior b = ((LayoutParams) mBehaviorTouchView.getLayoutParams()).getBehavior();
434 final Behavior b = lp.getBehavior();
524 final Behavior b = lp.getBehavior();
580 static Behavior parseBehavior(Context context, AttributeSet attrs, String name) {
600 Map<String, Constructor<Behavior>> constructors = sConstructors.get();
605 Constructor<Behavior> c = constructors.get(fullName);
607 final Class<Behavior> claz
1974 public static abstract class Behavior<V extends View> { class in class:CoordinatorLayout
1979 public Behavior() { method in class:CoordinatorLayout.Behavior
1990 public Behavior(Context context, AttributeSet attrs) { method in class:CoordinatorLayout.Behavior
[all...]
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp234 const Behavior* behavior;
251 const Behavior* behavior;
276 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
368 const Behavior* behavior;
414 const Key** outKey, const Behavior** outBehavior) const {
417 const Behavior* behavior = key->firstBehavior;
431 // Behavior must have at least the set of meta states specified.
471 const Behavior* found = NULL;
472 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) {
628 Behavior* lastBehavio
706 KeyCharacterMap::Behavior::Behavior() : function in class:android::KeyCharacterMap::Behavior
710 KeyCharacterMap::Behavior::Behavior(const Behavior& other) : function in class:android::KeyCharacterMap::Behavior
[all...]

Completed in 83 milliseconds