HomeSort by relevance Sort by last modified time
    Searched defs:IntentFlag (Results 1 - 2 of 2) sorted by null

  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
IntentFlags.java 29 enum IntentFlag {
59 private Set<IntentFlag> mComplements = new HashSet<>();
60 private Set<IntentFlag> mConflicts = new HashSet<>();
61 private Set<IntentFlag> mRequests = new HashSet<>();
63 IntentFlag(String name, Set<IntentFlag> complements, Set<IntentFlag> conflicts,
64 Set<IntentFlag> requests) {
74 public Set<IntentFlag> getComplements() {
81 public Set<IntentFlag> getConflicts()
    [all...]
  /cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
Persistence.java 94 Map<String, IntentFlag> table, String name) throws JSONException {
153 Map<String, IntentFlag> table) throws JSONException {
173 Map<String, IntentFlag> table) throws JSONException {
209 static GenerationIntent fromJson(JSONObject object, Map<String, IntentFlag> table)
222 * can be added using {@link LaunchIntent#withFlags(IntentFlag...)}
230 private final List<IntentFlag> mIntentFlags;
234 public LaunchIntent(List<IntentFlag> intentFlags, ComponentName componentName,
258 for (IntentFlag intentFlag : mIntentFlags) {
259 flag |= intentFlag.flag
    [all...]

Completed in 3499 milliseconds