Searched defs:important (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
H A D | SecurityMessageDisplay.java | 23 void setMessage(CharSequence msg, boolean important); argument 25 void setMessage(int resId, boolean important); argument 27 void setMessage(int resId, boolean important, Object... formatArgs); argument
|
H A D | KeyguardMessageArea.java | 94 public void setMessage(CharSequence msg, boolean important) { argument 95 if (!TextUtils.isEmpty(msg) && important) { 103 public void setMessage(int resId, boolean important) { argument 104 if (resId != 0 && important) { 113 public void setMessage(int resId, boolean important, Object... formatArgs) { argument 114 if (resId != 0 && important) {
|
/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | OtaDexoptService.java | 120 final List<PackageParser.Package> important; 124 important = PackageManagerServiceUtils.getPackagesForDexopt( 128 others.removeAll(important); 134 for (PackageParser.Package p : important) { 149 throw new IllegalStateException("Found a core app that's not important"); 166 prepareMetricsLogging(important.size(), others.size(), spaceAvailable, spaceAvailableNow); 355 private void prepareMetricsLogging(int important, int others, long spaceBegin, long spaceBulk) { argument 360 importantPackageCount = important;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
H A D | VolumeDialog.java | 287 public void setStreamImportant(int stream, boolean important) { argument 288 mHandler.obtainMessage(H.SET_STREAM_IMPORTANT, stream, important ? 1 : 0).sendToTarget(); 309 private void addRow(int stream, int iconRes, int iconMuteRes, boolean important) { argument 311 initRow(row, stream, iconRes, iconMuteRes, important); 320 initRow(row, row.stream, row.iconRes, row.iconMuteRes, row.important); 372 boolean important) { 376 row.important = important; 627 || (mExpanded && (row.important || isActive)) 912 private void setStreamImportantH(int stream, boolean important) { argument 371 initRow(final VolumeRow row, final int stream, int iconRes, int iconMuteRes, boolean important) argument 1241 private boolean important; field in class:VolumeDialog.VolumeRow [all...] |
/frameworks/support/compat/java/android/support/v4/view/accessibility/ |
H A D | AccessibilityNodeInfoCompat.java | 3516 * Returns whether the node originates from a view considered important for accessibility. 3518 * @return {@code true} if the node originates from a view considered important for 3528 * Sets whether the node is considered important for accessibility. 3535 * @param important {@code true} if the node is considered important for accessibility, 3538 public void setImportantForAccessibility(boolean important) { argument 3539 IMPL.setImportantForAccessibility(mInfo, important); 3683 * A live region is a node that contains information that is important for
|
/frameworks/base/core/java/android/view/accessibility/ |
H A D | AccessibilityNodeInfo.java | 2025 * A live region is a node that contains information that is important for 2132 * Returns whether the node originates from a view considered important for accessibility. 2134 * @return {@code true} if the node originates from a view considered important for 2144 * Sets whether the node is considered important for accessibility. 2151 * @param important {@code true} if the node is considered important for accessibility, 2154 public void setImportantForAccessibility(boolean important) { argument 2155 setBooleanProperty(BOOLEAN_PROPERTY_IMPORTANCE, important);
|
Completed in 165 milliseconds