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

1 2

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
EmptyFolderDialogFragment.java 49 private static final String ARG_FOLDER_TYPE = "folderType";
62 * @param folderType The type of dialog to show. The current available options are
63 * {@link com.android.mail.providers.UIProvider.FolderType#TRASH} and
64 * {@link com.android.mail.providers.UIProvider.FolderType#SPAM}.
68 final int numConversations, final int folderType) {
74 args.putInt(ARG_FOLDER_TYPE, folderType);
89 final int dialogTitleId = Folder.isType(mFolderType, UIProvider.FolderType.SPAM) ?
FolderListFragment.java 50 import com.android.mail.providers.UIProvider.FolderType;
108 /** An {@link ArrayList} of {@link FolderType}s to exclude from displaying. */
199 * @param excludedFolderTypes A list of {@link FolderType}s to exclude from displaying
453 int folderType = DrawerItem.UNSET;
479 mSelectedFolderType = folderType = drawerItem.mFolderType;
503 final String label = (folderType == DrawerItem.FOLDER_RECENT) ? "recent" : "normal";
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 194 String root, String rootAttributes, String child, ResourceFolderType folderType) {
211 if (folderType == ResourceFolderType.LAYOUT && root.equals(GRID_LAYOUT)) {
258 XmlFormatStyle style = EclipseXmlPrettyPrinter.getForFolderType(folderType);
283 && (folderType == ResourceFolderType.LAYOUT
284 || folderType == ResourceFolderType.VALUES)) {
304 * @param folderType the folder type to create a file for
307 public static boolean canCreateXmlFile(ResourceFolderType folderType) {
308 TypeInfo typeInfo = NewXmlFileCreationPage.getTypeInfo(folderType);
318 * @param folderType the type of folder to look up a template for
322 ResourceFolderType folderType) {
    [all...]
NewXmlFileCreationPage.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/adapter/
DrawerItem.java 121 * @param folderType the type of the folder. For folders this is:
130 private DrawerItem(int type, ControllableActivity activity, Folder folder, int folderType,
134 mFolderType = folderType;
149 * @param folderType one of {@link #FOLDER_INBOX}, {@link #FOLDER_RECENT} or
154 int folderType, BidiFormatter bidiFormatter) {
155 return new DrawerItem(VIEW_FOLDER, activity, folder, folderType, null, -1, false,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 210 * @param folderType the type of folder containing the resource file
213 public static XmlFormatStyle getForFolderType(ResourceFolderType folderType) {
214 switch (folderType) {
243 ResourceFolderType folderType = ResourceFolderType.getFolderType(parentName);
244 return getForFolderType(folderType);
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java 39 import com.android.mail.providers.UIProvider.FolderType;
131 final int folderType = intent.getIntExtra(EXTRA_FOLDER_TYPE, FolderType.DEFAULT);
138 updateWidgetInternal(context, widgetId, account, folderType, folderUri,
256 folder == null ? FolderType.DEFAULT : folder.type, folderUri,
290 final int folderType, final Uri folderUri, final Uri folderConversationListUri,
302 updateWidgetIntent.putExtra(EXTRA_FOLDER_TYPE, folderType);
317 final int folderType, final Uri folderUri, final Uri folderConversationListUri,
345 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType,
383 int appWidgetId, Account account, final int folderType, final Uri folderUri
    [all...]
WidgetService.java 49 import com.android.mail.providers.UIProvider.FolderType;
73 int appWidgetId, Account account, final int folderType, final Uri folderUri,
75 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType,
83 int appWidgetId, Account account, final int folderType, final Uri folderUri,
114 folderType, folderUri, folderConversationListUri, folderDisplayName, widgetService);
118 int appWidgetId, Account account, final int folderType, final Uri folderUri,
128 intent.putExtra(BaseWidgetProvider.EXTRA_FOLDER_TYPE, folderType);
234 mFolderType = intent.getIntExtra(WidgetProvider.EXTRA_FOLDER_TYPE, FolderType.DEFAULT);
425 if ((mFolderType & FolderType.INBOX) != 0) {
426 ignoreFolderType = FolderType.INBOX
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipant.java 334 ResourceFolderType folderType = ResourceFolderType.getFolderType(folderName);
335 if (folderType != ResourceFolderType.LAYOUT &&
336 folderType != ResourceFolderType.VALUES) {
350 addXmlFileChanges(file, result, folderType);
361 ResourceFolderType folderType) {
376 if (folderType == null) {
379 } else if (folderType == ResourceFolderType.VALUES) {
382 assert folderType == ResourceFolderType.LAYOUT;
RenameResourceParticipant.java 443 ResourceFolderType folderType = ResourceFolderType.getFolderType(folderName);
452 addResourceXmlChanges(file, change, folderType);
460 && mFolderType == folderType) {
496 ResourceFolderType folderType) {
511 addReplacements(edits, root, document, folderType);
544 @Nullable ResourceFolderType folderType) {
546 if (folderType == ResourceFolderType.VALUES) {
628 addReplacements(edits, (Element) child, document, folderType);
AndroidTypeMoveParticipant.java 199 ResourceFolderType folderType = ResourceFolderType.getFolderType(folderName);
200 if (folderType != ResourceFolderType.LAYOUT) {
AndroidPackageRenameParticipant.java 359 ResourceFolderType folderType = ResourceFolderType.getFolderType(folderName);
360 if (folderType != ResourceFolderType.LAYOUT) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 197 for (ResourceFolderType folderType : folderTypes) {
198 if (folderType == ResourceFolderType.VALUES) {
221 for (ResourceFolderType folderType : folderTypes) {
222 if (folderType != ResourceFolderType.VALUES) {
285 for (ResourceFolderType folderType : FolderTypeRelationship.getRelatedFolders(type)) {
286 if (NewXmlFileWizard.canCreateXmlFile(folderType)) {
298 ResourceFolderType folderType = null;
301 folderType = f;
305 if (folderType == null) {
311 IPath projectPath = new Path(FD_RESOURCES + WS_SEP + folderType.getName() + WS_SE
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 64 ResourceFolderType folderType = ResourceFolderType.getFolderType(folderName);
65 if (folderType == ResourceFolderType.ANIM) {
  /prebuilts/devtools/tools/lib/
lint-checks.jar 
lint-api.jar 
layoutlib-api.jar 
sdk-common.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/
lint-checks-22.2.0.jar 
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 33 import com.android.mail.providers.UIProvider.FolderType;
149 * @see FolderType
621 !TextUtils.isEmpty(folder.bgColor) && (folder.type & FolderType.INBOX_SECTION) == 0;
654 return !isType(UIProvider.FolderType.DEFAULT);
689 public boolean isType(final int folderType) {
690 return isType(type, folderType);
694 * Checks if <code>typeMask</code> is of the specified {@link FolderType}
697 * {@link FolderType}, <code>false</code> otherwise
699 public static boolean isType(final int typeMask, final int folderType) {
700 return (typeMask & folderType) != 0
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 693 ResourceFolderType folderType = ResourceFolderType.getFolderType(parentFolderName);
694 if (folderType != null) {
700 modified = mergeResourceFile(currentDocument, fragment, folderType, paramMap);
737 ResourceFolderType folderType, Map<String, Object> paramMap) {
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java     [all...]
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.2.0/
layoutlib-api-22.2.0.jar 
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 

Completed in 778 milliseconds

1 2