HomeSort by relevance Sort by last modified time
    Searched full:folder (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/files/
README_add-ons.txt 1 Add-on folder.
2 Drop vendor supplied SDK add-on in this folder
sdk.properties 2 # This file is copied in the root folder of each platform component.
  /frameworks/base/include/private/
README 1 This folder contains private include files.
  /development/samples/
README 1 Adding a new folder in development/samples is not enough to have it
  /external/chromium/net/data/ftp/
dir-listing-ls-14 2 drwxr-xr-x folder 0 Jul 17 2006 online
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
README.txt 7 3/ Copy build/Release/libEASLIb.dylib to the JetCreator folder
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
Perspective.java 39 IFolderLayout folder; local
41 folder = layout.createFolder("logcat", IPageLayout.BOTTOM, 0.8f, //$NON-NLS-1$
43 folder.addPlaceholder(LogCatView.ID + ":*"); //$NON-NLS-1$
44 folder.addView(LogCatView.ID);
46 folder = layout.createFolder("devices", IPageLayout.LEFT, 0.3f, //$NON-NLS-1$
48 folder.addPlaceholder(DeviceView.ID + ":*"); //$NON-NLS-1$
49 folder.addView(DeviceView.ID);
51 folder = layout.createFolder("emulator", IPageLayout.BOTTOM, 0.5f, //$NON-NLS-1$
53 folder.addPlaceholder(EmulatorControlView.ID + ":*"); //$NON-NLS-1$
54 folder.addView(EmulatorControlView.ID)
    [all...]
  /external/jsr305/ri/nbproject/
project.xml 13 <source-folder>
18 </source-folder>
19 <source-folder>
24 </source-folder>
25 <source-folder>
29 </source-folder>
44 <type>folder</type>
50 <source-folder style="packages">
53 </source-folder>
54 <source-folder style="packages"
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Folder.java 20 public abstract class Folder {
33 INBOX, // NOTE: The folder's name must be INBOX
39 OTHER, // this folder has no specific role
40 UNKNOWN // the role of this folder is unknown
46 * Not all {@link Folder} implementation won't call it.
58 * @param callbacks Pointer to callbacks class. This may be used by the folder between this
81 * Get the mode the folder was opened with. This may be different than the mode the open
89 * Does not actually attempt to create a folder.
96 * Attempt to create the given folder remotely using the given type.
105 * @return A count of the messages in the selected folder
    [all...]
StoreSynchronizer.java 37 * The total # of messages in the folder
41 * The # of new messages in the folder
52 * The job of this method is to synchronize messages between a remote folder and the
53 * corresponding local folder.
62 * listener.synchronizeMailboxNewMessage(account, folder, message);
67 * @param folder The folder to synchronize
73 EmailContent.Account account, EmailContent.Mailbox folder,
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
IAbstractFolder.java 20 * A folder.
42 * parent folder.
47 * returns an {@link IAbstractFile} representing a child of the current folder with the
54 * returns an {@link IAbstractFolder} representing a child of the current folder with the
55 * given name. The folder may not actually exist.
56 * @param name the name of the folder.
61 * returns a list of existing members in this folder.
  /frameworks/base/core/java/android/provider/
LiveFolders.java 22 * <p>A LiveFolder is a special folder whose content is provided by a
23 * {@link android.content.ContentProvider}. To create a live folder, two components
27 * activity is responsible for creating the live folder.</li>
28 * <li>A {@link android.content.ContentProvider} to provide the live folder items.</li>
32 * <p>When a user wants to create a live folder, the system looks for all activities with the
35 * {@link #ACTION_CREATE_LIVE_FOLDER} action. The activity then creates the live folder and
38 * live folder is described by a content provider URI, a name, an icon and a display mode.
39 * Finally, when the user opens the live folder, the system queries the content provider
40 * to retrieve the folder's content.</p>
42 * <h3>Setting up the live folder activity</h3
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 21 * Represents a folder containing shortcuts or apps.
26 * Whether this folder has been opened
31 * The folder name.
LiveFolder.java 34 public class LiveFolder extends Folder {
109 FolderLoadingTask(LiveFolder folder) {
110 mFolder = new WeakReference<LiveFolder>(folder);
114 final LiveFolder folder = mFolder.get(); local
115 if (folder != null) {
117 return LiveFolderAdapter.query(folder.mLauncher, mInfo);
126 final LiveFolder folder = mFolder.get(); local
127 if (folder != null) {
128 final Launcher launcher = folder.mLauncher;
129 folder.setContentAdapter(new LiveFolderAdapter(launcher, mInfo, cursor))
    [all...]
  /external/sonivox/jet_tools/JetCreator_content/
README.txt 3 The "JetCreator_content" folder contains JetCreator sample files.
11 4. After importing the first time, you can use the OPEN command to open the .jtc file in the folder you selected as the target for import.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceManager.java 72 /** List of the qualifier object helping for the parsing of folder names */
98 * Notification for resource folder change.
100 * @param folder the {@link ResourceFolder} representing the folder.
103 void folderChanged(IProject project, ResourceFolder folder, int eventType);
164 public void folderChanged(IFolder folder, int kind) {
167 final IProject project = folder.getProject();
180 // checks if the folder is under res.
181 IPath path = folder.getFullPath();
197 ResourceFolder newFolder = processFolder(new IFolderWrapper(folder),
457 IAbstractFolder folder = (IAbstractFolder) file; local
509 IFolder folder = (IFolder)res; local
    [all...]
FolderTypeRelationship.java 65 * Returns a list of {@link ResourceType}s that can be generated from files inside a folder
67 * @param folderType The folder type.
95 * @param folderType the folder type.
96 * @return true if files inside the folder of the specified {@link ResourceFolderType}
115 * a file in the folder can generate a resource of the specified type.
117 * @param folder The {@link ResourceFolderType}
121 private static void add(ResourceType type, ResourceFolderType folder,
124 // first we add the folder to the list associated with the type.
130 if (folderList.indexOf(folder) == -1) {
131 folderList.add(folder);
    [all...]
ResourceFolderType.java 23 * Enum representing a type of resource folder.
60 * Returns the {@link ResourceFolderType} from the folder name
61 * @param folderName The name of the folder. This must be a valid folder name in the format
63 * @return the <code>ResourceFolderType</code> representing the type of the folder, or
67 // split the name of the folder in segments.
  /external/icu4c/samples/layout/
FontMap.GDI 6 # in the "Fonts" folder.
  /external/zlib/contrib/dotzlib/
DotZLib.build 11 <property name="build.folder" value="${build.root}/debug/" if="${debug}" />
12 <property name="build.folder" value="${build.root}/release/" unless="${debug}" />
20 <mkdir dir="${build.folder}" />
21 <csc target="library" output="${build.folder}DotZLib.dll" debug="${debug}">
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SdkConstants.java 28 * <li><code>FD_</code> Folder name constant.</li>
143 /* Folder Names for Android Projects . */
145 /** Resources folder name, i.e. "res". */
147 /** Assets folder name, i.e. "assets" */
149 /** Default source folder name, i.e. "src" */
151 /** Default generated source folder name, i.e. "gen" */
153 /** Default native library folder name inside the project, i.e. "libs"
154 * While the folder inside the .apk is "lib", we call that one libs because
158 /** Native lib folder inside the APK: "lib" */
160 /** Default output folder name, i.e. "bin" *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PostCompilerDeltaVisitor.java 40 * <li>Any change inside the assets/ folder</li>
41 * <li>Any file change inside the res/ folder</li>
42 * <li>Any .class file change inside the output folder</li>
43 * <li>Any change to the classes.dex inside the output folder</li>
44 * <li>Any change to the packaged resources file inside the output folder</li>
46 * <li>Any change to .so file inside the lib (native library) folder</li>
69 * file is a non java file (or aidl) in the resource folder. Upon visiting all the
87 * Builds the object with a specified output folder.
91 * @param outputfolder the output folder of the project.
145 // folder before its children we can check when the path segmen
    [all...]
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 48 String folder = null; local
53 folder = name.substring(0, index);
56 copyFile(resources, folder, name);
73 File folder = null; local
75 folder = File.createTempFile("hyts_resources", "", null);
76 folder.delete();
77 folder.mkdirs();
82 folder.deleteOnExit();
83 return folder;
86 public static File copyFile(File root, String folder, String file)
    [all...]
  /development/host/windows/usb/
readme.txt 1 android_winusb.inf file contained in this folder must be used to install
6 Root of the installation folder must contain:
21 folder, respectively to the OS: copy x86 files to i386 subfolder, and amd64
38 available in WDK at bin\SelfSign folder. To use this utility you will need to
39 create an installation folder a sdesribed at the beginning of this document,
40 and run inf2cat.exe on .inf file at the root of installation folder.
  /development/ndk/samples/hello-neon/
build.properties 9 # 'source.dir' for the location of your java source folder and
10 # 'out.dir' for the location of your output folder.

Completed in 1331 milliseconds

1 2 3 4 5 6 7 8 91011>>