HomeSort by relevance Sort by last modified time
    Searched full:foldertype (Results 1 - 25 of 504) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Mac/Modules/folder/
_Foldermodule.c 28 OSType folderType;
34 PyMac_GetOSType, &folderType,
38 folderType,
54 OSType folderType;
57 PyMac_GetOSType, &folderType))
60 folderType);
72 OSType folderType;
77 PyMac_GetOSType, &folderType,
81 folderType,
94 FolderType foldType
    [all...]
foldersupport.py 27 FolderType = OSTypeType("FolderType")
  /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) ?
MultiFoldersSelectionDialog.java 34 import com.android.mail.providers.UIProvider.FolderType;
143 ImmutableSet.of(FolderType.INBOX_SECTION), originalChecked,
151 ImmutableSet.of(FolderType.INBOX_SECTION), originalChecked,
AddableFolderSelectorAdapter.java 92 if (Folder.isType(type, UIProvider.FolderType.INBOX)
93 || Folder.isType(type, UIProvider.FolderType.DEFAULT)) {
ConversationsInOutboxTipView.java 79 if ((folder.type & UIProvider.FolderType.SENT) > 0) {
99 if ((folder.type & UIProvider.FolderType.OUTBOX) > 0) {
ActionBarController.java 39 import com.android.mail.providers.UIProvider.FolderType;
240 && mFolder.isType(FolderType.SPAM) && mFolder.totalCount > 0
398 final boolean isOutbox = mFolder.isType(FolderType.OUTBOX);
FolderDisplayer.java 32 import com.android.mail.providers.UIProvider.FolderType;
86 * @param ignoreFolderType -1, or the {@link FolderType} to omit from the displayed set
RecentFolderList.java 30 import com.android.mail.providers.UIProvider.FolderType;
204 if (folder.isProviderFolder() || folder.isType(FolderType.SEARCH)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 37 import com.android.mail.providers.UIProvider.FolderType;
153 * @see FolderType
626 !TextUtils.isEmpty(folder.bgColor) && (folder.type & FolderType.INBOX_SECTION) == 0;
690 return !isType(UIProvider.FolderType.DEFAULT);
725 public boolean isType(final int folderType) {
726 return isType(type, folderType);
730 * Checks if <code>typeMask</code> is of the specified {@link FolderType}
733 * {@link FolderType}, <code>false</code> otherwise
735 public static boolean isType(final int typeMask, final int folderType) {
736 return (typeMask & folderType) != 0
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java 39 import com.android.mail.providers.UIProvider.FolderType;
132 final int folderType = intent.getIntExtra(EXTRA_FOLDER_TYPE, FolderType.DEFAULT);
140 updateWidgetInternal(context, widgetId, account, folderType, folderCapabilities,
260 folder == null ? FolderType.DEFAULT : folder.type,
296 final int folderType, final int folderCapabilities, final Uri folderUri,
308 updateWidgetIntent.putExtra(EXTRA_FOLDER_TYPE, folderType);
324 final int folderType, final int folderCapabilities, final Uri folderUri,
349 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType,
387 int appWidgetId, Account account, final int folderType, final int folderCapabilities
    [all...]
WidgetService.java 49 import com.android.mail.providers.UIProvider.FolderType;
74 int appWidgetId, Account account, final int folderType, final int folderCapabilities,
76 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType,
85 int appWidgetId, Account account, final int folderType, final int folderCapabilities,
111 folderType, folderCapabilities, folderUri, folderConversationListUri,
116 int appWidgetId, Account account, final int folderType, final int folderCapabilities,
126 intent.putExtra(BaseWidgetProvider.EXTRA_FOLDER_TYPE, folderType);
235 mFolderType = intent.getIntExtra(WidgetProvider.EXTRA_FOLDER_TYPE, FolderType.DEFAULT);
424 if ((mFolderType & FolderType.INBOX) != 0) {
425 ignoreFolderType = FolderType.INBOX
    [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...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 40 public boolean canCreate(FolderType type) {
45 public boolean create(FolderType type) {
  /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);
  /development/tools/checkcolor/src/main/java/com/google/checkcolor/lint/
HardcodedColorDetector.java 98 public boolean appliesTo(@NonNull ResourceFolderType folderType) {
99 return folderType == ResourceFolderType.LAYOUT || folderType == ResourceFolderType.VALUES
100 || folderType == ResourceFolderType.DRAWABLE;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 30 public enum FolderType {
97 public abstract boolean canCreate(FolderType type);
103 public abstract boolean create(FolderType type) throws MessagingException;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 195 for (ResourceFolderType folderType : folderTypes) {
196 if (folderType == ResourceFolderType.VALUES) {
219 for (ResourceFolderType folderType : folderTypes) {
220 if (folderType != ResourceFolderType.VALUES) {
286 for (ResourceFolderType folderType : FolderTypeRelationship.getRelatedFolders(type)) {
287 if (NewXmlFileWizard.canCreateXmlFile(folderType)) {
299 ResourceFolderType folderType = null;
302 folderType = f;
306 if (folderType == null) {
312 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) {
  /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);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListingElement.java 252 public void setFolderType(String folderType) {
253 this.mFolderType = folderType;
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 41 import com.android.mail.providers.UIProvider.FolderType;
172 if (mFolder.isType(UIProvider.FolderType.STARRED)) {
414 final boolean showRemoveFolder = mFolder != null && mFolder.isType(FolderType.DEFAULT)
465 boolean shouldShowDiscardOutbox = mFolder != null && mFolder.isType(FolderType.OUTBOX);
470 final boolean showDelete = mFolder != null && !mFolder.isType(FolderType.OUTBOX)
  /frameworks/base/services/core/java/com/android/server/
DiskStatsService.java 160 ProtoOutputStream proto, int folderType) {
173 proto.write(DiskStatsFreeSpaceProto.FOLDER, folderType);

Completed in 5826 milliseconds

1 2 3 4 5 6 7 8 91011>>