Lines Matching refs:Behavior

308     const Behavior* behavior;  in getCharacter()
325 const Behavior* behavior; in getFallbackAction()
350 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) { in getMatch()
442 const Behavior* behavior; in tryRemapKey()
488 const Key** outKey, const Behavior** outBehavior) const { in getKeyBehavior()
491 const Behavior* behavior = key->firstBehavior; in getKeyBehavior()
545 const Behavior* found = nullptr; in findKey()
546 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) { in findKey()
709 Behavior* lastBehavior = nullptr; in readFromParcel()
719 Behavior* behavior = new Behavior(); in readFromParcel()
780 for (const Behavior* behavior = key->firstBehavior; behavior != nullptr; in writeToParcel()
813 firstBehavior(other.firstBehavior ? new Behavior(*other.firstBehavior) : nullptr) { in Key()
817 Behavior* behavior = firstBehavior; in ~Key()
819 Behavior* next = behavior->next; in ~Key()
828 KeyCharacterMap::Behavior::Behavior() : in Behavior() function in android::KeyCharacterMap::Behavior
832 KeyCharacterMap::Behavior::Behavior(const Behavior& other) : in Behavior() function in android::KeyCharacterMap::Behavior
833 next(other.next ? new Behavior(*other.next) : nullptr), in Behavior()
1098 Behavior behavior; in parseKeyProperty()
1216 for (Behavior* b = key->firstBehavior; b; b = b->next) { in parseKeyProperty()
1223 Behavior* newBehavior = new Behavior(behavior); in parseKeyProperty()
1245 for (Behavior* b = key->firstBehavior; b; b = b->next) { in finishKey()