HomeSort by relevance Sort by last modified time
    Searched defs:Folder (Results 1 - 18 of 18) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderSelectorAdapter.java 21 import com.android.mail.providers.Folder;
48 * An adapter for translating a cursor of {@link Folder} to a set of selectable views to be used for
54 private final Folder mFolder;
59 public FolderRow(Folder folder, boolean isPresent) {
60 mFolder = folder;
64 public Folder getFolder() {
94 private Folder mExcludedFolder;
106 Folder excludedFolder) {
122 final Folder folder = new Folder(folders) local
140 final Folder folder = row.getFolder(); local
214 final Folder folder = folderRow.mFolder; local
348 final Folder folder = row.getFolder(); local
    [all...]
FolderItemView.java 29 import com.android.mail.providers.Folder;
35 * The view for each folder in the folder list.
42 private Folder mFolder;
60 boolean supportsDrag(DragEvent event, Folder folder);
65 void handleDrop(DragEvent event, Folder folder);
98 public static boolean areSameViews(final Folder a, final Folder b)
    [all...]
FolderListFragment.java 45 import com.android.mail.providers.Folder;
78 * <br /> Tapping on a parent folder creates a new fragment with the child folders at
84 * any folder for a given account.
89 LoaderManager.LoaderCallbacks<ObjectCursor<Folder>> {
99 * True if you want a divided FolderList. A divided folder list shows the following groups:
106 /** True if the folder list belongs to a folder selection activity (one account only) */
115 /** The currently selected folder (the folder being viewed). This is never null. */
118 * The current folder from the controller. This is meant only to check when the unread coun
452 final Folder folder; local
1001 final Folder folder = getItem(position); local
1070 final Folder folder = getItem(i); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 23 public abstract class Folder {
36 INBOX, // NOTE: The folder's name must be INBOX
42 OTHER, // this folder has no specific role
43 UNKNOWN // the role of this folder is unknown
49 * Not all {@link Folder} implementations may invoke it.
61 * @param callbacks Pointer to callbacks class. This may be used by the folder between this
84 * Returns the mode the folder was opened with. This may be different than the mode the open
91 * Does not actually attempt to create a folder.
98 * Attempt to create the given folder remotely using the given type.
106 * Returns the number of messages in the selected folder
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/adapter/
DrawerItem.java 22 import com.android.mail.providers.Folder;
39 * This class is an enumeration of a few element types: Account, a folder, a recent folder,
51 public final Folder mFolder;
58 /** A normal folder, also a child, if a parent is specified. */
83 /** Non existent item or folder type not yet set */
87 /** An inbox folder: Inbox, ...*/
89 /** A folder from whom a conversation was recently viewed */
91 /** A non-inbox folder that is shown in the "everything else" group. */
120 * @param folder a non-null folder, if this is a folder typ
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 49 // Check for presence of a given password folder.
50 bool hasFolder(const std::string& folder) const {
51 return data_.find(folder) != data_.end();
54 // Check for presence of a given password in a given password folder.
55 bool hasEntry(const std::string& folder, const std::string& key) const {
56 Data::const_iterator it = data_.find(folder);
60 // Get a list of password keys in a given password folder.
61 bool entryList(const std::string& folder,
63 Data::const_iterator it = data_.find(folder);
65 for (Folder::const_iterator fit = it->second.begin()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mhlib.py 14 name = mh.getcontext() # name of current folder
15 mh.setcontext(name) # set name of current folder
19 list = mh.listsubfolders(name) # direct subfolders of given folder
20 list = mh.listallsubfolders(name) # all subfolders of given folder
22 mh.makefolder(name) # create new folder
23 mh.deletefolder(name) # delete folder -- must have no subfolders
25 f = mh.openfolder(name) # new open folder object
28 path = f.getfullname() # folder's full pathname
29 path = f.getsequencesfilename() # full pathname of folder's sequences file
30 path = f.getmessagefilename(n) # full pathname of message n in folder
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
findertools.py 27 import Carbon.Folder
58 """Copy a file to a folder"""
70 """Move a file to a folder"""
280 """Close a Finder window for folder, Specify by path."""
295 """Set the position of a Finder window for folder to pos=(w, h). Specify file by name or fsspec.
374 def windowview(folder, view=None):
375 """windowview: Set the view of the window for the folder. Specify file by name or fsspec.
380 fsr = Carbon.File.FSRef(folder)
433 def windowsize(folder, size=None):
434 """Set the size of a Finder window for folder to size=(w, h), Specify by path
    [all...]
gensuitemodule.py 25 import Carbon.Folder
105 appsfolder = Carbon.Folder.FSFindFolder(-32765, 'apps', 0)
453 pathname = EasyDialogs.AskFolder(message='Create and select package folder for %s'%packagename,
460 basepkgname = EasyDialogs.AskFolder(message='Package folder for base suite (usually StdSuites)',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 14 name = mh.getcontext() # name of current folder
15 mh.setcontext(name) # set name of current folder
19 list = mh.listsubfolders(name) # direct subfolders of given folder
20 list = mh.listallsubfolders(name) # all subfolders of given folder
22 mh.makefolder(name) # create new folder
23 mh.deletefolder(name) # delete folder -- must have no subfolders
25 f = mh.openfolder(name) # new open folder object
28 path = f.getfullname() # folder's full pathname
29 path = f.getsequencesfilename() # full pathname of folder's sequences file
30 path = f.getmessagefilename(n) # full pathname of message n in folder
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 48 * A folder is a collection of conversations, and perhaps other folders.
51 public class Folder implements Parcelable, Comparable<Folder> {
60 // TODO: remove this once we figure out which folder is returning a "null" string as the
68 * Unique id of this folder.
73 * Persistent (across installations) id of this folder.
78 * The content provider URI that returns this folder for this account.
83 * The human visible name for this folder.
88 * The possible capabilities that this folder supports.
93 * Whether or not this folder has children folders
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 356 T Folder;
362 : IRBuilderBase(C), Inserter(I), Folder(F), DefaultFPMathTag(FPMathTag),
367 : IRBuilderBase(C), Folder(), DefaultFPMathTag(FPMathTag), FMF() {
371 : IRBuilderBase(TheBB->getContext()), Folder(F),
377 : IRBuilderBase(TheBB->getContext()), Folder(),
383 : IRBuilderBase(IP->getContext()), Folder(), DefaultFPMathTag(FPMathTag),
390 : IRBuilderBase(U->getContext()), Folder(), DefaultFPMathTag(FPMathTag),
398 : IRBuilderBase(TheBB->getContext()), Folder(F),
404 : IRBuilderBase(TheBB->getContext()), Folder(),
409 /// \brief Get the constant folder being used
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 580 const CFolder *Folder;
619 *Folder,
914 const CFolder &folder = db->Folders[folderIndex]; local
916 for (int j = 0; j < folder.PackStreams.Size(); j++)
922 newDatabase.Folders.Add(folder);
953 threadDecoder.Folder = &db->Folders[folderIndex];
  /packages/apps/Browser/src/com/android/browser/
AddBookmarkPage.java 127 private static class Folder {
130 Folder(String name, long id) {
147 private Uri getUriForFolder(long folder) {
150 if (folder == mRootFolder && account != null) {
155 return BrowserContract.Bookmarks.buildFolderUri(folder);
161 Folder folderData = (Folder) data;
162 long folder = folderData.Id; local
166 loader.setUri(getUriForFolder(folder));
208 Folder folder = (Folder) data local
530 long folder; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NavigatorView.js 76 return "navigator-folder-tree-item";
77 return "navigator-folder-tree-item";
152 folderNode = new WebInspector.NavigatorFolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name);
263 var addFolderLabel = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add folder to workspace" : "Add Folder to Workspace");
318 var shouldRemove = window.confirm(WebInspector.UIString("Are you sure you want to remove this folder?"));
323 var removeFolderLabel = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove folder from workspace" : "Remove Folder from Workspace");
364 Folder: "Folder",
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 57 public class Folder extends LinearLayout implements DragSource, View.OnClickListener,
60 private static final String TAG = "Launcher.Folder";
118 public Folder(Context context, AttributeSet attrs) {
146 // We need this view to be focusable in touch mode so that when text editing of the folder
197 // refactor this code from Folder
306 // When the folder gets focus, we don't want to announce the list of items.
311 * @return the FolderInfo object associated with this folder
372 // If our folder has too many items we prune them from the list. This is an issue
399 static Folder fromXml(Context context) {
400 return (Folder) LayoutInflater.from(context).inflate(R.layout.user_folder, null)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java 63 public class Folder extends LinearLayout implements DragSource, View.OnClickListener,
66 private static final String TAG = "Launcher.Folder";
136 public Folder(Context context, AttributeSet attrs) {
162 // We need this view to be focusable in touch mode so that when text editing of the folder
322 // When the folder gets focus, we don't want to announce the list of items.
327 * @return the FolderInfo object associated with this folder
388 // If our folder has too many items we prune them from the list. This is an issue
415 static Folder fromXml(Context context) {
416 return (Folder) LayoutInflater.from(context).inflate(R.layout.user_folder, null);
550 Log.e(TAG, "Folder order not properly persisted during bind")
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 415 milliseconds