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

1 2 3 4 5 6

  /packages/apps/Browser/
Android.mk 19 # additionally, build tests in sub-folders in a separate .apk
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PostCompilerDeltaVisitor.java 45 * <li>Any change to a non java/aidl file inside the source folders</li>
75 /** List of source folders. */
90 * @param sourceFolders the list of source folders for the project, relative to the workspace.
172 // check the other folders.
225 // for folders, return true only if we don't already know we have to
245 // for folders, return true only if we don't already know we have to make the
249 // we are in a folder that is neither the resource folders, nor the output.
250 // check against all the source folders, unless we already know we need to do
258 // In the source folders, we are looking for any kind of
277 // if the folder is not inside one of the folders we are interested in (res, assets, output
    [all...]
  /frameworks/base/docs/html/resources/articles/
live-folders.jd 1 page.title=Live Folders
4 <p>Live folders, introduced in Android 1.5 (API Level 3), let you display any source of data
11 <p>The platform includes several standard folders for displaying contacts. For
12 instance, the screenshot below shows the content of the live folders that
18 folder, the user will see the change happen in real-time. Live folders are not
22 Shelves. To better understand how live folders work, you can <a
97 <p>Live folders' content providers must obey specific naming rules. The
166 <p>The live folders API is extremely simple and relies only on intents and
167 content URI. If you want to see more examples of live folders
168 implementation, you can read the source code of the <a href="http://android.git.kernel.org/?p=platform/packages/apps/Contacts.git;a=tree;h=refs/heads/cupcake;hb=cupcake">Contacts application</a> and of the <a href="http://android.git.kernel.org/?p=platform/packages/providers/ContactsProvider.git;a=tree;h=refs/heads/cupcake;hb=cupcake">Contacts provider</a>.</p><p>You can also download the result of our exercise, the <a href="http://jext.free.fr/CupcakeShelves.zip">modified version of Shelves with live folders support</a>.</p
    [all...]
  /sdk/anttasks/src/com/android/ant/
AidlExecTask.java 84 // build a list of all the source folders
93 // now loop on all the source folders to find all the aidl to compile
116 // add all the source folders as import in case an aidl file in a source folder
ApkBuilderTask.java 290 // now go through the list of jar folders.
293 // it's ok if top level folders are missing
319 // it's ok if top level folders are missing
  /external/jsr305/ri/nbproject/
project.xml 12 <folders>
30 </folders>
  /packages/apps/Email/src/com/android/exchange/adapter/
PingParser.java 30 * If there are folders with changes, add the serverId of those folders to the syncList array.
  /development/samples/NotePad/
_index.html 8 <li>Creating <a href="../../../reference/android/provider/LiveFolders.html">Live Folders</a></li>
  /development/tools/findunused/
findunusedstrings 8 folder option causes only that app folder to be scanned, default is to scan all folders onder apps/
findunusedresources 10 folder option causes only that app folder to be scanned, default is to scan all folders onder apps/
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
Resource.java 22 * Base class for file system resource items (Folders, Files).
ProjectResources.java 157 // get the list of folders for the resource type.
171 // The easiest way is to touch one of the other folders of the same type.
242 // could be created from multiple folders, even for the folders that only create
251 List<ResourceFolder> folders = mFolderMap.get(folderType); local
252 if (folders != null) {
253 for (ResourceFolder folder : folders) {
344 // get the folders for the given type
345 List<ResourceFolder> folders = mFolderMap.get(type); local
347 // look for folders containing a file with the given name
750 List<ResourceFolder> folders = mFolderMap.get(folderType); local
795 List<ResourceFolder> folders = mFolderMap.get(folderType); local
    [all...]
FolderTypeRelationship.java 158 Set<ResourceFolderType> folders = folderToTypeMap.keySet(); local
159 for (ResourceFolderType folder : folders) {
  /packages/apps/Email/res/menu/
message_list_option.xml 36 <item android:id="@+id/folders"
  /packages/apps/Email/src/com/android/email/activity/
UpgradeAccounts.java 462 * 1 (account) + # folders + # messages + # attachments
469 Folder[] folders = store.getPersonalNamespaces(); local
470 estimate += folders.length;
471 for (int i = 0; i < folders.length; i++) {
472 Folder folder = folders[i];
503 Folder[] folders = store.getPersonalNamespaces(); local
504 for (Folder folder : folders) {
515 // for all other folders, delete the folder (and its messages & attachments)
572 // copy the folders, making a set of them as we go, and recording a few that we
581 Folder[] folders = store.getPersonalNamespaces() local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Folder.java 30 * Identifiers of "special" folders.
38 OUTBOX, // Local folders only - not used in remote Stores
88 * Reports if the Store is able to create folders of the given type.
185 * This is not abstract because most folders do not require this functionality and do not
  /development/build/tools/
patch_windows_sdk.sh 6 # platform-dependent folders and files.
98 # need to rm these folders since a Mac SDK will have them and it might create a conflict
102 # now create fresh folders for JetCreator
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 83 const char* folders[] = { local
108 COMPILE_ASSERT(arraysize(folders) == disk_cache::MAX_CRASH, sync_folders);
111 *full_path = path.AppendASCII(folders[action]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
MatchingStrategy.java 41 // get the IFile object and check it's in one of the layout folders.
  /development/pdk/docs/source/
overview-1.5.jd 107 <li>Live folders
123 <li>APIs for populating live folders with custom content
  /frameworks/base/docs/html/sdk/
android-1.5-highlights.jd 70 <li>Live folders</li>
152 <li>APIs for populating {@link android.provider.LiveFolders Live Folders}
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java 139 mDb.execSQL("DROP TABLE IF EXISTS folders");
140 mDb.execSQL("CREATE TABLE folders (id INTEGER PRIMARY KEY, name TEXT, "
256 + "BEFORE DELETE ON folders "
317 ArrayList<Folder> folders = new ArrayList<Folder>(); local
320 cursor = mDb.rawQuery("SELECT name FROM folders", null);
322 folders.add(new LocalFolder(cursor.getString(0)));
330 return folders.toArray(new Folder[] {});
450 * Set the visible limit for all folders in a given store.
452 * @param visibleLimit the value to write to all folders. -1 may also be used as a marker.
458 mDb.update("folders", cv, null, null)
    [all...]
  /packages/apps/Launcher2/res/values/
strings.xml 47 <!-- Folders -->
68 <!-- Options in "Add to Home" dialog box; Title of the group containing the list of all live folders -->
69 <string name="group_live_folders">Folders</string>
  /external/chromium/third_party/icu/source/test/perf/
README 20 There are 3 folders in here: collation, conversion, and udr.
  /external/icu4c/test/perf/
README 20 There are 3 folders in here: collation, conversion, and udr.

Completed in 1685 milliseconds

1 2 3 4 5 6