HomeSort by relevance Sort by last modified time
    Searched refs:folder (Results 76 - 100 of 1625) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 52 def writeContext(folder):
53 folder = normF(folder)
55 "Current-Folder: %s\n" % folder)
57 def writeCurMessage(folder, cur):
58 folder = normF(folder)
59 writeFile(os.path.join(_mhpath, folder, ".mh_sequences"),
62 def writeMessage(folder, n, headers, body)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java 30 import com.android.mail.providers.Folder;
37 * The view for each folder in the folder list.
44 private Folder mFolder;
95 public static boolean areSameViews(final Folder a, final Folder b) {
110 public void bind(final Folder folder, final FolderUri parentUri) {
111 mFolder = folder;
113 mFolderTextView.setText(folder.name)
    [all...]
ConversationSpecialItemView.java 24 import com.android.mail.providers.Folder;
36 void onUpdate(Folder folder, ConversationCursor cursor);
FolderSelectionActivity.java 39 import com.android.mail.providers.Folder;
65 private Folder mSelectedFolder;
132 Account account, Folder folder) {
193 * Create a Fragment showing this folder and its children.
205 * @return An {@link ArrayList} of folder canonical names
237 * Create a widget for the specified account and folder
239 protected void createWidget(int id, Account account, Folder selectedFolder) {
259 private void onFolderChanged(Folder folder, final boolean force)
    [all...]
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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFolderWrapper.java 42 public IFolderWrapper(IFolder folder) {
43 mContainer = mFolder = folder;
152 IFolder folder = mFolder.getFolder(name); local
153 return new IFolderWrapper(folder);
156 IFolder folder = mContainer.getFolder(new Path(name)); local
157 return new IFolderWrapper(folder);
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AntFilesLocatorTest.java 39 public final TemporaryFolder folder = new TemporaryFolder(); field in class:AntFilesLocatorTest
63 final File file = new File(folder.getRoot(), path);
69 return new FileResource(folder.getRoot(), path);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
ExecFileLoader.java 107 final File folder = file.getParentFile(); local
108 if (folder != null) {
109 folder.mkdirs();
  /external/webrtc/webrtc/base/
unixfilesystem.h 28 // only supports an Objective-C API for fetching the folder locations, so that
32 // SetApp*Folder() APIs once external users stop using them.
33 static void SetAppDataFolder(const std::string& folder);
34 static void SetAppTempFolder(const std::string& folder);
50 // This will attempt to delete the folder located at 'folder'
51 // It ASSERTs and returns false if you pass it a non-existant folder or a
53 bool DeleteEmptyFolder(const Pathname& folder) override;
91 // A folder appropriate for storing temporary files (Contents are
107 // Get a temporary folder that is unique to the current user and application
    [all...]
fileutils.h 117 // It ASSERTS and returns false if the path points to a folder or a
121 // This will attempt to delete the empty folder located at 'folder'
123 // folder. It fails normally if the folder is not empty or can otherwise
125 virtual bool DeleteEmptyFolder(const Pathname &folder) = 0;
129 // folder. If the folder is empty, this returns true.
130 virtual bool DeleteFolderContents(const Pathname &folder);
132 // This deletes the contents of a folder, recursively, and then delete
    [all...]
pathutils.cc 32 // FOLDER_DELIMS separate folder segments and the filename
63 Pathname::Pathname(const std::string& folder, const std::string& filename)
65 SetPathname(folder, filename);
127 void Pathname::SetPathname(const std::string& folder,
129 SetFolder(folder);
139 std::string Pathname::folder() const { function in class:rtc::Pathname
167 void Pathname::SetFolder(const std::string& folder) {
168 folder_.assign(folder);
169 // Ensure folder ends in a path delimiter
175 void Pathname::AppendFolder(const std::string& folder) {
    [all...]
unixfilesystem.cc 55 // elsewhere; other places should use GetApp{Data,Temp}Folder() in
70 void UnixFilesystem::SetAppDataFolder(const std::string& folder) {
72 provided_app_data_folder_ = CopyString(folder);
75 void UnixFilesystem::SetAppTempFolder(const std::string& folder) {
77 provided_app_temp_folder_ = CopyString(folder);
117 LOG(LS_INFO) << "Creating folder: " << pathname;
161 bool UnixFilesystem::DeleteEmptyFolder(const Pathname &folder) {
162 LOG(LS_INFO) << "Deleting folder" << folder.pathname();
164 if (!IsFolder(folder)) {
    [all...]
  /external/autotest/site_utils/
perf_csv_uploader.py 46 # Timeout in minutes for upload attempts for a given folder.
54 """A class contains the information of a folder storing csv files to be
69 @param perf_csv_folder: Path of the folder contains csv files in test
86 """Get the url to the folder storing csv files in GS.
88 The url can be formulated based on csv folder, test_name and hostname.
97 """Download the folder containing csv files to the given dest_dir.
102 downloaded folder.
120 """Upload the folder to cns.
126 # File in cns is stored under folder with format of:
248 for folder in folders
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
PackageSourcePage.java 47 * @param folder
48 * base folder to create this page in
56 final ReportOutputFolder folder, final IHTMLReportContext context,
58 super(node, parent, folder, context);
89 locator.getTabWidth(), this, folder, context);
115 final String link = packagePage.getLink(folder);
ClassPage.java 39 * @param folder
40 * base folder to create this page in
45 final ILinkable sourcePage, final ReportOutputFolder folder,
47 super(classNode, parent, folder, context);
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewItemDrawingParams.java 16 package com.android.launcher3.folder;
21 * Manages the parameters used to draw a Folder preview item.
  /external/python/cpython2/Demo/tkinter/guido/
mbox.py 3 # Scan MH folder, display results in window
21 global folder, seq
26 folder = 'inbox'
35 folder = arg[1:]
42 mhf = mh.openfolder(folder)
52 # Build right part: folder list
65 {'label': 'Open Folder',
163 global folder, mhf
167 msg = "Please open one folder at a time"
169 msg = "Please select a folder to open
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 61 import com.android.mail.providers.Folder;
256 throw new IllegalStateException("Unable to locate folder for uri: " +
260 final Folder folder; local
263 folder = new Folder(folderCursor);
271 final NotificationKey key = new NotificationKey(account, folder);
291 key.account.uri.toString(), key.folder.folderUri.fullUri.toString(),
352 * account-folder pair, pass in the account and folder that should be resent
381 final Folder folder = notification.folder; local
439 final Folder folder = notification.folder; local
456 final Folder folder = notification.folder; local
1615 notificationManager.cancel(getNotificationId(account.getAccountManagerAccount(), folder)); local
1659 final Folder folder = notificationKey.folder; local
1909 public final Folder folder; field in class:NotificationUtils.NotificationKey
    [all...]
  /dalvik/dx/src/com/android/multidex/
FolderPathElement.java 26 * A folder element.
53 private void collect(File folder, String prefix, ArrayList<String> result) {
54 for (File file : folder.listFiles()) {
  /external/autotest/server/site_tests/moblab_RunSuite/
moblab_RunSuite.py 59 for folder in FAILURE_FOLDERS:
61 host.get_file(folder, moblab_logs_dir)
  /external/flatbuffers/android/jni/
msbuild.py 61 for folder in SEARCH_FOLDERS:
62 for file in glob.glob(folder):
  /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
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUBinary.java 108 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
109 // Find the first data item name that starts with the folder name.
110 int index = binarySearch(bytes, folder);
112 index = ~index; // Normal: Otherwise the folder itself is the name of a data item.
118 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
171 String folder, String suffix, StringBuilder sb, Set<String> names) {
175 if (folder.length() != 0) {
176 // Test name.startsWith(folder + '/').
177 for (int i = 0; i < folder.length(); ++i, ++offset) {
178 if (bytes.get(offset) != folder.charAt(i))
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUBinary.java 104 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
105 // Find the first data item name that starts with the folder name.
106 int index = binarySearch(bytes, folder);
108 index = ~index; // Normal: Otherwise the folder itself is the name of a data item.
114 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
167 String folder, String suffix, StringBuilder sb, Set<String> names) {
171 if (folder.length() != 0) {
172 // Test name.startsWith(folder + '/').
173 for (int i = 0; i < folder.length(); ++i, ++offset) {
174 if (bytes.get(offset) != folder.charAt(i))
    [all...]

Completed in 2748 milliseconds

1 2 34 5 6 7 8 91011>>