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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/sync/test/fake_server/
bookmark_entity.cc 50 client_entity.folder(),
79 client_entity.folder(),
  /external/chromium_org/ui/app_list/
app_list_model.h 55 // Find a folder item matching |id|.
62 // Adds |item| to an existing folder or creates a new folder. If |folder_id|
68 // Merges two items. If the target item is a folder, the source item is added
69 // to the end of the target folder. Otherwise a new folder is created in the
71 // the new folder and the source item as the second item. Returns the id of
72 // the target folder, or an empty string if the merge failed. The source item
73 // may already be in a folder. See also the comment for RemoveItemFromFolder.
75 // enforces folder restrictions (e.g. the target can not be an OEM folder)
    [all...]
  /external/lldb/scripts/
install-lldb.sh 5 # directory into the developer folder specified.
12 echo This script will install the files from a 'Debug' or 'Release' build directory into the developer folder specified.
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessage.java 113 public BluetoothMapBmessage setFolder(String folder) {
114 mBmsgFolder = folder;
161 json.put("folder", mBmsgFolder);
BluetoothMasClient.java 78 * Callback message sent when folder listing is received
80 * <code>obj</code> contains ArrayList of sub-folder names
88 * Callback message sent when folder listing size is received
90 * <code>obj</code> contains number of items in folder listing
724 * Goes back to root of folder hierarchy
741 * Goes back to parent folder in folder hierarchy
758 * Goes down to specified sub-folder in folder hierarchy
762 * @param name name of sub-folder
    [all...]
  /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,
  /sdk/eclipse/scripts/
build_adt.sh 37 # 2. Copy dependent jars into the libs folder of each plugin
46 echo Copying ADT plugins and bundle into destination folder
  /external/chromium_org/components/bookmarks/browser/
bookmark_utils_unittest.cc 104 // Node "foo bar" and folder "foo" are returned in search results.
119 // Ensure folder "foo" is not returned in more specific search.
146 model->AddFolder(model->other_node(), 0, ASCIIToUTF16("Folder"));
183 model->AddFolder(model->other_node(), 0, ASCIIToUTF16("Folder"));
200 *query.title = ASCIIToUTF16("Folder");
220 model->AddFolder(model->other_node(), 0, ASCIIToUTF16("Folder"));
332 // Paste node to a different folder.
333 const BookmarkNode* folder = local
334 model->AddFolder(model->bookmark_bar_node(), 0, ASCIIToUTF16("Folder"));
335 EXPECT_EQ(0, folder->child_count())
469 const BookmarkNode* folder = local
    [all...]
  /cts/tests/print/
Android.mk 29 # Copy the shell script to run the print instrument Jar to the CTS out folder.
33 # Copy the built print instrument library Jar to the CTS out folder.
  /external/chromium_org/components/enhanced_bookmarks/
image_store_unittest.cc 67 ImageStore* CreateStore(base::ScopedTempDir& folder);
71 base::ScopedTempDir& folder) {
77 base::ScopedTempDir& folder) {
78 return new PersistentImageStore(folder.path());
  /external/chromium_org/third_party/webrtc/base/
win32filesystem.h 30 // If the path points to a folder, it will fail with VERIFY
33 // This will attempt to delete an empty folder. If the path does not point to
34 // a folder, it fails with VERIFY. If the folder is not empty, it fails normally
35 virtual bool DeleteEmptyFolder(const Pathname &folder);
44 // the folder
48 // Moves a folder from old_path to new_path. If the new path is on a different
49 // volume from the old, it will attempt to Copy and then Delete the folder
50 // Returns true if the folder is successfully moved
81 // A folder appropriate for storing temporary files (Contents ar
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListCallbacks.java 27 import com.android.mail.providers.Folder;
112 * Gets the last save scroll position of the conversation list for the specified Folder.
121 * Sets the last save scroll position of the conversation list for the specified Folder for
136 * Set up the empty icon depending on the current empty folder.
141 boolean setupEmptyIconView(Folder folder, boolean isEmpty);
ConversationLongPressTipView.java 25 import com.android.mail.providers.Folder;
42 public void onUpdate(Folder folder, ConversationCursor cursor) {
ConversationPhotoTeaserView.java 9 import com.android.mail.providers.Folder;
32 public void onUpdate(Folder folder, ConversationCursor cursor) {
FolderDisplayer.java 31 import com.android.mail.providers.Folder;
42 * Used to generate folder display information given a raw folders string.
48 protected final NavigableSet<Folder> mFoldersSortedSet = Sets.newTreeSet();
69 // Set default values used across all folder chips
85 * @param ignoreFolderUri (optional) folder to omit from the displayed set
91 for (Folder folder : conv.getRawFolders()) {
93 if (ignoreFolderType >= 0 && folder.isType(ignoreFolderType)) {
97 if (ignoreFolderUri != null && ignoreFolderUri.equals(folder.folderUri)) {
100 mFoldersSortedSet.add(folder);
    [all...]
MiniDrawerView.java 31 import com.android.mail.providers.Folder;
38 * A smaller version of the account- and folder-switching drawer view for tablet UIs.
138 final ObjectCursor<Folder> folderCursor = mController.getFoldersCursor();
143 final Folder f = folderCursor.getModel();
159 public final Folder folder; field in class:MiniDrawerView.FolderItem
162 public FolderItem(Folder f, ImageView iv) {
163 folder = f;
165 Folder.setIcon(folder, view)
    [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]);
  /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 99 * Finds a matching Source folder for the current path. This checks if the current path
100 * leads to, or is a source folder.
103 * @return The segments of the source folder, or null if no match was found
130 // this folder, or one of this children is a source
131 // folder!
232 * @param folder The container from which to delete the markers.
236 protected final void removeMarkersFromContainer(IContainer folder, String markerId) {
238 if (folder.exists()) {
239 folder.deleteMarkers(markerId, true, IResource.DEPTH_INFINITE);
242 String msg = String.format(Messages.Marker_Delete_Error, markerId, folder.toString())
458 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/icu/icu4c/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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java 37 import com.android.mail.providers.Folder;
51 public static final String EXTRA_FOLDER_TYPE = "folder-type";
52 public static final String EXTRA_FOLDER_CAPABILITIES = "folder-capabilities";
53 public static final String EXTRA_FOLDER_URI = "folder-uri";
54 public static final String EXTRA_FOLDER_CONVERSATION_LIST_URI = "folder-conversation-list-uri";
55 public static final String EXTRA_FOLDER_DISPLAY_NAME = "folder-display-name";
241 Folder folder = null; local
251 folder = new Folder(folderCursor)
    [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...]

Completed in 2704 milliseconds

1 2 3 45 6 7 8 91011>>