HomeSort by relevance Sort by last modified time
    Searched full:folder (Results 126 - 150 of 2228) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 32 import com.android.mail.providers.Folder;
49 int layout, Folder excludedFolder) {
58 final Folder folder = row.getFolder(); local
61 final CharSequence displayText = TextUtils.isEmpty(row.mPathName) ? folder.name
64 checkBox.setText(TextUtils.isEmpty(row.mPathName) ? folder.name
74 * 1) If there is just a folder name, return that.
75 * 2) If there is a single parent and a folder name, return parent/folder.
76 * 3) If there is > 1 but < 3 ancestors, return ancestor/ancestor2/folder
    [all...]
FolderItemView.java 31 import com.android.mail.providers.Folder;
37 * The view for each folder in the folder list.
46 private Folder mFolder;
64 boolean supportsDrag(DragEvent event, Folder folder);
69 void handleDrop(DragEvent event, Folder folder);
120 public static boolean areSameViews(final Folder a, final Folder b)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java 42 import com.android.mail.providers.Folder;
88 public boolean shouldDisplayPrimary(final Folder folder,
90 return folder == null || folder.isInbox();
118 boolean shouldDisplayPrimary(Folder folder, Conversation conversation, Message message);
168 public int getActionIconResId(final Folder folder, final Conversation conversation,
170 if (mActionToggler == null || mActionToggler.shouldDisplayPrimary(folder, conversation
745 final Folder folder = notificationAction.getFolder(); local
814 final Folder folder = notificationAction.getFolder(); local
837 final Folder folder = notificationAction.getFolder(); local
    [all...]
NotificationUtils.java 68 import com.android.mail.providers.Folder;
263 throw new IllegalStateException("Unable to locate folder for uri: " +
267 final Folder folder; local
270 folder = new Folder(folderCursor);
278 final NotificationKey key = new NotificationKey(account, folder);
298 key.account.uri.toString(), key.folder.folderUri.fullUri.toString(),
359 * account-folder pair, pass in the account and folder that should be resent
385 final Folder folder = notification.folder; local
443 final Folder folder = notification.folder; local
460 final Folder folder = notification.folder; local
1626 notificationManager.cancel(getNotificationId(account.getAccountManagerAccount(), folder)); local
1670 final Folder folder = notificationKey.folder; local
1916 public final Folder folder; field in class:NotificationUtils.NotificationKey
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateManager.java 47 private static final Set<String> EXCLUDED_CATEGORIES = Sets.newHashSet("Folder", "Google");
53 /** @return the root folder containing templates */
58 File folder = new File(location, FD_TOOLS + File.separator + FD_TEMPLATES); local
59 if (folder.isDirectory()) {
60 return folder;
67 /** @return the root folder containing extra templates */
81 File folder = new File(pkg, FD_TEMPLATES); local
82 if (folder.isDirectory()) {
83 folders.add(folder);
90 File folder = new File(extras, FD_TEMPLATES) local
    [all...]
  /development/host/windows/usb/
readme.txt 1 android_winusb.inf file contained in this folder must be used to install
6 Root of the installation folder must contain:
21 folder, respectively to the OS: copy x86 files to i386 subfolder, and amd64
38 available in WDK at bin\SelfSign folder. To use this utility you will need to
39 create an installation folder a sdesribed at the beginning of this document,
40 and run inf2cat.exe on .inf file at the root of installation folder.
  /external/chromium_org/chrome/browser/chromeos/file_manager/
path_util.h 19 // Gets the absolute path for the 'Downloads' folder for the |profile|.
25 // "Downloads" folder.
30 // The "Google Drive" folder is moved from /special/drive to
35 // The "Downloads" folder is changed from /home/chronos/user/Downloads to
42 // Download folder anymore. Thus we are switching to always use "u-<hash>"
54 // The canonical mount point name for "Downloads" folder.
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
bookmarks.html 25 is either a bookmark or a folder
45 in the root folder. You also cannot rename, move, or remove the special
51 The following code creates a folder with the title "Extension bookmarks".
53 for the new folder.
55 to be executed after the folder is created.
62 console.log("added folder: " + newFolder.title);
  /external/chromium_org/sync/syncable/
parent_child_index_unittest.cc 61 // Mimics a server-created bookmark folder.
62 EntryKernel* folder = new EntryKernel; local
63 folder->put(META_HANDLE, 1);
64 folder->put(BASE_VERSION, 9);
65 folder->put(SERVER_VERSION, 9);
66 folder->put(IS_DIR, true);
67 folder->put(ID, GetBookmarkRootId());
68 folder->put(SERVER_PARENT_ID, syncable::Id());
69 folder->put(PARENT_ID, syncable::Id());
70 folder->put(UNIQUE_SERVER_TAG, "google_chrome_bookmarks")
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/adapter/
DrawerItem.java 28 import com.android.mail.providers.Folder;
40 * This class is an enumeration of a few element types: Account, a folder, a recent folder,
52 public final Folder mFolder;
59 /** A normal folder, also a child, if a parent is specified. */
85 /** Non existent item or folder type not yet set */
89 /** An inbox folder: Inbox, ...*/
91 /** A folder from whom a conversation was recently viewed */
93 /** A non-inbox folder that is shown in the "everything else" group. */
127 * @param folder a non-null folder, if this is a folder typ
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java 26 import com.android.mail.providers.Folder;
37 * Preferences relevant to one specific folder. In Email, this would only be used for an account's
42 private static final String PREFS_NAME_PREFIX = "Folder";
53 * once for the folder (<code>false</code>)
67 private final Folder mFolder;
74 * @param folder The folder
76 public FolderPreferences(final Context context, final String accountEmail, final Folder folder,
78 this(context, accountEmail, folder, folder.persistentId
    [all...]
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 28 * This Activity creates a live folder Intent and
29 * sends it back to HOME. From the data in the Intent, HOME creates a live folder and displays
35 * HOME sends in response to a long press and selection of Live Folder.
63 * data values. From this data, HOME sets up a live folder.
65 // Sets the URI pattern for the content provider backing the folder.
68 // Adds the display name of the live folder as an Extra string.
72 // Adds the display icon of the live folder as an Extra resource.
77 // Add the display mode of the live folder as an integer. The specified
78 // mode causes the live folder to display as a list.
84 * Adds a base action for items in the live folder list, as an Intent. When th
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationListFooterView.java 31 import com.android.mail.providers.Folder;
40 void onFooterViewErrorActionClick(Folder folder, int errorStatus);
41 void onFooterViewLoadMoreClick(Folder folder);
49 private Folder mFolder;
83 final Folder f = (Folder) v.getTag();
91 public void setFolder(Folder folder) {
    [all...]
  /development/ndk/samples/hello-neon/
build.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.
  /development/samples/JetBoy/
JETBOY_content_README.txt 3 The "JETBOY_content" folder contains the JET Creator file and assets used in "JETBOY", the Android demonstration game using SONiVOX' JET interactive music technology.
11 4. After importing the first time, you can use the OPEN command to open the .jtc file in the folder you selected as the target for import.
  /development/samples/training/basic/ActivityLifecycle/
ant.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.
build.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.
  /external/chromium_org/chrome/common/importer/
firefox_importer_utils_linux.cc 14 // The default location of the profile folder containing user data is
15 // under user HOME directory in .mozilla/firefox folder on Linux.
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/
ant.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.
  /external/chromium_org/ui/app_list/views/
folder_header_view_delegate.h 20 // Invoked when the back button on the folder header view is clicked.
21 // |item| is the folder item which FolderHeaderview represents.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
parsecvs.sh 7 # pass in specific target folder(s) or do all in cvssrc/ folder
  /external/fonttools/Windows/
README.TXT 20 5. Unzip the source code of TTX/FontTools into a folder.
21 6. In the folder where you unzipped TTX/FontTools, type:
31 and put the Installer folder into your Python folder,
41 7. Unzip the source code of TTX/FontTools into a folder.
42 8. In the folder where you unzipped TTX/FontTools, type:
50 in the Output subfolder of the FontTools\Windows folder.
52 For information on running TTX on Windows, see fonttools-win-setup.txt in this folder.
  /external/glide/library/
ant.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.
  /external/llvm/test/CodeGen/Generic/
print-machineinstrs.ll 1 ; RUN: llc < %s -O3 -debug-pass=Structure -print-machineinstrs=branch-folder -o /dev/null 2>&1 | FileCheck %s
6 ; CHECK: -branch-folder -print-machineinstrs
  /external/pdfium/core/src/fpdfapi/
fpdf_basic_module.cpp 64 static CFX_ByteString _GetPath(const CFX_ByteString& folder, FX_LPCSTR name)
66 FX_STRSIZE folder_len = folder.GetLength();
68 if (folder[folder_len - 1] == '\\') {
69 return folder + name;
71 return (folder + "\\") + name;
74 if (folder[folder_len - 1] == '/') {
75 return folder + name;
77 return (folder + "/") + name;

Completed in 594 milliseconds

1 2 3 4 56 7 8 91011>>