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

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
__init__.py 85 getbaseclasses(folder)
116 'cfol' : folder,
System_Events_Suite.py 45 """folder actions enabled - Are Folder Actions currently being processed? """
84 'folder' : Disk_Folder_File_Suite.folder,
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 50 private String folder = null; field in class:BluetoothMapbMessage
381 String folder = null; local
491 if(line.contains("FOLDER")) {
494 folder = arg[1].trim();
504 if(folder != null)
505 newBMsg.setCompleteFolder(folder);
685 public void setCompleteFolder(String folder) {
686 this.folder = folder;
689 public void setFolder(String folder) {
    [all...]
BluetoothMapContentObserver.java 169 String folder; field in class:BluetoothMapContentObserver.Event
173 public Event(String eventType, long handle, String folder,
178 if (folder != null) {
179 this.folder = PATH + folder;
181 this.folder = null;
204 if (folder != null) {
205 xmlEvtReport.attribute("", "folder", folder);
262 + evt.folder + " " + evt.oldFolder + " " + evt.msgType.name())
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncproto.h 57 // Binary predicate helper to determine whether an Entity represents a folder
58 // or non-folder object. Use this instead of checking these properties
62 return ((has_folder() && folder()) ||
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.h 60 // the node in question is a folder.
61 int GetCodeMask(bool folder);
  /external/chromium/third_party/libjingle/source/talk/base/
unixfilesystem.h 51 // This will attempt to delete the folder located at 'folder'
52 // It ASSERTs and returns false if you pass it a non-existant folder or a plain file.
53 virtual bool DeleteEmptyFolder(const Pathname &folder);
86 // A folder appropriate for storing temporary files (Contents are
100 // Get a temporary folder that is unique to the current user and application.
win32filesystem.h 47 // If the path points to a folder, it will fail with VERIFY
50 // This will attempt to delete an empty folder. If the path does not point to
51 // a folder, it fails with VERIFY. If the folder is not empty, it fails normally
52 virtual bool DeleteEmptyFolder(const Pathname &folder);
61 // the folder
65 // Moves a folder from old_path to new_path. If the new path is on a different
66 // volume from the old, it will attempt to Copy and then Delete the folder
67 // Returns true if the folder is successfully moved
98 // A folder appropriate for storing temporary files (Contents ar
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32filesystem.h 47 // If the path points to a folder, it will fail with VERIFY
50 // This will attempt to delete an empty folder. If the path does not point to
51 // a folder, it fails with VERIFY. If the folder is not empty, it fails normally
52 virtual bool DeleteEmptyFolder(const Pathname &folder);
61 // the folder
65 // Moves a folder from old_path to new_path. If the new path is on a different
66 // volume from the old, it will attempt to Copy and then Delete the folder
67 // Returns true if the folder is successfully moved
98 // A folder appropriate for storing temporary files (Contents ar
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 22 public class MockFolder extends Folder {
33 public void copyMessages(Message[] msgs, Folder folder,
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
ConfigMatchTest.java 67 IAbstractFolder folder = Mocks.createAbstractFolder( local
71 mResources = new ResourceRepository(folder, false) {
274 * Adds a folder to the given {@link ProjectResources} with the given
275 * {@link FolderConfiguration}. The folder is filled with files from the provided list.
276 * @param resources the {@link ResourceRepository} in which to add the folder.
277 * @param config the {@link FolderConfiguration} for the created folder.
278 * @param memberList the list of files for the folder.
283 // figure out the folder name based on the configuration
286 // create the folder mock
287 IFolder folder = Mocks.createFolder(folderName, memberList) local
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 24 CFolder &folder)
26 folder.Coders.Clear();
28 // folder.OutStreams.Clear();
29 folder.PackStreams.Clear();
30 folder.BindPairs.Clear();
37 folder.BindPairs.Add(bindPair);
46 folder.Coders.Add(coderInfo);
49 folder.PackStreams.Add(bindInfo.InStreams[i]);
7zOut.cpp 271 void COutArchive::WriteFolder(const CFolder &folder)
273 WriteNumber(folder.Coders.Size());
275 for (i = 0; i < folder.Coders.Size(); i++)
277 const CCoderInfo &coder = folder.Coders[i];
307 for (i = 0; i < folder.BindPairs.Size(); i++)
309 const CBindPair &bindPair = folder.BindPairs[i];
313 if (folder.PackStreams.Size() > 1)
314 for (i = 0; i < folder.PackStreams.Size(); i++)
316 WriteNumber(folder.PackStreams[i]);
405 const CFolder &folder = folders[i]; local
414 const CFolder &folder = folders[i]; local
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 51 "FOLDER:telecom/msg/inbox\r\n" +
151 "FOLDER:telecom/msg/inbox\r\n" +
222 "FOLDER:telecom/msg/outbox\r\n" +
295 "FOLDER:telecom/msg/outbox\r\n" +
339 * Validate that the folder is correctly truncated to 512 bytes, if a longer folder path
343 String folder = ""; local
345 while(folder.length()<640)
346 folder += "/folder" + levelCount++
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 98 * Finds a matching Source folder for the current path. This checks if the current path
99 * leads to, or is a source folder.
102 * @return The segments of the source folder, or null if no match was found
129 // this folder, or one of this children is a source
130 // folder!
231 * @param folder The container from which to delete the markers.
235 protected final void removeMarkersFromContainer(IContainer folder, String markerId) {
237 if (folder.exists()) {
238 folder.deleteMarkers(markerId, true, IResource.DEPTH_INFINITE);
241 String msg = String.format(Messages.Marker_Delete_Error, markerId, folder.toString())
457 IFolder folder = (IFolder)rootResource; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
normconf.cpp 71 const char *folder; local
76 folder=pathToDataDirectory();
77 if(folder!=NULL) {
78 strcpy(unidataPath, folder);
89 folder=loadTestData(errorCode);
91 strcpy(unidataPath, folder);
104 folder=loadTestData(errorCode);
106 strcpy(unidataPath, folder);
117 folder=loadTestData(errorCode);
119 strcpy(unidataPath, folder);
    [all...]
  /external/icu4c/test/intltest/
normconf.cpp 71 const char *folder; local
76 folder=pathToDataDirectory();
77 if(folder!=NULL) {
78 strcpy(unidataPath, folder);
89 folder=loadTestData(errorCode);
91 strcpy(unidataPath, folder);
104 folder=loadTestData(errorCode);
106 strcpy(unidataPath, folder);
117 folder=loadTestData(errorCode);
119 strcpy(unidataPath, folder);
    [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...]
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_test.cc 127 // Tests open all on a folder with a couple of bookmarks.
129 const BookmarkNode* folder = model_->bookmark_bar_node()->GetChild(1); local
130 chrome::OpenAll(NULL, &navigator_, folder, NEW_FOREGROUND_TAB, NULL);
134 ASSERT_TRUE(folder->GetChild(0)->url() == navigator_.urls_[0]);
137 // Tests open all on a folder with a couple of bookmarks in incognito window.
139 const BookmarkNode* folder = model_->bookmark_bar_node()->GetChild(1); local
140 chrome::OpenAll(NULL, &navigator_, folder, OFF_THE_RECORD, NULL);
144 ASSERT_TRUE(folder->GetChild(0)->url() == navigator_.urls_[0]);
202 // folder.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
popup.css 7 #open-folder,
81 #open-folder svg,
82 .show-folder svg {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneController.java 34 import com.android.mail.providers.Folder;
162 public void onFolderSelected(Folder folder) {
168 if (folder.parent != Uri.EMPTY) {
172 setHierarchyFolder(folder);
173 super.onFolderSelected(folder);
418 // The Folder List fragment can be null for monkeys where we get a back before the
419 // folder list has had a chance to initialize.
423 // If the user navigated via the left folders list into a child folder,
424 // back should take the user up to the parent folder's conversation list
    [all...]
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 56 list > .folder > .label {
67 list > .folder > .url:empty:after {
162 html[dir=rtl] list > .folder > .label {
166 html[os=mac] list > .folder > .label {
  /external/chromium/chrome/browser/resources/file_manager/js/
mock_chrome.js 119 FILE_IS_DIRECTORY: 'Folder',
130 ERROR_CREATING_FOLDER: 'Unable to create folder "$1": $2',
131 ERROR_INVALID_FOLDER_CHARACTER: 'Invalid character in folder name: $1',
133 NEW_FOLDER_PROMPT: 'Enter a name for the new folder',
134 NEW_FOLDER_BUTTON_LABEL: 'New Folder',
167 SELECT_FOLDER_TITLE: 'Select a folder to open',
  /external/chromium_org/chrome/browser/resources/ntp_android/
bookmarks.css 116 .favicon-box.folder {
224 .favicon-box.folder {
251 .favicon-box.folder {
266 .favicon-box.folder {

Completed in 840 milliseconds

1 2 3 45 6 7 8 91011>>