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

  /packages/apps/Email/emailcommon/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...]
  /external/llvm/include/llvm/Support/
IRBuilder.h 333 T Folder;
336 : IRBuilderBase(C), Inserter(I), Folder(F) {
339 explicit IRBuilder(LLVMContext &C) : IRBuilderBase(C), Folder() {
343 : IRBuilderBase(TheBB->getContext()), Folder(F) {
348 : IRBuilderBase(TheBB->getContext()), Folder() {
353 : IRBuilderBase(IP->getContext()), Folder() {
359 : IRBuilderBase(U->getContext()), Folder() {
365 : IRBuilderBase(TheBB->getContext()), Folder(F) {
370 : IRBuilderBase(TheBB->getContext()), Folder() {
374 /// getFolder - Get the constant folder being used
    [all...]
  /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,
61 private static final String TAG = "Launcher.Folder";
120 public Folder(Context context, AttributeSet attrs) {
148 // We need this view to be focusable in touch mode so that when text editing of the folder
198 // refactor this code from Folder
303 // When the folder gets focus, we don't want to announce the list of items.
308 * @return the FolderInfo object associated with this folder
332 // If our folder has too many items we prune them from the list. This is an issue
358 static Folder fromXml(Context context) {
359 return (Folder) LayoutInflater.from(context).inflate(R.layout.user_folder, null)
    [all...]

Completed in 487 milliseconds