HomeSort by relevance Sort by last modified time
    Searched refs:FOLDER (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ProviderBookmarkNodeTest.java 64 // + Empty folder
65 // + Some other folder
68 BookmarkNode root = new BookmarkNode(1, Type.FOLDER, "Bookmarks", null, null);
72 BookmarkNode folder1 = new BookmarkNode(4, Type.FOLDER, "Youtube", null, root);
74 folder1.addChild(new BookmarkNode(5, Type.FOLDER, "Empty folder", null, folder1));
76 BookmarkNode folder2 = new BookmarkNode(6, Type.FOLDER, "Some other folder", null, folder1);
165 BookmarkNode root = new BookmarkNode(1, Type.FOLDER, "Bookmarks", null, null);
  /external/chromium_org/chrome/browser/android/bookmarks/
partner_bookmarks_shim_unittest.cc 92 partner_folder1->set_type(BookmarkNode::FOLDER);
96 partner_folder2->set_type(BookmarkNode::FOLDER);
156 partner_folder1->set_type(BookmarkNode::FOLDER);
160 partner_folder2->set_type(BookmarkNode::FOLDER);
174 partner_folder3->set_type(BookmarkNode::FOLDER);
245 partner_folder1->set_type(BookmarkNode::FOLDER);
250 partner_folder2->set_type(BookmarkNode::FOLDER);
330 partner_folder1->set_type(BookmarkNode::FOLDER);
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_editor.cc 18 // When create the new one to right-clicked folder, add it to the next to the
19 // folder's position. Because |details.index| has a index of the folder when
21 // bookmark manager edits contents of the folder.
60 node_type = BookmarkNode::FOLDER;
74 existing_node->type() == BookmarkNode::FOLDER) ?
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerDeltaVisitor.java 54 * <ul><li>Any modification in the resource folder</li>
55 * <li>Removed files from the source folder receiving generated Java files</li>
81 * In Resource folder flag. This allows us to know if we're in the
82 * resource folder.
87 * Current Source folder. This allows us to know if we're in a source
88 * folder, and which folder.
174 // folder before its children we can check when the path segment
175 // count is 2 (format will be /$Project/folder) and make sure we are
190 // then we are not yet in a source or resource folder
    [all...]
PatternBasedDeltaVisitor.java 87 if (resource.getType() == IResource.FOLDER) {
88 // always visit the subfolders, unless the folder is not to be included
ResourceManagerBuilder.java 55 * Resource manager builder whose only purpose is to refresh the resource folder
161 // check the 'gen' source folder is present
162 boolean hasGenSrcFolder = false; // whether the project has a 'gen' source folder setup
178 boolean genFolderPresent = false; // whether the gen folder actually exists
183 // No source folder setup for 'gen' in the project, but there's already a
184 // 'gen' resource (file or folder).
186 if (resource.getType() == IResource.FOLDER) {
187 // folder exists already! This is an error. If the folder had been created
188 // by the NewProjectWizard, it'd be a source folder
    [all...]
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...]
PreCompilerBuilder.java 100 * <li>compiles the resources located in the res/ folder, along with the
141 /** Output folder for generated Java File. Created on the Builder init
147 * Progress monitor used at the end of every build to refresh the content of the 'gen' folder
187 private void processChildrenOf(IFolder folder) {
190 list = folder.members();
197 if (member.getType() == IResource.FOLDER) {
923 IFolder folder = getGenManifestPackageFolder(); local
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_node.cc 44 // folder/bookmark names with spaces.
107 type_ = url_.is_empty() ? FOLDER : URL;
bookmark_node.h 26 FOLDER,
74 // Returns the last time the folder was modified. This is only maintained
75 // for folders (including the bookmark bar and other folder).
83 // Convenience for testing if this node represents a folder. A folder is a
bookmark_model_unittest.cc 39 // a new folder/bookmark or updating a title of a folder/bookmark.
68 // a new folder/bookmark or updating a title of a folder/bookmark.
446 ASSERT_EQ(BookmarkNode::FOLDER, new_node->type());
452 // Add another folder, just to make sure folder_ids are incremented correctly.
471 EXPECT_EQ(BookmarkNode::FOLDER, new_node->type());
493 const BookmarkNode* folder = model_->AddFolder(root, 0, ASCIIToUTF16("foo")); local
500 model_->AddURL(folder, 0, title, url);
504 // Now remove the folder
525 const BookmarkNode* folder = model_->AddFolder(bookmark_bar_node, 0, title); local
660 const BookmarkNode* folder = root->GetChild(1); local
723 const BookmarkNode* folder = local
    [all...]
bookmark_codec_unittest.cc 374 EXPECT_EQ(BookmarkNode::FOLDER, child->type());
375 EXPECT_EQ(ASCIIToUTF16("Folder A"), child->GetTitle());
386 EXPECT_EQ(BookmarkNode::FOLDER, child->type());
387 EXPECT_EQ(ASCIIToUTF16("Folder B"), child->GetTitle());
bookmark_codec.cc 39 const char* BookmarkCodec::kTypeFolder = "folder";
197 return false; // Invalid type for root folder and/or other
198 // folder.
214 // If we didn't find the mobile folder, we're almost guaranteed to have a
215 // duplicate id when we add the mobile folder. Consequently, if we don't
234 // Need to reset the type as decoding resets the type to FOLDER. Similarly
339 node->set_type(BookmarkNode::FOLDER);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc 104 if (details_.GetNodeType() != BookmarkNode::FOLDER)
128 if (details_.GetNodeType() != BookmarkNode::FOLDER) {
219 // The folder is not empty and the user didn't confirm.
336 if (details_.GetNodeType() != BookmarkNode::FOLDER) {
435 if (details_.GetNodeType() == BookmarkNode::FOLDER)
441 if (details_.GetNodeType() != BookmarkNode::FOLDER) {
594 // New folder.
bookmark_editor_view_unittest.cc 169 // The root should have 2 nodes: folder F1 and F2.
253 // Creates a new folder and moves a node to it.
352 // Creates a new folder.
367 // Make sure the folder was created.
370 EXPECT_EQ(BookmarkNode::FOLDER, new_node->type());
381 // Creates a new folder and selects a different folder for the folder to appear
393 // Create the folder in the 'other' folder
    [all...]
  /external/chromium_org/components/policy/core/browser/
managed_bookmarks_tracker.cc 48 int64 ManagedBookmarksTracker::LoadInitial(BookmarkNode* folder,
61 folder->Add(child, folder->child_count());
63 child->set_type(BookmarkNode::FOLDER);
86 // Update the managed bookmarks folder title, in case the user just signed
104 // The managed bookmarks folder isn't visible when that policy isn't present.
108 void ManagedBookmarksTracker::UpdateBookmarks(const BookmarkNode* folder,
124 for (int k = folder_index; k < folder->child_count(); ++k) {
125 const BookmarkNode* node = folder->GetChild(k);
137 model_->Move(existing, folder, folder_index)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 179 // Get the resources folder to crunch from
184 // Get the output folder where the cache is stored.
230 // get the cache folder
233 // get the BC folder
236 // get the resource folder
239 // and the assets folder
247 // list of res folder (main project + maybe libraries)
255 // png cache folder first.
259 // regular res folder next.
265 // png cache folder firs
    [all...]
SourceProcessor.java 336 // find the source folder for the class so that we can infer the package from the
337 // difference between the file and its source folder.
343 // we don't look in the 'gen' source folder as there will be no source in there.
345 // look for the source file parent, until we find this source folder.
362 * @param sourceFolderPathList The list of source folder paths.
372 // we don't look in the 'gen' source folder as there will be no source in there.
380 * Scans a folder and fills the list of files to compile.
381 * @param sourceFolder the root source folder.
382 * @param folder The folder to scan
    [all...]
AidlProcessor.java 123 // FIXME: make folder configurable
156 // make a path to the source file relative to the source folder.
198 // Also copy the file to the bin folder.
228 // ignore, we're not asking to create the folder so this won't happen anyway.
366 * @param outputFolder the top level output folder (not including the package folders)
367 * @param createFolders whether or not the parent folder of the destination should be created
378 // this really shouldn't happen since the sourceFile must be in a source folder
381 // make a path to the source file relative to the source folder.
383 // remove the file name. This is now the destination folder.
412 * Creates the destination folder. Becaus
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceManager.java 102 * Notification for resource folder change.
104 * @param folder the {@link ResourceFolder} representing the folder.
107 void folderChanged(IProject project, ResourceFolder folder, int eventType);
210 } else if (type == IResource.FOLDER) {
223 * Update a resource folder that we know about
224 * @param folder the folder that was updated
227 private void updateFolder(IFolder folder, int kind, IdeScanningContext context) {
230 final IProject project = folder.getProject()
344 ResourceFolder folder = resources.getResourceFolder( local
    [all...]
GlobalProjectMonitor.java 48 * file, and folder listeners.
136 * with folder change events
140 * Sent when a folder changed.
141 * @param folder The file that was changed
145 public void folderChanged(IFolder folder, int kind, boolean isAndroidProject);
191 * Listener bundle for folder event.
241 } else if (type == IResource.FOLDER) {
380 * Adds a folder listener.
395 * Removes an existing folder listener.
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 69 // Start of a folder.
75 // After kLastModified when writing a user created folder.
77 // End of the folder.
79 // Start of the children of a folder.
81 // End of the children for a folder.
130 return; // Invalid type for root folder and/or other folder.
293 // Folder.
305 // The other/mobile folder name are not written out. This gives the effect
306 // of making the contents of the 'other folder' be a sibling to th
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_type.js 187 FileType.DIRECTORY = {name: 'FOLDER', type: '.folder', icon: 'folder'};
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Tags.java 38 public static final int FOLDER = 0x07;
312 public static final int FOLDER_PAGE = FOLDER << PAGE_SHIFT;
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.cc 51 // folder Other Bookmarks in Chrome.
79 // Keep folder nodes before non-folder nodes.
108 // Finds the bookmark node that matches the given url, title and folder
154 temp_node.set_type(BookmarkNode::FOLDER);
433 // This algorithm will do a good job of merging when folder names are a good
436 // This algorithm will not do well if the folder name has changes but the
516 // Only folder nodes are pushed on to the stack.
608 : folder(f), parent(p), sync_id(id) {}
609 const BookmarkNode* folder; member in struct:browser_sync::FolderInfo
    [all...]

Completed in 762 milliseconds

1 2