/frameworks/base/cmds/app_process/ |
app_main.cpp | 4 * Starts the interpreted runtime, then starts up the application. 192 bool application = false; local 205 } else if (strcmp(arg, "--application") == 0) { 206 application = true; 231 application ? "application" : "tool");
|
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 48 * application and Android's data backup infrastructure. An application that wishes 55 * <a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> 65 * When the application makes changes to data that it wishes to keep backed up, 68 * This notifies the Android Backup Manager that the application needs an opportunity 74 * there is a previously-saved data set available for the application being installed, and if so, 78 * When a backup or restore pass is run, the application's process is launched 179 * The application is being asked to write any data changed since the last 183 * is available and the application should perform a full backup. In bot [all...] |
/frameworks/base/core/java/android/content/pm/ |
ComponentInfo.java | 24 * Base class containing information common to all application components 27 * between all application components. As such, it does not itself 33 * Global information about the application/package this component is a 103 * Return whether this component and its enclosing application are enabled. 111 * the component defines an icon, that is used; else, the application 122 * the component defines a logo, that is used; else, the application
|
/frameworks/base/core/java/android/webkit/ |
CookieManager.java | 22 * Manages the cookies used by an application's {@link WebView} instances. 39 * before the application instantiates a {@link WebView} instance, 50 * Sets whether the application's {@link WebView} instances should send and 61 * Gets whether the application's {@link WebView} instances send and accept 172 * Gets whether the application's {@link WebView} instances send and accept 193 * Sets whether the application's {@link WebView} instances should send and
|
/frameworks/base/docs/html/about/versions/ |
android-1.5-highlights.jd | 26 <li>Accelerometer-based application rotations</li> 39 <li>Application management</li> 117 <li>SIM Application Toolkit 1.0 </li> 177 <li>Application-defined hardware requirements 181 they require in order to function properly. For example, an application might 183 navigation device, such as a trackball. Prior to installing the application, the
|
/frameworks/base/docs/html/guide/faq/ |
troubleshooting.jd | 12 <li><a href="#noapp">My new application/activity isn't showing up in the device application 17 attribute" error when I start an application</a></li> 19 a notification, send an intent to an Android application</em>) is being 72 <a name="noapp"></a><h2>My new application/activity isn't showing up in the 77 new application with a new AndroidManifest.xml file.</li> 83 will often not be caught by compilers, but will prevent your application 89 application is being installed and recognized properly. Here's sample output 108 when I start an application (but I declare a layout_wilih attribute <em>right 119 receive a notification, send an intent to an Android application</em>) is bein [all...] |
/frameworks/base/docs/html/guide/topics/connectivity/usb/ |
host.jd | 117 <p>The following list describes what you need to add to your application's manifest file before 122 include a <code><uses-feature></code> element that declares that your application uses 125 <li>Set the minimum SDK of the application to API Level 12 or higher. The USB host APIs are not 128 <li>If you want your application to be notified of an attached USB device, specify an 140 if your application requires it:</p> 169 <application> 179 </application> 197 whether your application is interested in the connected device. If so, you can set up 198 communication with the device if desired. To do this, your application has to:</p> 212 <p>Your application can discover USB devices by either using an intent filter to be notified whe [all...] |
/frameworks/base/docs/html/guide/topics/ui/ |
themes.jd | 19 <li><a href="#ApplyATheme">Apply a theme to an Activity or application</a></li> 67 application, rather than an individual {@link android.view.View} (as in the example above). When a 68 style is applied as a theme, every View in the Activity or application will apply each style 103 <p>Each child of the {@code <resources>} element is converted into an application resource 112 <p>Remember, a style that you want to use as an Activity or application theme is defined in XML 114 style for a single View or as a theme for an entire Activity or application. How to apply a style 115 for a single View or as an application theme is discussed later.</p> 220 For example, style properties for a theme can hide the application title, hide the status bar, 225 a theme to an Activity or application. See the next section for information about applying a 240 <li>Or, to an entire Activity or application, by adding the <code>android:theme</code [all...] |
/frameworks/base/docs/html/guide/webapps/ |
webview.jd | 8 <li>Use {@link android.webkit.WebView} to display web pages in your Android application 15 <li><a href="#AddingWebView">Adding a WebView to Your Application</a></li> 39 <p>If you want to deliver a web application (or just a web page) as a part of a client application, 47 provide information in your application that you might need to update, such as an end-user agreement 48 or a user guide. Within your Android application, you can create an {@link android.app.Activity} 52 <p>Another scenario in which {@link android.webkit.WebView} can help is if your application provides 55 find that it's easier to build a {@link android.webkit.WebView} in your Android application that 59 and then implement a {@link android.webkit.WebView} in your Android application that loads the web 64 client-side code in your Android application.</p [all...] |
/frameworks/base/docs/html/tools/help/ |
jobb.jd | 7 application using {@link android.os.storage.StorageManager} on devices with Android 2.3 (API 9 (such as graphics, sounds and video), separate from an application's APK file. For more 60 <td>Specify the package name for the application that mounts the OBB file, which corresponds 61 to the {@code package} value specified in your application's manifest. This parameter is 66 <td>Set the minimum version for the application that can mount the OBB file, which corresponds 67 to the {@code android:versionCode} value in your application's manifest. This parameter is
|
/frameworks/base/docs/html/training/camera/ |
videobasics.jd | 45 <p>Your application has a job to do, and integrating videos is only a small 47 camcorder. Happily, most Android-powered devices already have a camera application that 54 <p>To advertise that your application depends on having a camera, put a 64 <p>If your application uses, but does not require a camera in order to function, add {@code 66 camera to download your application. It's then your responsibility to check for the availability 107 <p>The Android Camera application returns the video in the {@link android.content.Intent} delivered
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
index.jd | 30 and avoids exceeding your application memory limit. If you're not careful, bitmaps can quickly 31 consume your available memory budget leading to an application crash due to the dreaded 34 <p>There are a number of reasons why loading bitmaps in your Android application is tricky:</p> 38 as 16MB of memory available to a single application. The <a 41 application memory for various screen sizes and densities. Applications should be optimized to 60 <dd>This lesson walks you through decoding large bitmaps without exceeding the per application
|
/frameworks/base/services/java/com/android/server/am/ |
EventLogTags.logtags | 30 # Application Not Responding 34 # Application process bound to work 36 # Application process died 42 # Application process has been started 44 # An application process has been marked as bad 46 # An application process that was bad is now marked as good
|
/libcore/support/src/test/java/tests/util/ |
ClassLoaderBuilder.java | 30 * private copy of a class in addition to the copy in the application class 46 * the constructed class loader and the application class loader. 72 * The bridge class loader is a child of the application class loader. 74 * the application class loader (which has a copy of everything) and 78 * uses the same classpath as the application class loader. It loads 120 * Returns a path containing the application's classes. When running in the
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
IconCache.java | 34 * Cache of application icons. Icons can be made from any thread. 150 * Fill in "application" with the icon and label for "info." 152 public void getTitleAndIcon(ApplicationInfo application, ResolveInfo info, 155 CacheEntry entry = cacheLocked(application.componentName, info, labelCache); 157 application.title = entry.title; 158 application.iconBitmap = entry.icon;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesapp.h | 49 static NCursesApplication* theApp; // Global ref. to the application 56 bool b_Colors; // Is this a color application? 86 // be the exit value of your application. 110 // Get a pointer to the current application object 115 // This method runs the application and returns its exit value 123 // Does this application use colors?
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesapp.h | 49 static NCursesApplication* theApp; // Global ref. to the application 56 bool b_Colors; // Is this a color application? 86 // be the exit value of your application. 110 // Get a pointer to the current application object 115 // This method runs the application and returns its exit value 123 // Does this application use colors?
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesapp.h | 49 static NCursesApplication* theApp; // Global ref. to the application 56 bool b_Colors; // Is this a color application? 86 // be the exit value of your application. 110 // Get a pointer to the current application object 115 // This method runs the application and returns its exit value 123 // Does this application use colors?
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
__init__.py | 117 getbaseclasses(application) 123 getbaseclasses(application) 192 'capp' : application, 198 'capp' : application, 236 _elemdict = application._elemdict 237 _propdict = application._propdict
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 5 or debugging an application. It has not been reviewed for security issues, 44 application = None variable in class:WSGIServer 62 return self.application 64 def set_app(self,application): 65 self.application = application
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 5 or debugging an application. It has not been reviewed for security issues, 44 application = None variable in class:WSGIServer 62 return self.application 64 def set_app(self,application): 65 self.application = application
|
/external/jmdns/src/javax/jmdns/impl/ |
ServiceInfoImpl.java | 190 this._application = map.get(Fields.Application); 251 String application = aType; local 261 application = ""; 266 application = ""; 292 application = casePreservedType.substring(0, index - 1); 294 index = application.toLowerCase().indexOf("._sub"); 297 subtype = removeSeparators(application.substring(0, index)); 298 application = application.substring(start); 305 qualifiedNameMap.put(Fields.Application, removeSeparators(application)) 330 String application = (qualifiedNameMap.containsKey(Fields.Application) ? qualifiedNameMap.get(Fields.Application) : ""); local 379 String application = this.getApplication(); local 429 String application = this.getApplication(); local [all...] |
/frameworks/base/docs/html/guide/topics/media/jet/ |
jetcreator_manual.jd | 6 <p>Content Authoring Application for the JET Interactive Music Engine</p> 14 for the SONiVOX JET Creator, an authoring application for creating and 26 as inherent in the JET Creator application. As such, the JET content author can 28 and the final Android application playing back on Android mobile devices.</p> 35 (.jet) file that the Android application will use. The second functionality 37 in the Android application.</p> 40 <p>The JET Creator application is written in 51 application:</p> 135 application. It also describes how JET can be used to save memory in small 218 application calls the JET clip function, the next clip in the track is allowe [all...] |
/external/chromium_org/webkit/browser/appcache/ |
appcache_host.cc | 97 // 6.9.6 The application cache selection algorithm. 134 // to the user that it was ignored, to aid in application development. 212 // 6.9.8 Application cache API 244 // 6.9.8 Application cache API 311 // 6.9.8 Application cache API 317 // during the application cache update process. 365 // 6.9.6 The application cache selection algorithm 367 // If document was loaded from an application cache, Associate document 368 // with the application cache from which it was loaded. Invoke the 369 // application cache update process for that cache and with the browsin [all...] |
/frameworks/base/core/java/android/app/ |
ApplicationErrorReport.java | 37 * Describes an application error. 42 * <li> {@link #TYPE_CRASH} application crash. Information about the crash 44 * <li> {@link #TYPE_ANR} application not responding. Information about the 46 * <li> {@link #TYPE_BATTERY} user reported application is using too much 48 * <li> {@link #TYPE_RUNNING_SERVICE} user reported application is leaving an 67 * An error report about an application crash. 72 * An error report about an application that's not responding. 77 * An error report about an application that's consuming too much battery. 95 * Package name of the application. 100 * Package name of the application which installed the application thi [all...] |