/frameworks/base/services/java/com/android/server/ |
D | UiModeManagerService.java | 93 static Intent buildHomeIntent(String category) { in buildHomeIntent() argument 95 intent.addCategory(category); in buildHomeIntent() 405 String category = null; in updateLocked() local 409 category = Intent.CATEGORY_CAR_DOCK; in updateLocked() 414 category = Intent.CATEGORY_DESK_DOCK; in updateLocked() 418 category = Intent.CATEGORY_HOME; in updateLocked() 424 + mDockState +", category=" + category); in updateLocked() 427 sendConfigurationAndStartDreamOrDockAppLocked(category); in updateLocked() 445 String category = null; in updateAfterBroadcastLocked() local 451 category = Intent.CATEGORY_CAR_DOCK; in updateAfterBroadcastLocked() [all …]
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | category-element.jd | 1 page.title=<category> 8 <dd><pre class="stx"><category android:<a href="#nm">name</a>="<i>string</i>" /></pre></dd> 14 <dd>Adds a category name to an intent filter. See 16 Intent Filters</a> for details on intent filters and the role of category 22 <dd>The name of the category. Standard categories are defined in the 25 by prefixing "{@code android.intent.category.}" to the 28 "{@code android.intent.category.LAUNCHER}".
|
D | intent-filter-element.jd | 24 <dd><code><a href="{@docRoot}guide/topics/manifest/category-element.html"><category></a></cod… 38 <code><a href="{@docRoot}guide/topics/manifest/category-element.html"><category></a></code>, … 133 <br/><code><a href="{@docRoot}guide/topics/manifest/category-element.html"><category></a></co…
|
/frameworks/base/docs/html/guide/components/ |
D | intents-filters.jd | 88 of interest to the Android system (such as the category of component that 232 that should handle the intent. Any number of category descriptions can be 234 several category constants, including these: 268 places a category in an Intent object, <code>{@link android.content.Intent#removeCategory 269 removeCategory()}</code> deletes a category previously added, and <code>{@link android.content.Inte… 361 <br/>category</p> 421 A filter has fields that parallel the action, data, and category fields of an 480 <category android:name="android.intent.category.DEFAULT" /> 481 <category android:name="android.intent.category.BROWSABLE" /> 488 instance, the "{@code android.intent.category.BROWSABLE}" string in the example [all …]
|
/frameworks/base/core/java/android/widget/ |
D | FrameLayout.java | 60 @ViewDebug.ExportedProperty(category = "measurement") 63 @ViewDebug.ExportedProperty(category = "drawing") 66 @ViewDebug.ExportedProperty(category = "padding") 69 @ViewDebug.ExportedProperty(category = "padding") 72 @ViewDebug.ExportedProperty(category = "padding") 75 @ViewDebug.ExportedProperty(category = "padding") 81 @ViewDebug.ExportedProperty(category = "drawing") 85 @ViewDebug.ExportedProperty(category = "drawing")
|
D | LinearLayout.java | 84 @ViewDebug.ExportedProperty(category = "layout") 94 @ViewDebug.ExportedProperty(category = "layout") 102 @ViewDebug.ExportedProperty(category = "measurement") 105 @ViewDebug.ExportedProperty(category = "measurement") 108 @ViewDebug.ExportedProperty(category = "measurement", flagMapping = { 142 @ViewDebug.ExportedProperty(category = "measurement") 145 @ViewDebug.ExportedProperty(category = "layout") 148 @ViewDebug.ExportedProperty(category = "layout") 1793 @ViewDebug.ExportedProperty(category = "layout") 1801 @ViewDebug.ExportedProperty(category = "layout", mapping = {
|
D | AdapterView.java | 66 @ViewDebug.ExportedProperty(category = "scrolling") 151 @ViewDebug.ExportedProperty(category = "list") 162 @ViewDebug.ExportedProperty(category = "list") 178 @ViewDebug.ExportedProperty(category = "list")
|
/frameworks/base/core/java/android/hardware/display/ |
D | DisplayManager.java | 127 public Display[] getDisplays(String category) { in getDisplays() argument 131 if (category == null) { in getDisplays() 133 } else if (category.equals(DISPLAY_CATEGORY_PRESENTATION)) { in getDisplays()
|
/frameworks/base/telephony/java/android/telephony/cdma/ |
D | CdmaSmsCbProgramResults.java | 66 public CdmaSmsCbProgramResults(int category, int language, int categoryResult) { in CdmaSmsCbProgramResults() argument 67 mCategory = category; in CdmaSmsCbProgramResults()
|
D | CdmaSmsCbProgramData.java | 97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages, in CdmaSmsCbProgramData() argument 100 mCategory = category; in CdmaSmsCbProgramData()
|
/frameworks/base/docs/html/training/basics/intents/ |
D | filters.jd | 85 href="{@docRoot}guide/topics/manifest/category-element.html">{@code <category>}</a> 101 <category android:name="android.intent.category.DEFAULT"/> 110 <action>}</a>, <a href="{@docRoot}guide/topics/manifest/category-element.html">{@code 111 <category>}</a>, and <a href="{@docRoot}guide/topics/manifest/data-element.html">{@code 132 <category android:name="android.intent.category.DEFAULT"/> 139 <category android:name="android.intent.category.DEFAULT"/> 147 {@link android.content.Intent#CATEGORY_DEFAULT} category in the intent filter. The methods {@link 150 contained the {@link android.content.Intent#CATEGORY_DEFAULT} category. If you do not declare it, no
|
/frameworks/base/core/java/android/os/ |
D | BatteryStats.java | 1180 private static final void dumpLine(PrintWriter pw, int uid, String category, String type, in dumpLine() argument 1184 pw.print(category); pw.print(','); in dumpLine() 1219 String category = STAT_NAMES[which]; in dumpCheckinLocked() local 1222 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA, in dumpCheckinLocked() 1259 dumpLine(pw, 0 /* uid */, category, MISC_DATA, in dumpCheckinLocked() 1270 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args); in dumpCheckinLocked() 1277 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args); in dumpCheckinLocked() 1278 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA, in dumpCheckinLocked() 1283 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args); in dumpCheckinLocked() 1290 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args); in dumpCheckinLocked() [all …]
|
/frameworks/opt/telephony/src/java/android/telephony/ |
D | SmsCbCmasInfo.java | 197 public SmsCbCmasInfo(int messageClass, int category, int responseType, int severity, in SmsCbCmasInfo() argument 200 mCategory = category; in SmsCbCmasInfo()
|
/frameworks/base/docs/html/training/sharing/ |
D | receive.jd | 59 <category android:name="android.intent.category.DEFAULT" /> 64 <category android:name="android.intent.category.DEFAULT" /> 69 <category android:name="android.intent.category.DEFAULT" />
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SmsUsageMonitorShortCodeTest.java | 36 final int category; field in SmsUsageMonitorShortCodeTest.ShortCodeTest 38 ShortCodeTest(String countryIso, String destAddress, int category) { in ShortCodeTest() argument 41 this.category = category; in ShortCodeTest() 463 test.category, monitor.checkDestination(test.address, test.countryIso)); in testSmsUsageMonitor()
|
/frameworks/base/core/java/android/content/ |
D | IntentFilter.java | 973 public final void addCategory(String category) { in addCategory() argument 975 if (!mCategories.contains(category)) { in addCategory() 976 mCategories.add(category.intern()); in addCategory() 1001 public final boolean hasCategory(String category) { in hasCategory() argument 1002 return mCategories != null && mCategories.contains(category); in hasCategory() 1037 final String category = it.next(); in matchCategories() local 1038 if (!mCategories.contains(category)) { in matchCategories() 1039 return category; in matchCategories()
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | ActionMenuView.java | 585 @ViewDebug.ExportedProperty(category = "layout") 587 @ViewDebug.ExportedProperty(category = "layout") 589 @ViewDebug.ExportedProperty(category = "layout") 591 @ViewDebug.ExportedProperty(category = "layout") 593 @ViewDebug.ExportedProperty(category = "layout")
|
/frameworks/base/core/java/android/webkit/ |
D | WebView.java | 1035 @ViewDebug.ExportedProperty(category = "webview") 1126 @ViewDebug.ExportedProperty(category = "webview") 1141 @ViewDebug.ExportedProperty(category = "webview") 1153 @ViewDebug.ExportedProperty(category = "webview") 1196 @ViewDebug.ExportedProperty(category = "webview") 1208 @ViewDebug.ExportedProperty(category = "webview")
|
/frameworks/base/core/java/android/view/ |
D | View.java | 1528 @ViewDebug.ExportedProperty(category = "measurement") 1535 @ViewDebug.ExportedProperty(category = "measurement") 2757 @ViewDebug.ExportedProperty(category = "layout") 2764 @ViewDebug.ExportedProperty(category = "layout") 2771 @ViewDebug.ExportedProperty(category = "layout") 2778 @ViewDebug.ExportedProperty(category = "layout") 2786 @ViewDebug.ExportedProperty(category = "scrolling") 2793 @ViewDebug.ExportedProperty(category = "scrolling") 2801 @ViewDebug.ExportedProperty(category = "padding") 2808 @ViewDebug.ExportedProperty(category = "padding") [all …]
|
D | ViewGroup.java | 145 @ViewDebug.ExportedProperty(category = "events") 147 @ViewDebug.ExportedProperty(category = "events") 150 @ViewDebug.ExportedProperty(category = "events") 153 @ViewDebug.ExportedProperty(category = "events") 416 @ViewDebug.ExportedProperty(category = "layout") 522 @ViewDebug.ExportedProperty(category = "focus", mapping = { 4482 @ViewDebug.ExportedProperty(category = "drawing") 4517 @ViewDebug.ExportedProperty(category = "drawing") 4549 @ViewDebug.ExportedProperty(category = "drawing") 4586 @ViewDebug.ExportedProperty(category = "drawing", mapping = { [all …]
|
/frameworks/base/docs/html/design/patterns/ |
D | app-structure.jd | 16 deep and complex, category views connect top level and detail views.</p> 134 <h4>Use tabs to combine category selection and data display</h4> 151 The Play Store app uses tabs to simultaneously show category choice and content. To navigate 182 Music allows the user to act upon a data item (song) from within the category view (album), 187 <p>Even though category views mostly serve to guide people to content detail, keep in mind that the… 190 delete multiple items in the category view. Analyze which detail view actions are applicable to 192 in a category view.</p>
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/ |
D | BearerData.java | 866 int category = result.getCategory(); in encodeScpResults() local 867 outStream.write(8, category >> 8); in encodeScpResults() 868 outStream.write(8, category); in encodeScpResults() 1662 int category = (inStream.read(8) << 8) | inStream.read(8); in decodeServiceCategoryProgramData() local 1684 CdmaSmsCbProgramData programData = new CdmaSmsCbProgramData(operation, category, in decodeServiceCategoryProgramData() 1773 int category = SmsCbCmasInfo.CMAS_CATEGORY_UNKNOWN; in decodeCmasUserData() local 1817 category = inStream.read(8); in decodeCmasUserData() 1832 bData.cmasWarningInfo = new SmsCbCmasInfo(messageClass, category, responseType, severity, in decodeCmasUserData() 1847 private static boolean isCmasAlertCategory(int category) { in isCmasAlertCategory() argument 1848 return category >= SmsEnvelope.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT in isCmasAlertCategory() [all …]
|
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
D | SafeSaxTest.java | 283 video.category = body; in newContentHandler() 512 video.category = takeText(); in endElement() 536 public String category; field in SafeSaxTest.YouTubeVideo
|
/frameworks/base/media/java/android/media/ |
D | MediaRouter.java | 634 public UserRouteInfo createUserRoute(RouteCategory category) { in createUserRoute() argument 635 return new UserRouteInfo(category); in createUserRoute() 976 RouteInfo(RouteCategory category) { in RouteInfo() argument 977 mCategory = category; in RouteInfo() 1296 UserRouteInfo(RouteCategory category) { in UserRouteInfo() argument 1297 super(category); in UserRouteInfo() 1513 RouteGroup(RouteCategory category) { in RouteGroup() argument 1514 super(category); in RouteGroup()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
D | KeyguardSecurityViewFlipper.java | 250 @ViewDebug.ExportedProperty(category = "layout") 253 @ViewDebug.ExportedProperty(category = "layout")
|