HomeSort by relevance Sort by last modified time
    Searched refs:folderType (Results 1 - 25 of 617) 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...]
  /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) ?
  /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...]
  /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;
  /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;
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/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);
  /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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListingElement.java 251 public void setFolderType(String folderType) {
252 this.mFolderType = folderType;
  /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) {
  /frameworks/base/services/core/java/com/android/server/
DiskStatsService.java 150 ProtoOutputStream proto, int folderType) {
163 proto.write(DiskStatsFreeSpaceProto.FOLDER, folderType);
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.2.0-alpha1/
lint-checks-25.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0/
lint-checks-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-alpha5/
lint-checks-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-alpha7/
lint-checks-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-alpha9/
lint-checks-25.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-beta2/
lint-checks-25.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-beta5/
lint-checks-25.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-beta6/
lint-checks-25.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-beta7/
lint-checks-25.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.0.0-rc3/
lint-checks-25.0.0-rc3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.1.0/
lint-checks-25.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/25.1.0-alpha3/
lint-checks-25.1.0-alpha3.jar 

Completed in 2649 milliseconds

1 2 3 4 5 6 7 8 91011>>