HomeSort by relevance Sort by last modified time
    Searched refs:isPinned (Results 1 - 25 of 39) sorted by null

1 2

  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutInfoCompat.java 100 public boolean isPinned() {
101 return mShortcutInfo.isPinned();
ShortcutCache.java 67 if (shortcut.isPinned()) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpManager.java 163 @NonNull HeadsUpManager.HeadsUpEntry headsUpEntry, boolean isPinned) {
164 if (DEBUG) Log.v(TAG, "setEntryPinned: " + isPinned);
166 if (row.isPinned() != isPinned) {
167 row.setPinned(isPinned);
170 if (isPinned) {
188 setEntryPinned(remove, false /* isPinned */);
383 if (entry.entry.row.isPinned()) {
396 setEntryPinned(entry, false /* isPinned */);
432 if (headsUpEntry != null && entry.row.isPinned()) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
ConcurrentSharedRingBuffer.java 127 private boolean isPinned() {
352 if (entry.isPinned()) {
391 if (!element.isPinned()) {
398 if (!element.isPinned()) {
533 if (element.getValue().isPinned()) {
594 if (element.isPinned()) {
613 if (entry.getValue().isPinned()) {
  /packages/apps/Dialer/java/com/android/dialer/app/list/
PhoneFavoriteTileView.java 66 private boolean isPinned;
97 isPinned = (entry.pinned != PinnedPositions.UNPINNED);
140 if (isPinned) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java 83 && mPickedChild.isHeadsUp() && mPickedChild.isPinned();
88 if (topEntry != null && topEntry.row.isPinned()) {
HeadsUpAppearanceController.java 281 if (row.isPinned() || row.isHeadsUpAnimatingAway() || row == mTrackedChild) {
  /frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
ShortcutManagerTestUtils.java 523 assertTrue("ID " + s.getId(), s.isPinned());
531 assertTrue("ID " + s.getId(), s.isDynamic() || s.isPinned());
578 assertFalse(si.isPinned());
584 assertTrue(si.isPinned());
589 assertTrue(si.isPinned());
786 filter(mList, ShortcutInfo::isPinned));
791 filter(mList, (si -> si.isPinned()
872 forAllShortcuts(s -> assertTrue("id=" + s.getId(), s.isPinned()));
877 forAllShortcuts(s -> assertFalse("id=" + s.getId(), s.isPinned()));
916 s.isPinned() && !s.isDeclaredInManifest() && !s.isDynamic()))
    [all...]
  /cts/tests/tests/shortcutmanager/packages/src/android/content/pm/cts/shortcutmanager/packages/
ShortcutConfirmPin.java 76 if (shortcut.isPinned() != expectPinned) {
77 ReplyUtil.sendReply(this, replyAction, "isPinned() expected to be " + expectPinned);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationRoundnessManager.java 66 if ((view.isPinned() || view.isHeadsUpAnimatingAway()) && !mExpanded) {
StackScrollAlgorithm.java 156 && ((ExpandableNotificationRow) child).isPinned();
463 if (row.isPinned()) {
  /development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
ShortcutListFragment.java 107 if (selected.isPinned()) {
240 return si.isPinned() ? "Unpin" : "Pin";
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
ShortcutManagerTest10.java 95 assertTrue(mRequest.getShortcutInfo().isPinned());
119 assertFalse(mRequest.getShortcutInfo().isPinned());
  /packages/apps/Launcher3/src/com/android/launcher3/model/
ShortcutsChangedTask.java 85 if (!fullDetails.isPinned()) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationShelf.java 278 || row.isPinned();
441 boolean isPinned = (row.isPinned() || row.isHeadsUpAnimatingAway())
444 && (mAmbientState.isShadeExpanded() || !isPinned)) {
446 if (isPinned) {
526 || (!row.isPinned() && !row.isHeadsUpAnimatingAway()))) {
    [all...]
  /developers/build/prebuilts/gradle/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Main.java 157 if (shortcut.isPinned()) {
  /developers/samples/android/system/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Main.java 157 if (shortcut.isPinned()) {
  /development/samples/ShortcutDemo/common/src/com/example/android/pm/shortcutdemo/
ShortcutAdapter.java 169 + (si.isPinned() ? " [pinned]" : "") + "\n"
178 // view.setBackgroundColor(si.isPinned() ? Color.rgb(255, 255, 192) : Color.WHITE);
  /development/samples/browseable/AppShortcuts/src/com.example.android.appshortcuts/
Main.java 157 if (shortcut.isPinned()) {
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutPackage.java 281 wasPinned = oldShortcut.isPinned();
402 if (oldShortcut.isPinned()) {
580 * by the calling launcher will not be included in the result, and also "isPinned" will be
616 // Fix up isPinned for the caller. Note we need to do it before the "test" callback,
617 // since it may check isPinned.
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverComparator.java 323 final boolean lPinned = lhsp.isPinned();
324 final boolean rPinned = rhsp.isPinned();
ResolverActivity.java     [all...]
  /development/samples/ShortcutSample/src/com/example/android/shortcutsample/
Main.java 223 if (shortcut.isPinned()) {
  /frameworks/av/services/audioflinger/
Effects.h 120 bool isPinned() const { return mPinned; }
  /frameworks/base/core/java/android/content/pm/
ShortcutInfo.java     [all...]

Completed in 1902 milliseconds

1 2