Searched defs:targetType (Results 1 - 4 of 4) sorted by last modified time

/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp1622 const char* targetType) {
1625 return String8::format("Waiting because the %s window is paused.", targetType);
1633 "of being removed.", targetType);
1640 "The window may be in the process of being removed.", targetType,
1648 targetType, connection->outboundQueue.count(), connection->waitQueue.count());
1668 targetType, connection->outboundQueue.count(), connection->waitQueue.count());
1692 targetType, STREAM_AHEAD_EVENT_TIMEOUT * 0.000001f,
1620 checkWindowReadyForMoreInputLocked(nsecs_t currentTime, const sp<InputWindowHandle>& windowHandle, const EventEntry* eventEntry, const char* targetType) argument
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp4191 const char16_t* targetType = type; local
4196 targetType, targetTypeLen);
4211 } while (strzcmp16(attr.string(), attr.size(), targetType, targetTypeLen) == 0
4212 && (targetType = attrPrivate.string())
/frameworks/base/core/java/android/transition/
H A DTransition.java1009 * <p>Note that any View that can be cast to targetType will be included, so
1010 * if targetType is <code>View.class</code>, all Views will be included.</p>
1017 * @param targetType The type to include when running this transition.
1023 public Transition addTarget(Class targetType) { argument
1024 if (targetType != null) {
1028 mTargetTypes.add(targetType);
H A DTransitionSet.java232 public TransitionSet addTarget(Class targetType) { argument
234 mTransitions.get(i).addTarget(targetType);
236 return (TransitionSet) super.addTarget(targetType);

Completed in 115 milliseconds