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

  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 25 public abstract class Folder {
38 INBOX, // NOTE: The folder's name must be INBOX
44 OTHER, // this folder has no specific role
45 UNKNOWN // the role of this folder is unknown
51 * Not all {@link Folder} implementations may invoke it.
63 * @param callbacks Pointer to callbacks class. This may be used by the folder between this
86 * Returns the mode the folder was opened with. This may be different than the mode the open
93 * Does not actually attempt to create a folder.
100 * Attempt to create the given folder remotely using the given type.
108 * Returns the number of messages in the selected folder
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
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...]
FolderSelectorAdapter.java 21 import com.android.mail.providers.Folder;
49 * An adapter for translating a cursor of {@link Folder} to a set of selectable views to be used for
55 private final Folder mFolder;
60 public FolderRow(Folder folder, boolean isSelected) {
61 mFolder = folder;
65 public Folder getFolder() {
92 private Folder mExcludedFolder;
102 int layout, Folder excludedFolder) {
122 final Folder folder = new Folder(folders) local
141 final Folder folder = row.getFolder(); local
209 final Folder folder = folderRow.mFolder; local
318 final Folder folder = row.getFolder(); local
    [all...]
MiniDrawerView.java 31 import com.android.mail.providers.Folder;
37 * A smaller version of the account- and folder-switching drawer view for tablet UIs.
136 final ObjectCursor<Folder> folderCursor = mController.getFoldersCursor();
141 final Folder f = folderCursor.getModel();
154 public final Folder folder; field in class:MiniDrawerView.FolderItem
157 public FolderItem(Folder f, ImageView iv) {
158 folder = f;
160 Folder.setIcon(folder, view)
    [all...]
FolderListFragment.java 50 import com.android.mail.providers.Folder;
87 * <br /> Tapping on a parent folder creates a new fragment with the child folders at
93 * any folder for a given account.
98 LoaderManager.LoaderCallbacks<ObjectCursor<Folder>>,
108 * True if you want a divided FolderList. A divided folder list shows the following groups:
116 * True if the folder list belongs to a folder selection activity (one account only)
128 /** The currently selected folder (the folder being viewed). This is never null. */
131 * The current folder from the controller. This is meant only to check when the unread coun
580 final Folder folder; local
1128 final Folder folder = getItem(position); local
    [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...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 53 // Check for presence of a given password folder.
54 bool hasFolder(const std::string& folder) const {
55 return data_.find(folder) != data_.end();
58 // Check for presence of a given password in a given password folder.
59 bool hasEntry(const std::string& folder, const std::string& key) const {
60 Data::const_iterator it = data_.find(folder);
64 // Get a list of password keys in a given password folder.
65 bool entryList(const std::string& folder,
67 Data::const_iterator it = data_.find(folder);
69 for (Folder::const_iterator fit = it->second.begin()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 49 * A folder is a collection of conversations, and perhaps other folders.
52 public class Folder implements Parcelable, Comparable<Folder> {
61 // TODO: remove this once we figure out which folder is returning a "null" string as the
69 * Unique id of this folder.
74 * Persistent (across installations) id of this folder.
79 * The content provider URI that returns this folder for this account.
84 * The human visible name for this folder.
89 * The possible capabilities that this folder supports.
94 * Whether or not this folder has children folders
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 438 T Folder;
442 : IRBuilderBase(C, FPMathTag), Inserter(I), Folder(F) {
446 : IRBuilderBase(C, FPMathTag), Folder() {
450 : IRBuilderBase(TheBB->getContext(), FPMathTag), Folder(F) {
455 : IRBuilderBase(TheBB->getContext(), FPMathTag), Folder() {
460 : IRBuilderBase(IP->getContext(), FPMathTag), Folder() {
466 : IRBuilderBase(U->getContext(), FPMathTag), Folder() {
473 : IRBuilderBase(TheBB->getContext(), FPMathTag), Folder(F) {
479 : IRBuilderBase(TheBB->getContext(), FPMathTag), Folder() {
483 /// \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...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
NavigatorView.js 75 return "navigator-folder-tree-item";
76 return "navigator-folder-tree-item";
192 folderNode = new WebInspector.NavigatorFolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name);
299 var addFolderLabel = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add folder to workspace" : "Add Folder to Workspace");
336 var shouldExclude = window.confirm(WebInspector.UIString("Are you sure you want to exclude this folder?"));
396 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Exclude folder" : "Exclude Folder"), this._handleContextMenuExclude.bind(this, project, path));
403 var shouldRemove = window.confirm(WebInspector.UIString("Are you sure you want to remove this folder?"));
409 var removeFolderLabel = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove folder from workspace" : "Remove Folder from Workspace")
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java 60 public class Folder extends LinearLayout implements DragSource, View.OnClickListener,
63 private static final String TAG = "Launcher.Folder";
140 public Folder(Context context, AttributeSet attrs) {
173 // We need this view to be focusable in touch mode so that when text editing of the folder
334 // When the folder gets focus, we don't want to announce the list of items.
339 * @return the FolderInfo object associated with this folder
400 // If our folder has too many items we prune them from the list. This is an issue
419 // In case any children didn't come across during loading, clean up the folder accordingly
436 static Folder fromXml(Context context) {
437 return (Folder) LayoutInflater.from(context).inflate(R.layout.user_folder, null)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cdonts.h 37 typedef struct Folder Folder;
110 typedef struct Folder Folder;
422 struct Folder : public IDispatch {
434 HRESULT (WINAPI *QueryInterface)(Folder *This,REFIID riid,void **ppvObject);
435 ULONG (WINAPI *AddRef)(Folder *This);
436 ULONG (WINAPI *Release)(Folder *This);
437 HRESULT (WINAPI *GetTypeInfoCount)(Folder *This,UINT *pctinfo);
438 HRESULT (WINAPI *GetTypeInfo)(Folder *This,UINT iTInfo,LCID lcid,ITypeInfo **ppTInfo)
    [all...]
shldisp.h 76 typedef struct Folder Folder;
    [all...]
cdoex.h 315 typedef class Folder Folder;
317 typedef struct Folder Folder;
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /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 1064 milliseconds