Lines Matching refs:Behavior

234     const Behavior* behavior;  in getCharacter()
251 const Behavior* behavior; in getFallbackAction()
276 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) { in getMatch()
368 const Behavior* behavior; in tryRemapKey()
414 const Key** outKey, const Behavior** outBehavior) const { in getKeyBehavior()
417 const Behavior* behavior = key->firstBehavior; in getKeyBehavior()
471 const Behavior* found = nullptr; in findKey()
472 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) { in findKey()
628 Behavior* lastBehavior = nullptr; in readFromParcel()
638 Behavior* behavior = new Behavior(); in readFromParcel()
669 for (const Behavior* behavior = key->firstBehavior; behavior != nullptr; in writeToParcel()
691 firstBehavior(other.firstBehavior ? new Behavior(*other.firstBehavior) : nullptr) { in Key()
695 Behavior* behavior = firstBehavior; in ~Key()
697 Behavior* next = behavior->next; in ~Key()
706 KeyCharacterMap::Behavior::Behavior() : in Behavior() function in android::KeyCharacterMap::Behavior
710 KeyCharacterMap::Behavior::Behavior(const Behavior& other) : in Behavior() function in android::KeyCharacterMap::Behavior
711 next(other.next ? new Behavior(*other.next) : nullptr), in Behavior()
976 Behavior behavior; in parseKeyProperty()
1094 for (Behavior* b = key->firstBehavior; b; b = b->next) { in parseKeyProperty()
1101 Behavior* newBehavior = new Behavior(behavior); in parseKeyProperty()
1123 for (Behavior* b = key->firstBehavior; b; b = b->next) { in finishKey()