HomeSort by relevance Sort by last modified time
    Searched refs:folder (Results 101 - 125 of 1314) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Launcher3/src/com/android/launcher3/folder/
StackFolderIconLayoutRule.java 17 package com.android.launcher3.folder;
21 import com.android.launcher3.folder.FolderIcon.PreviewItemDrawingParams;
  /packages/apps/UnifiedEmail/src/com/android/mail/drawer/
FolderDrawerItem.java 23 import com.android.mail.providers.Folder;
29 FolderDrawerItem(ControllableActivity activity, Folder folder,
31 super(activity, folder, folderCategory, null);
41 * Return a folder: either a parent folder or a normal (child or flat)
42 * folder.
45 * @return a view showing a folder at the given position.
63 // True if folder types and URIs are the same
DrawerItem.java 27 import com.android.mail.providers.Folder;
39 * This class is an enumeration of a few element types: Account, a folder, a recent folder,
50 public final Folder mFolder;
58 /** A normal folder, also a child, if a parent is specified. */
91 /** Non existent item or folder type not yet set */
95 /** An inbox folder: Inbox, ...*/
97 /** A folder from whom a conversation was recently viewed */
99 /** A non-inbox folder that is shown in the "everything else" group. */
106 * @param folder a non-null folder, if this is a folder typ
    [all...]
  /packages/services/Car/bluetooth/bt-map-client-lib/src/com/google/android/auto/mapservice/
BluetoothMapEventReport.java 51 /** Message shifted from one folder to another */
57 // Folder in which the message is currently stored.
60 // Folder in which the message was stored previously.
134 public void setFolder(String folder) {
135 mFolder = folder;
IBluetoothMapService.aidl 65 // @folder - Folder to fetch the messages from.
71 String folder, int count, int offset);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUBinary.java 106 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
107 // Find the first data item name that starts with the folder name.
108 int index = binarySearch(bytes, folder);
110 index = ~index; // Normal: Otherwise the folder itself is the name of a data item.
116 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
169 String folder, String suffix, StringBuilder sb, Set<String> names) {
173 if (folder.length() != 0) {
174 // Test name.startsWith(folder + '/').
175 for (int i = 0; i < folder.length(); ++i, ++offset) {
176 if (bytes.get(offset) != folder.charAt(i))
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUBinary.java 102 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
103 // Find the first data item name that starts with the folder name.
104 int index = binarySearch(bytes, folder);
106 index = ~index; // Normal: Otherwise the folder itself is the name of a data item.
112 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
165 String folder, String suffix, StringBuilder sb, Set<String> names) {
169 if (folder.length() != 0) {
170 // Test name.startsWith(folder + '/').
171 for (int i = 0; i < folder.length(); ++i, ++offset) {
172 if (bytes.get(offset) != folder.charAt(i))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
NestedFolderTeaserView.java 44 import com.android.mail.providers.Folder;
100 // Each folder's loader will be this value plus the folder id
119 private Folder mFolder;
130 public void setFolder(final Folder folder) {
131 mFolder = folder;
148 public Folder getFolder() {
245 public void onUpdate(final Folder folder, final ConversationCursor cursor)
335 final Folder folder = folderHolder.getFolder(); local
    [all...]
FolderListFragment.java 56 import com.android.mail.providers.Folder;
93 * <br /> Tapping on a parent folder creates a new fragment with the child folders at
99 * any folder for a given account.
104 LoaderManager.LoaderCallbacks<ObjectCursor<Folder>>,
117 * True if you want a divided FolderList. A divided folder list shows the following groups:
125 * True if the folder list belongs to a folder selection activity (one account only)
137 /** The currently selected folder (the folder being viewed). This is never null. */
140 * The current folder from the controller. This is meant only to check when the unread coun
605 final Folder folder; local
1235 final Folder folder = getItem(position); local
    [all...]
OnePaneController.java 39 import com.android.mail.providers.Folder;
128 // even when waiting for sync (Folder list should still show with one
150 return !(account == null || context == null || context.folder == null
152 && isDefaultInbox(context.folder.folderUri, account);
251 // If going to the inbox, clear the folder list transaction history.
252 mInbox = listContext.folder;
257 // non-inbox folder.
370 * 2) If the user is in the folder list view, go back
374 * a) they got there by going through the folder
375 * list view, go back to the folder list view
456 final Folder folder = mFolder != null ? mFolder : mInbox; local
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 15 static void ConvertFolderItemInfoToBindInfo(const CFolder &folder,
19 bindInfo.BindPairs.ClearAndSetSize(folder.BindPairs.Size());
21 for (i = 0; i < folder.BindPairs.Size(); i++)
24 bindPair.InIndex = (UInt32)folder.BindPairs[i].InIndex;
25 bindPair.OutIndex = (UInt32)folder.BindPairs[i].OutIndex;
28 bindInfo.Coders.ClearAndSetSize(folder.Coders.Size());
29 bindInfo.CoderMethodIDs.ClearAndSetSize(folder.Coders.Size());
32 for (i = 0; i < folder.Coders.Size(); i++)
35 const CCoderInfo &coderInfo = folder.Coders[i];
40 if (folder.FindBindPairForOutStream(outStreamIndex) < 0)
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapStore.java 38 import com.android.emailcommon.mail.Folder;
69 * TODO Need a default response handler for things like folder updates
83 /** Charset used for converting folder names to and from UTF-7 as defined by RFC 3501. */
327 public Folder getFolder(String name) {
338 final ImapFolder folder = mailboxes.get(path); local
339 final Mailbox mailbox = folder.mMailbox;
347 // it might not be in all caps, this folder's parent path might have mixed case.
364 * Creates a {@link Folder} and associated {@link Mailbox}. If the folder does not already
384 final ImapFolder folder = (ImapFolder) getFolder(mailboxPath) local
452 ImapFolder folder = addMailbox( local
611 String folder; local
    [all...]
  /external/libmtp/examples/
pathutils.c 32 lookup_folder_id (LIBMTP_folder_t * folder, char * path, char * parent)
40 if (folder == NULL) {
44 current = malloc (strlen(parent) + strlen(folder->name) + 2);
45 sprintf(current,"%s/%s",parent,folder->name);
48 return folder->folder_id;
51 ret = lookup_folder_id (folder->child, path, current);
57 ret = lookup_folder_id (folder->sibling, path, parent);
86 // Check if path is a folder
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 196 IContainer folder = file.getParent(); local
197 if (folder != null && !(folder instanceof IProject)) {
198 segments.add(folder);
199 // res folder
200 folder = folder.getParent();
201 if (folder != null && !(folder instanceof IProject)) {
202 segments.add(folder);
    [all...]
  /external/skia/dm/
DM.cpp 249 SkString folder; local
252 folder.append("codec");
255 folder.append("codec_zero_init");
258 folder.append("scanline");
261 folder.append("stripe");
264 folder.append("crop");
267 folder.append("codec_subset");
270 folder.append("gen");
276 folder.append("_kGray8");
279 folder.append("_kIndex8")
309 SkString folder; local
502 SkString folder; local
    [all...]
  /external/autotest/client/bin/
site_sysinfo_unittest.py 27 self.existing_files_path = [os.path.join(self.src_dir, folder, f)
28 for f,folder in zip(self.existing_files,
32 self.new_files_path = [os.path.join(self.src_dir, folder, f)
33 for f,folder in zip(self.new_files,
  /external/conscrypt/src/test/java/org/conscrypt/ct/
CTLogStoreImplTest.java 180 File folder = File.createTempFile("test", ""); local
181 folder.delete();
182 folder.mkdir();
183 return folder;
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
ImageCompare.java 77 File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); local
78 String folder_path = folder.getAbsolutePath();
99 File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); local
100 String folder_path = folder.getAbsolutePath();
MediaStoreSaver.java 39 File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); local
40 String folder_path = folder.getAbsolutePath();
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
FolderAccessibilityHelper.java 20 import com.android.launcher3.folder.FolderPagedView;
24 * Implementation of {@link DragAndDropAccessibilityDelegate} to support DnD in a folder.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ChangedFileSetHelper.java 61 // get the source folder for the given project.
85 // generated res is inside the project's android output folder
94 // output file is based on the project's android output folder
107 // input path is inside the project's android output folder
123 // input path is inside the project's android output folder
139 // input pattern is based on the project's Java compiler's output folder
155 // generated res are in the project's android output folder
173 // input pattern is based on the project's Java compiler's output folder
180 // output file is based on the project's android output folder
192 IFolder folder = BaseProjectHelper.getAndroidOutputFolder(project) local
197 IFolder folder = BaseProjectHelper.getJavaOutputFolder(project); local
    [all...]
  /system/bt/osi/src/socket_utils/
README 17 The sources in this folder re-implement some of the sources in libcutils/sockets
24 sources other than the existing ones must put the sources in this folder and
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
ProjectConverter.java 72 public void convertProject(File folder) {
74 List<File> fileList = fs.selectJavaFilesInFolder(folder);
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
MediaStoreSaver.java 40 File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); local
41 String folder_path = folder.getAbsolutePath();
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SwipeableConversationItemView.java 28 import com.android.mail.providers.Folder;
56 final ConversationCheckedSet set, final Folder folder,
60 mConversationItemView.bind(conversation, activity, set, folder, checkboxOrSenderImage,

Completed in 1227 milliseconds

1 2 3 45 6 7 8 91011>>