/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…
|
D | data-element.jd | 166 <br/><code><a href="{@docRoot}guide/topics/manifest/category-element.html"><category></a></co…
|
D | permission-group-element.jd | 23 Note that this element does not declare a permission itself, only a category in
|
/frameworks/base/docs/html/guide/topics/intents/ |
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 | 58 @ViewDebug.ExportedProperty(category = "measurement") 61 @ViewDebug.ExportedProperty(category = "drawing") 64 @ViewDebug.ExportedProperty(category = "padding") 67 @ViewDebug.ExportedProperty(category = "padding") 70 @ViewDebug.ExportedProperty(category = "padding") 73 @ViewDebug.ExportedProperty(category = "padding") 79 @ViewDebug.ExportedProperty(category = "drawing") 83 @ViewDebug.ExportedProperty(category = "drawing")
|
D | AdapterView.java | 65 @ViewDebug.ExportedProperty(category = "scrolling") 150 @ViewDebug.ExportedProperty(category = "list") 161 @ViewDebug.ExportedProperty(category = "list") 177 @ViewDebug.ExportedProperty(category = "list")
|
D | LinearLayout.java | 82 @ViewDebug.ExportedProperty(category = "layout") 92 @ViewDebug.ExportedProperty(category = "layout") 100 @ViewDebug.ExportedProperty(category = "measurement") 103 @ViewDebug.ExportedProperty(category = "measurement") 106 @ViewDebug.ExportedProperty(category = "measurement", flagMapping = { 140 @ViewDebug.ExportedProperty(category = "measurement") 143 @ViewDebug.ExportedProperty(category = "layout") 146 @ViewDebug.ExportedProperty(category = "layout") 1746 @ViewDebug.ExportedProperty(category = "layout") 1754 @ViewDebug.ExportedProperty(category = "layout", mapping = {
|
D | TableRow.java | 392 @ViewDebug.ExportedProperty(category = "layout") 398 @ViewDebug.ExportedProperty(category = "layout")
|
D | ProgressBar.java | 419 @ViewDebug.ExportedProperty(category = "progress") 718 @ViewDebug.ExportedProperty(category = "progress") 735 @ViewDebug.ExportedProperty(category = "progress") 749 @ViewDebug.ExportedProperty(category = "progress")
|
/frameworks/base/services/java/com/android/server/ |
D | UiModeManagerService.java | 110 static Intent buildHomeIntent(String category) { in buildHomeIntent() argument 112 intent.addCategory(category); in buildHomeIntent() 134 String category = null; 139 category = Intent.CATEGORY_CAR_DOCK; 146 category = Intent.CATEGORY_DESK_DOCK; 151 category = Intent.CATEGORY_HOME; 155 if (category != null) { 158 Intent homeIntent = buildHomeIntent(category);
|
/frameworks/base/core/java/android/os/ |
D | BatteryStats.java | 1174 private static final void dumpLine(PrintWriter pw, int uid, String category, String type, in dumpLine() argument 1178 pw.print(category); pw.print(','); in dumpLine() 1213 String category = STAT_NAMES[which]; in dumpCheckinLocked() local 1216 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA, in dumpCheckinLocked() 1253 dumpLine(pw, 0 /* uid */, category, MISC_DATA, in dumpCheckinLocked() 1264 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args); in dumpCheckinLocked() 1271 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args); in dumpCheckinLocked() 1272 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA, in dumpCheckinLocked() 1277 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args); in dumpCheckinLocked() 1284 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args); in dumpCheckinLocked() [all …]
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | ActionMenuView.java | 525 @ViewDebug.ExportedProperty(category = "layout") 527 @ViewDebug.ExportedProperty(category = "layout") 529 @ViewDebug.ExportedProperty(category = "layout") 531 @ViewDebug.ExportedProperty(category = "layout") 533 @ViewDebug.ExportedProperty(category = "layout")
|
/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()
|
D | Intent.java | 3532 public boolean hasCategory(String category) { in hasCategory() argument 3533 return mCategories != null && mCategories.contains(category); in hasCategory() 4343 public Intent addCategory(String category) { in addCategory() argument 4347 mCategories.add(category.intern()); in addCategory() 4358 public void removeCategory(String category) { in removeCategory() argument 4360 mCategories.remove(category); in removeCategory() 5765 for (String category : mCategories) { in toUri() 5766 uri.append("category=").append(Uri.encode(category)).append(';'); in toUri() 5839 for (String category : mCategories) { in writeToParcel() 5840 out.writeString(category); in writeToParcel()
|
/frameworks/base/core/java/android/view/ |
D | View.java | 1519 @ViewDebug.ExportedProperty(category = "measurement") 1526 @ViewDebug.ExportedProperty(category = "measurement") 2188 @ViewDebug.ExportedProperty(category = "layout") 2195 @ViewDebug.ExportedProperty(category = "layout") 2202 @ViewDebug.ExportedProperty(category = "layout") 2209 @ViewDebug.ExportedProperty(category = "layout") 2217 @ViewDebug.ExportedProperty(category = "scrolling") 2224 @ViewDebug.ExportedProperty(category = "scrolling") 2232 @ViewDebug.ExportedProperty(category = "padding") 2239 @ViewDebug.ExportedProperty(category = "padding") [all …]
|
D | ViewGroup.java | 141 @ViewDebug.ExportedProperty(category = "events") 143 @ViewDebug.ExportedProperty(category = "events") 146 @ViewDebug.ExportedProperty(category = "events") 149 @ViewDebug.ExportedProperty(category = "events") 370 @ViewDebug.ExportedProperty(category = "drawing") 472 @ViewDebug.ExportedProperty(category = "focus", mapping = { 4312 @ViewDebug.ExportedProperty(category = "drawing") 4347 @ViewDebug.ExportedProperty(category = "drawing") 4379 @ViewDebug.ExportedProperty(category = "drawing") 4416 @ViewDebug.ExportedProperty(category = "drawing", mapping = { [all …]
|
D | MenuInflater.java | 330 …final int category = a.getInt(com.android.internal.R.styleable.MenuItem_menuCategory, groupCategor… in readItem() local 332 itemCategoryOrder = (category & Menu.CATEGORY_MASK) | (order & Menu.USER_MASK); in readItem()
|
D | ViewDebug.java | 259 String category() default ""; in category() method 1473 property.category().length() != 0 ? property.category() + ":" : ""; in exportMethods() 1546 property.category().length() != 0 ? property.category() + ":" : ""; in exportFields()
|
/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/docs/html/guide/topics/nfc/ |
D | nfc.jd | 343 category to filter on. Many applications will filter for {@link 368 <category android:name="android.intent.category.DEFAULT"/> 377 <category android:name="android.intent.category.DEFAULT"/> 533 <category android:name="android.intent.category.DEFAULT" /> 556 <category android:name="android.intent.category.DEFAULT" /> 587 <category android:name="android.intent.category.DEFAULT" /> 612 <category android:name="android.intent.category.DEFAULT" /> 634 <category android:name="android.intent.category.DEFAULT" /> 907 <category android:name="android.intent.category.DEFAULT"/>
|
/frameworks/base/docs/html/resources/articles/ |
D | wikinotes-intents.jd | 179 <category name="android.intent.category.DEFAULT"/> 180 <category name="android.intent.category.BROWSABLE"/> 186 category indicates that the WikiNotes activity should be treated as a 188 BROWSABLE category means it can be invoked from a "browser", in this
|
/frameworks/base/docs/html/intl/ja/guide/topics/ |
D | fundamentals.jd | 267 <category android:name="android.intent.category.LAUNCHER" /> 272 <category android:name="android.intent.category.DEFAULT" /> 280 この例の 1 つ目のフィルタは、アクション「{@code android.intent.action.MAIN}」とカテゴリ「{@code android.intent.category.LAUNC… 461 …として "{@code android.intent.action.MAIN}"、カテゴリとして "{@code android.intent.category.LAUNCHER}" を指定したイ…
|
/frameworks/base/core/java/android/app/ |
D | ActionBar.java | 904 @ViewDebug.ExportedProperty(category = "layout", mapping = {
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | monkey.jd | 167 <td><code>-c <main-category></code></td> 170 If you don't specify any categories, the Monkey will select activities listed with the category 172 option multiple times — one -c option per category.</td>
|