Lines Matching refs:exclude

1068      * Whether to add the given id to the list of target ids to exclude from this
1069 * transition. The <code>exclude</code> parameter specifies whether the target
1084 * @param exclude Whether to add the target to or remove the target from the
1088 public Transition excludeTarget(int targetId, boolean exclude) {
1090 mTargetIdExcludes = excludeObject(mTargetIdExcludes, targetId, exclude);
1096 * Whether to add the given transitionName to the list of target transitionNames to exclude
1097 * from this transition. The <code>exclude</code> parameter specifies whether the target
1112 * @param exclude Whether to add the target to or remove the target from the
1116 public Transition excludeTarget(String targetName, boolean exclude) {
1117 mTargetNameExcludes = excludeObject(mTargetNameExcludes, targetName, exclude);
1122 * Whether to add the children of the given id to the list of targets to exclude
1123 * from this transition. The <code>exclude</code> parameter specifies whether
1142 * @param exclude Whether to add the target to or remove the target from the
1146 public Transition excludeChildren(int targetId, boolean exclude) {
1148 mTargetIdChildExcludes = excludeObject(mTargetIdChildExcludes, targetId, exclude);
1154 * Whether to add the given target to the list of targets to exclude from this
1155 * transition. The <code>exclude</code> parameter specifies whether the target
1170 * @param exclude Whether to add the target to or remove the target from the
1174 public Transition excludeTarget(View target, boolean exclude) {
1175 mTargetExcludes = excludeObject(mTargetExcludes, target, exclude);
1181 * to exclude from this transition. The <code>exclude</code> parameter specifies
1196 * @param exclude Whether to add the target to or remove the target from the
1200 public Transition excludeChildren(View target, boolean exclude) {
1201 mTargetChildExcludes = excludeObject(mTargetChildExcludes, target, exclude);
1209 private static <T> ArrayList<T> excludeObject(ArrayList<T> list, T target, boolean exclude) {
1211 if (exclude) {
1221 * Whether to add the given type to the list of types to exclude from this
1222 * transition. The <code>exclude</code> parameter specifies whether the target
1237 * @param exclude Whether to add the target type to or remove it from the
1241 public Transition excludeTarget(Class type, boolean exclude) {
1242 mTargetTypeExcludes = excludeObject(mTargetTypeExcludes, type, exclude);
1248 * be excluded from this transition. The <code>exclude</code> parameter
1264 * @param exclude Whether to add the target type to or remove it from the
1268 public Transition excludeChildren(Class type, boolean exclude) {
1269 mTargetTypeChildExcludes = excludeObject(mTargetTypeChildExcludes, type, exclude);
2354 * can be useful for lists that we don't expect to be used often (eg, the exclude