HomeSort by relevance Sort by last modified time
    Searched refs:folder (Results 51 - 75 of 1314) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
NodePage.java 39 * @param folder
40 * base folder to create this page in
45 final ReportOutputFolder folder, final IHTMLReportContext context) {
46 super(parent, folder, context);
BundlePage.java 42 * @param folder
43 * base folder for this bundle
48 final ISourceFileLocator locator, final ReportOutputFolder folder,
50 super(bundle.getPlainCopy(), parent, folder, context); local
69 folder.subFolder(foldername), context);
  /external/libmtp/examples/
newfolder.c 3 * Example program to create a folder on the device.
41 printf(" parent = parent folder or 0 to create the new folder in the root dir\n");
42 printf(" storage = storage id or 0 to create the new folder on the primary storage\n");
48 printf("Folder creation failed.\n");
50 printf("New folder created with ID: %d\n", newid);
57 printf("Creating new folder %s\n",path);
59 char * folder = basename(path); local
61 int newid = LIBMTP_Create_Folder(device, folder, id, 0);
63 printf("Folder creation failed.\n")
    [all...]
  /external/v8/build/android/gyp/
java_google_api_keys.py 74 folder = os.path.dirname(output_path)
75 if folder and not os.path.exists(folder):
76 os.makedirs(folder)
82 folder = os.path.dirname(output_path)
83 if folder and not os.path.exists(folder):
84 os.makedirs(folder)
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestPullVcardListingSize.java 33 public BluetoothPbapRequestPullVcardListingSize(String folder) {
34 mHeaderSet.setHeader(HeaderSet.NAME, folder);
BluetoothPbapClient.java 40 * {@link #setPhoneBookFolderDown} to navigate in virtual phone book folder
566 * Sets current folder to root
579 * Sets current folder to parent
592 * Sets current folder to selected sub-folder
594 * @param folder the name of the sub-folder
600 public boolean setPhoneBookFolderDown(String folder) {
601 BluetoothPbapRequest req = new BluetoothPbapRequestSetPath(folder);
624 * @param folder the name of the folder to be retrieve
    [all...]
BluetoothPbapRequestPullVcardListing.java 40 public BluetoothPbapRequestPullVcardListing(String folder, byte order, byte searchAttr,
51 if (folder == null) {
52 folder = "";
55 mHeaderSet.setHeader(HeaderSet.NAME, folder);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderEditText.java 10 private Folder mFolder;
24 public void setFolder(Folder folder) {
25 mFolder = folder;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SetFolders.java 86 IFolder folder = project.getFolder(new Path(sourceFolder)); local
87 if (!folder.exists())
88 folder.create(true, true, monitor);
89 newEntries.add(CoreModel.newSourceEntry(folder.getFullPath()));
93 IFolder folder = project.getFolder(new Path(outputFolder)); local
94 if (!folder.exists())
95 folder.create(true, true, monitor);
96 newEntries.add(CoreModel.newOutputEntry(folder.getFullPath()));
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
FileOutputTest.java 33 public TemporaryFolder folder = new TemporaryFolder(); field in class:FileOutputTest
37 File destFile = folder.newFile("jacoco.exec");
51 File destFile = folder.newFile("jacoco.exec");
68 options.setDestfile(folder.newFolder("folder").getAbsolutePath());
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Resources.java 45 private final ReportOutputFolder folder; field in class:Resources
48 * Attaches resources to the report with the given root folder.
51 * root folder of the report
54 folder = root.subFolder(".resources");
61 * base folder from where the link should be created
67 return folder.getLink(base, name);
126 final OutputStream out = folder.createFile(name);
  /external/skia/platform_tools/android/gyp_gen/
android_framework_gyp.py 99 def clean_gypd_files(folder):
103 folder: Folder in which to delete all files ending with 'gypd'.
105 assert os.path.isdir(folder)
106 files = os.listdir(folder)
109 os.remove(os.path.join(folder, f))
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationListFooterView.java 28 import com.android.mail.providers.Folder;
34 void onFooterViewLoadMoreClick(Folder folder);
62 final Folder f = (Folder) v.getTag();
68 public void setFolder(Folder folder) {
69 mLoadMore.setTag(folder);
70 mLoadMoreUri = folder.loadMoreUri;
74 * Update the view to reflect the new folder status
    [all...]
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
FileOutput.java 44 final File folder = destFile.getParentFile(); local
45 if (folder != null) {
46 folder.mkdirs();
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
ClassFileDumperTest.java 33 public TemporaryFolder folder = new TemporaryFolder(); field in class:ClassFileDumperTest
44 final File location = new File(folder.getRoot(), "classes");
53 final File location = new File(folder.getRoot(), "classes");
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListEmptyView.java 28 import com.android.mail.providers.Folder;
57 * based on the type of folder that will be visible.
59 public void setupEmptyText(final Folder folder, final String searchQuery,
62 EmptyStateUtils.bindEmptyFolderIcon(mIcon, folder);
68 EmptyStateUtils.bindEmptyFolderText(mText, folder, getResources(), searchQuery,
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files
43 """application - The Disk-Folder-File Suite host program """
51 """folder actions enabled - Are Folder Actions currently being processed? """
56 """properties - every property of the Disk-Folder-File Suite host program """
118 """volume - the volume on which the folder resides """
127 class folder(aetools.ComponentItem): class in inherits:aetools.ComponentItem
128 """folder - A folder in the file system """
137 folders = folder
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files
43 """application - The Disk-Folder-File Suite host program """
51 """folder actions enabled - Are Folder Actions currently being processed? """
56 """properties - every property of the Disk-Folder-File Suite host program """
118 """volume - the volume on which the folder resides """
127 class folder(aetools.ComponentItem): class in inherits:aetools.ComponentItem
128 """folder - A folder in the file system """
137 folders = folder
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateManager.java 47 private static final Set<String> EXCLUDED_CATEGORIES = Sets.newHashSet("Folder", "Google");
53 /** @return the root folder containing templates */
58 File folder = new File(location, FD_TOOLS + File.separator + FD_TEMPLATES); local
59 if (folder.isDirectory()) {
60 return folder;
67 /** @return the root folder containing extra templates */
81 File folder = new File(pkg, FD_TEMPLATES); local
82 if (folder.isDirectory()) {
83 folders.add(folder);
90 File folder = new File(extras, FD_TEMPLATES) local
    [all...]
  /external/opencv/otherlibs/highgui/
loadsave.cpp 60 // preprocess folder or file name - calculate its length,
66 // add folder to the path
78 // return the first folder from the path
83 // return the folder, next in the path after the specified folder.
85 const char* Next( const char* folder, int& len ) const;
167 const char* CvFilePath::Next( const char* folder, int& len ) const
169 if( !folder || folder < m_path || folder >= m_path + m_len
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/resolvers/
ResolutionFileResolver.java 34 * <li>{@code folder = "1920x1080"}</li>
50 * fallback will try to search for the file without the resolution folder.
58 /** The name of the folder, where the assets which fit this resolution, are located. */
59 public final String folder; field in class:ResolutionFileResolver.Resolution
64 * @param folder The name of the folder, where the assets which fit this resolution, are located. */
65 public Resolution (int portraitWidth, int portraitHeight, String folder) {
68 this.folder = folder;
88 FileHandle handle = baseResolver.resolve(resolve(originalHandle, bestResolution.folder));
    [all...]
  /external/webrtc/webrtc/base/
pathutils.h 23 // To establish consistent terminology, a filename never contains a folder
24 // component. A folder never contains a filename. A pathname may include
25 // a folder and/or filename component. Here are some examples:
28 // folder() /home/john/
35 // Basename may begin, end, and/or include periods, but no folder delimiters.
42 // Folder delimiters are slash and backslash
48 Pathname(const std::string& folder, const std::string& filename);
50 // Set's the default folder delimiter for this Pathname
54 // Normalize changes all folder delimiters to folder_delimiter()
66 // Returns the folder and filename components. If the pathname is empty
    [all...]
fileutils.cc 187 bool FilesystemInterface::DeleteFolderContents(const Pathname &folder) {
189 VERIFY(IsFolder(folder));
193 if (di->Iterate(folder)) {
198 subdir.SetFolder(folder.pathname());
216 bool FilesystemInterface::DeleteFolderAndContents(const Pathname& folder) {
217 return DeleteFolderContents(folder) && DeleteEmptyFolder(folder);
239 // If no folder is supplied, use the temporary folder
240 if (path.folder().empty())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FolderDecorator.java 48 IFolder folder = (IFolder)element; local
51 IProject project = folder.getProject();
52 if (project == null || !project.exists() || !folder.exists()) {
58 // check the folder is directly under the project.
59 if (folder.getParent().getType() == IResource.PROJECT) {
60 String name = folder.getName();
  /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...]

Completed in 1552 milliseconds

1 23 4 5 6 7 8 91011>>