Home | History | Annotate | Download | only in gre

Lines Matching defs:fqcn

133         // try to find a rule for this element's FQCN
158 // try to find a rule for this element's FQCN
193 // try to find a rule for this element's FQCN
219 // try to find a rule for this element's FQCN
238 // try to find a rule for this element's FQCN
261 // try to find a rule for this element's FQCN
287 // try to find a rule for this element's FQCN
310 // try to find a rule for this element's FQCN
333 // try to find a rule for this element's FQCN
395 // try to find a rule for this element's FQCN
594 // keys (e.g. the UiViewElementNode key vs. the FQCN string key.) So transfer
640 * actual FQCN and if that fails will find the first parent that works in the view
678 // Get the FQCN of this View
679 String fqcn = desc.getFullClassName();
680 if (fqcn == null) {
685 // The first time we keep the FQCN around as it's the target class we were
687 // target FQCN remains constant.
689 targetFqcn = fqcn;
692 if (fqcn.indexOf('.') == -1) {
696 fqcn = ANDROID_WIDGET_PREFIX + fqcn;
699 // Try to find a rule matching the "real" FQCN. If we find it, we're done.
701 rule = loadRule(fqcn, targetFqcn);
704 // As a side effect, loadRule() also cached the rule using the target FQCN.
715 * Try to load a rule given a specific FQCN. This looks for an exact match in either
718 * Once a rule is found (or not), it is stored in a cache using its target FQCN
721 * The real FQCN is the actual rule class we're loading, e.g. "android.view.View"
722 * where target FQCN is the class we were initially looking for, which might be the same as
723 * the real FQCN or might be a derived class, e.g. "android.widget.TextView".
725 * @param realFqcn The FQCN of the rule class actually being loaded.
726 * @param targetFqcn The FQCN of the class actually processed, which might be different from
727 * the FQCN of the rule being loaded.
777 // This means however we can't resolve this fqcn since it's not
802 // Memorize in the cache that we couldn't find a rule for this real FQCN
808 * Initialize a rule we just loaded. The rule has a chance to examine the target FQCN
812 * cache it using the target FQCN if the rule is accepted.
814 * The real FQCN is the actual rule class we're loading, e.g. "android.view.View"
815 * where target FQCN is the class we were initially looking for, which might be the same as
816 * the real FQCN or might be a derived class, e.g. "android.widget.TextView".
819 * @param targetFqcn The FQCN of the class actually processed, which might be different from
820 * the FQCN of the rule being loaded.
821 * @return The rule if accepted, or null if the rule can't handle that FQCN.