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

1 2

  /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.
178 // folder before its children we can check when the path segment
179 // count is 2 (format will be /$Project/folder) and make sure we are
194 // 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 51 * Resource manager builder whose only purpose is to refresh the resource folder
130 // check the 'gen' source folder is present
131 boolean hasGenSrcFolder = false; // whether the project has a 'gen' source folder setup
147 boolean genFolderPresent = false; // whether the gen folder actually exists
152 // No source folder setup for 'gen' in the project, but there's already a
153 // 'gen' resource (file or folder).
155 if (resource.getType() == IResource.FOLDER) {
156 // folder exists already! This is an error. If the folder had been created
157 // by the NewProjectWizard, it'd be a source folder
    [all...]
BaseBuilder.java 97 * Finds a matching Source folder for the current path. This checks if the current path
98 * leads to, or is a source folder.
101 * @return The segments of the source folder, or null if no match was found
128 // this folder, or one of this children is a source
129 // folder!
230 * @param folder The container from which to delete the markers.
234 protected final void removeMarkersFromContainer(IContainer folder, String markerId) {
236 if (folder.exists()) {
237 folder.deleteMarkers(markerId, true, IResource.DEPTH_INFINITE);
240 String msg = String.format(Messages.Marker_Delete_Error, markerId, folder.toString())
454 IFolder folder = (IFolder)rootResource; local
    [all...]
PostCompilerBuilder.java 149 // also remove the files in the output folder (but not the Eclipse output folder).
222 // get the android output folder
383 // refresh recursively bin/res folder
401 // refresh the bin folder content with no recursion to update the library
539 // refresh recursively bin/res folder
692 // refresh the bin folder content with no recursion
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 213 ASSERT_EQ(BookmarkNode::FOLDER, new_node->type());
218 // Add another folder, just to make sure folder_ids are incremented correctly.
243 const BookmarkNode* folder = model.AddFolder(root, 0, ASCIIToUTF16("foo")); local
250 model.AddURL(folder, 0, title, url);
254 // Now remove the folder.
312 // And remove the folder.
330 // Copy 'd' to be after '1:b': URL item from bar to folder.
337 // Copy '1:d' to be after 'a': URL item from folder to bar.
338 const BookmarkNode* folder = root->GetChild(1); local
339 nodeToCopy = folder->GetChild(1)
389 const BookmarkNode* folder = model.AddFolder(model.other_node(), 0, local
    [all...]
bookmark_model.h 51 FOLDER,
77 // Returns the time the bookmark/folder was added.
79 // Sets the time the bookmark/folder was added.
82 // Returns the last time the folder was modified. This is only maintained
83 // for folders (including the bookmark and other folder).
87 // Sets the last time the folder was modified.
92 // Convenience for testing if this nodes represents a folder. A folder is a
166 // the bookmark bar, and those in the other folder.
213 // Unstars or deletes the specified entry. Removing a folder entry recursivel
    [all...]
bookmark_codec.cc 32 const char* BookmarkCodec::kTypeFolder = "folder";
151 return false; // Invalid type for root folder and/or other folder.
157 // Need to reset the type as decoding resets the type to FOLDER. Similarly
272 node->set_type(BookmarkNode::FOLDER);
bookmark_html_writer.cc 62 // Start of a folder.
68 // After kLastModified when writing a user created folder.
70 // End of the folder.
72 // Start of the children of a folder.
74 // End of the children for a folder.
124 return; // Invalid type for root folder and/or other folder.
279 // Folder.
290 // The other folder name is not written out. This gives the effect of
291 // making the contents of the 'other folder' be a sibling to the bookmar
    [all...]
bookmark_model.cc 73 type_ = BookmarkNode::FOLDER;
286 // We cannot change the URL of a folder.
387 new_node->set_type(BookmarkNode::FOLDER);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 174 // Get the resources folder to crunch from
179 // Get the output folder where the cache is stored.
223 // get the cache folder
226 // get the resource folder
229 // and the assets folder
237 // list of res folder (main project + maybe libraries)
245 // png cache folder first.
248 // regular res folder next.
254 // png cache folder first
258 // regular res folder next
    [all...]
SourceProcessor.java 329 // find the source folder for the class so that we can infer the package from the
330 // difference between the file and its source folder.
336 // we don't look in the 'gen' source folder as there will be no source in there.
338 // look for the source file parent, until we find this source folder.
355 * @param sourceFolderPathList The list of source folder paths.
365 // we don't look in the 'gen' source folder as there will be no source in there.
373 * Scans a folder and fills the list of files to compile.
374 * @param sourceFolder the root source folder.
375 * @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...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view_unittest.cc 136 // the other for the 'other bookmarks' folder.
140 // The root should have 2 nodes: folder F1 and F2.
218 // Creates a new folder and moves a node to it.
309 // Creates a new folder.
324 // Make sure the folder was created.
328 EXPECT_EQ(BookmarkNode::FOLDER, new_node->type());
339 // Creates a new folder and selects a different folder for the folder to appear
351 // Create the folder in the 'other' folder
    [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/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.cc 22 // It would be easy to show a different icon when the folder is open (as they
34 bookmark_utils::IS_EDITABLE, node->type() == BookmarkNode::FOLDER,
80 // Update the folder name in the GtkTreeStore.
  /external/chromium/chrome/browser/importer/
profile_writer.cc 87 // We suppose that bookmarks are unique by Title, URL, and Folder. Since
109 node->type() == BookmarkNode::FOLDER) &&
293 // Build a set containing the folder names of the other folder.
347 // /home/hello and /hello. The parent should either by the other folder
  /external/chromium/chrome/browser/sync/glue/
bookmark_model_associator.cc 32 // folder Other Bookmarks in Chrome.
55 // Keep folder nodes before non-folder nodes.
101 temp_node.set_type(BookmarkNode::FOLDER);
327 // This algorithm will do a good job of merging when folder names are a good
330 // This algorithm will not do well if the folder name has changes but the
370 // Only folder nodes are pushed on to the stack.
  /packages/apps/Email/src/com/android/mail/providers/
UIProvider.java 39 * Values for the current state of a Folder/Account; note that it's possible that more than one
53 // An initial sync is needed for this Account/Folder to be used
60 * Values for the result of the last attempted sync of a Folder/Account
183 * Whether the server supports constraining search to a single folder. Requires
437 * String folder containing the serialized default inbox folder for an account.
455 * If specified, the query results will be limited to this folder.
457 public static final String FOLDER = "folder";
477 // We define a "folder" as anything that contains a list of conversations
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Tags.java 38 public static final int FOLDER = 0x07;
224 public static final int FOLDER_PAGE = FOLDER << PAGE_SHIFT;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 435 // We don't need to check the type folder name because a/ we only accept
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 248 ResourceFolderType.LAYOUT, // folder type
315 ResourceFolderType.VALUES, // folder type
324 ResourceFolderType.DRAWABLE, // folder type
333 ResourceFolderType.MENU, // folder type
342 ResourceFolderType.COLOR, // folder type
351 ResourceFolderType.ANIMATOR, // folder type
360 ResourceFolderType.ANIM, // folder type
369 ResourceFolderType.XML, // folder type
378 ResourceFolderType.XML, // folder type
387 ResourceFolderType.XML, // folder typ
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 685 * Returns the name of the parent folder for the given editor input
688 * @return the parent folder, which is never null but may be ""
    [all...]

Completed in 555 milliseconds

1 2