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()
372 const Key** outKey, const Behavior** outBehavior) const { in getKeyBehavior()
375 const Behavior* behavior = key->firstBehavior; in getKeyBehavior()
429 const Behavior* found = NULL; in findKey()
430 for (const Behavior* behavior = key->firstBehavior; behavior; behavior = behavior->next) { in findKey()
582 Behavior* lastBehavior = NULL; in readFromParcel()
591 Behavior* behavior = new Behavior(); in readFromParcel()
621 for (const Behavior* behavior = key->firstBehavior; behavior != NULL; in writeToParcel()
642 firstBehavior(other.firstBehavior ? new Behavior(*other.firstBehavior) : NULL) { in Key()
646 Behavior* behavior = firstBehavior; in ~Key()
648 Behavior* next = behavior->next; in ~Key()
657 KeyCharacterMap::Behavior::Behavior() : in Behavior() function in android::KeyCharacterMap::Behavior
661 KeyCharacterMap::Behavior::Behavior(const Behavior& other) : in Behavior() function in android::KeyCharacterMap::Behavior
662 next(other.next ? new Behavior(*other.next) : NULL), in Behavior()
923 Behavior behavior; in parseKeyProperty()
1007 for (Behavior* b = key->firstBehavior; b; b = b->next) { in parseKeyProperty()
1014 Behavior* newBehavior = new Behavior(behavior); in parseKeyProperty()
1034 for (Behavior* b = key->firstBehavior; b; b = b->next) { in finishKey()