/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
manifest-expected-completion16.txt | 1 Code completion in manifest.xml for <^application android:i: 2 application : The "application" tag describes application-level components contained in the package, as well as general application attributes. 11 supports-screens : The "supports-screens" specifies the screen dimensions an application supports. 12 uses-configuration : The "uses-configuration" tag specifies a specific hardware configuration value used by the application. 13 uses-feature : The "uses-feature" tag specifies a specific feature used by the application.
|
/sdk/testapps/testProjectTest/app/ |
AndroidManifest.xml | 9 <application 12 </application>
|
/development/samples/ApiDemos/src/com/example/android/apis/ |
ApiDemosApplication.java | 19 import android.app.Application; 22 * This is an example of a {@link android.app.Application} class. This can 25 * all of these globals from across your application into one place here. 27 * In this case, we have not defined any specific work for this Application. 30 * of how to perform unit tests on an Application object. 32 public class ApiDemosApplication extends Application {
|
/external/chromium_org/chrome/installer/mini_installer/ |
mini_installer.exe.manifest | 10 <application> 11 <!--The ID below indicates application support for Windows Vista --> 13 <!--The ID below indicates application support for Windows 7 --> 15 <!--The ID below indicates application support for Windows 8 --> 17 <!--The ID below indicates application support for Windows 8.1 --> 19 </application>
|
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
p1.cpp | 13 x = sizeof(a->bitX); // expected-error {{invalid application of 'sizeof' to bit-field}} 15 x = sizeof(a->foo(), a->bitX); // expected-error {{invalid application of 'sizeof' to bit-field}} 16 x = sizeof(a->var ? a->bitX : a->bitY); // expected-error {{invalid application of 'sizeof' to bit-field}} 17 x = sizeof(a->var ? a->bitX : a->bitX); // expected-error {{invalid application of 'sizeof' to bit-field}} 18 x = sizeof(a->bitX = 3); // expected-error {{invalid application of 'sizeof' to bit-field}} 19 x = sizeof(a->bitY += 3); // expected-error {{invalid application of 'sizeof' to bit-field}}
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_ActiveEvent.3 | 3 SDL_ActiveEvent \- Application visibility event structure 23 \fBSDL_APPMOUSEFOCUS\fP if mouse focus was gained or lost, \fBSDL_APPINPUTFOCUS\fP if input focus was gained or lost, or \fBSDL_APPACTIVE\fP if the application was iconified (\fBgain\fR=0) or restored(\fBgain\fR=1)\&. 28 When the mouse leaves or enters the window area a \fBSDL_APPMOUSEFOCUS\fP type activation event occurs, if the mouse entered the window then \fBgain\fR will be 1, otherwise \fBgain\fR will be 0\&. A \fBSDL_APPINPUTFOCUS\fP type activation event occurs when the application loses or gains keyboard focus\&. This usually occurs when another application is made active\&. Finally, a \fBSDL_APPACTIVE\fP type event occurs when the application is either minimised/iconified (\fBgain\fR=0) or restored\&. 33 This event does not occur when an application window is first created\&.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
WapPushManagerParams.java | 24 * Application type activity 29 * Application type service 41 * Application ID or content type was not found in the application ID table 47 * Receiver application signature check failed 53 * Receiver application was not found
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
messages.properties | 6 NdkGdbLaunchDelegate_Action_ObtainAppAbis=Obtaining ABI's supported by the application 11 NdkGdbLaunchDelegate_Action_SyncAppToDevice=Syncing application to device 26 NdkGdbLaunchDelegate_LaunchError_ObtainingAppFolder=Error while obtaining application data folder on device 28 NdkGdbLaunchDelegate_LaunchError_ProjectHasErrors=Your project contains error(s), please fix them before running your application. 30 NdkGdbLaunchDelegate_LaunchError_UnableToDetectAppAbi=Unable to detect application ABI's 32 NdkGdbLaunchDelegate_LaunchError_VerifyIfDebugBuild=Verify if the application was built with NDK_DEBUG=1
|
/frameworks/base/docs/html/guide/components/ |
fundamentals.jd | 1 page.title=Application Fundamentals 9 <li>Android applications are composed of one or more application components (activities, 11 <li>Each component performs a different role in the overall application behavior, and each 13 <li>The manifest file must declare all components in the application and should also declare 14 all application requirements, such as the minimum version of Android required and any hardware 16 <li>Non-code application resources (images, strings, layout files, etc.) should include 24 <li><a href="#Components">Application Components</a> 32 <li><a href="#DeclaringRequirements">Declaring application requirements</a></li> 35 <li><a href="#Resources">Application Resources</a></li> 43 to be one application and is the file that Android-powered devices use to install th [all...] |
/frameworks/base/docs/html/tools/publishing/ |
publishing_overview.jd | 14 <li><a href="#publishing-prepare">Preparing Your Application for Release</a></li> 15 <li><a href="#publishing-release">Releasing Your Application to Users</a> 25 publish an Android application you perform two main tasks:</p> 28 <li>You prepare the application for release. 29 <p>During the preparation step you build a release version of your application, which users can 32 <li>You release the application to users. 34 application to users.</p> 38 <p>Usually, you release your application through an application marketplace, such as <a href="{@docRoot}distribute/index.html">Google Play</a>. 43 href="{@docRoot}tools/workflow/index.html">application development process</a> [all...] |
versioning.jd | 10 <li>Your application <em>must</em> be versioned</a></li> 11 <li>You set the version in the application's manifest file</li> 19 <li><a href="#appversioning">Setting Application Version</a></li> 20 <li><a href="#minsdkversion">Specifying Your Application's System API Requirements</a> 27 <li><a href="{@docRoot}tools/publishing/preparing.html">Preparing to Publish Your Application</a></li> 35 <p>Versioning is a critical component of your application upgrade and maintenance 39 <li>Users need to have specific information about the application version that 43 a suite — need to query the system for your application's version, to 45 <li>Services through which you will publish your application(s) may also need to 46 query your application for its version, so that they can display the version t [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/app/ |
TestApplication.java | 35 import com.jme3.app.Application; 40 * Test Application functionality, such as create, restart, destroy, etc. 46 System.out.println("Creating application.."); 47 Application app = new Application(); 48 System.out.println("Starting application in LWJGL mode.."); 52 System.out.println("Closing application.."); 57 app = new Application(); 67 System.out.println("Creating offscreen buffer application"); 68 app = new Application(); [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/ |
RobolectricTestRunnerTest.java | 11 import android.app.Application; 24 assertNotNull(Robolectric.application); 25 assertEquals(MyTestApplication.class, Robolectric.application.getClass()); 26 assertFalse(((MyTestApplication) Robolectric.application).onCreateWasCalled); 27 assertNotNull(shadowOf(Robolectric.application).getResourceLoader()); 63 TextView tv = new TextView(Robolectric.application); 76 ResourceLoader loader = Robolectric.shadowOf(Robolectric.application).getResourceLoader(); 80 loader.inflateView(Robolectric.application, R.layout.text_views, null); 95 @Override protected Application createApplication() { 100 public static class MyTestApplication extends Application { [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
System_Events_Suite.py | 1 """Suite System Events Suite: Terms and Events for controlling the System Events application 36 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem 37 """application - The System Events application """ 50 """properties - every property of the System Events application """ 66 applications = application 67 application._superclassnames = [] 73 application._privpropdict = { 78 application._privelemdict = { 96 'capp' : application, [all...] |
/frameworks/base/test-runner/src/android/test/ |
ApplicationTestCase.java | 21 import android.app.Application; 26 * This test case provides a framework in which you can test Application classes in 28 * Application, and hooks by which you can inject various dependencies and control 29 * the environment in which your Application is tested. 32 * Every Application is designed to be accessed within a specific sequence of 33 * method calls (see {@link android.app.Application} for more details). 34 * In order to support the lifecycle of a Application, this test case will make the 42 * automatically called, and it will stop & destroy your application by calling its 47 * Every Application has one inherent dependency, the {@link android.content.Context Context} in 52 * <p>If simply run your tests as-is, your Application will be injected with a fully-functiona [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ApplicationTest.java | 4 import android.app.Application; 45 Robolectric.application = new Application(); 50 assertThat(new Activity().getApplication(), sameInstance(Robolectric.application)); 51 assertThat(new Activity().getApplication().getApplicationContext(), sameInstance((Context) Robolectric.application)); 59 Application app1 = ShadowApplication.bind(new Application(), resourceLoader1); 64 Application app2 = ShadowApplication.bind(new Application(), resourceLoader2); 93 Object systemService = Robolectric.application.getSystemService(name) 100 Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithPackageName.xml")).resolveApplication(); local 106 Application application = new ApplicationResolver(newConfig("TestAndroidManifestWithAppName.xml")).resolveApplication(); local [all...] |
ShadowAutoCompleteTextViewTest.java | 24 new AutoCompleteTextView(Robolectric.application); 25 ArrayAdapter<Object> adapter = new ArrayAdapter<Object>(Robolectric.application, 0); 35 new AutoCompleteTextView(Robolectric.application); 43 new AutoCompleteTextView(Robolectric.application); 53 new AutoCompleteTextView(Robolectric.application); 63 new AutoCompleteTextView(Robolectric.application); 75 new ReplaceableAutoCompleteTextView(Robolectric.application);
|
/development/samples/TicTacToeMain/ |
_index.html | 1 <p>This sample demonstrates how an application can make use of shared code and 4 <p>In this case, the TicTacToeMain application project includes a reference to 5 the TicTacToeLib library project. When you build the TicTacToeMain application, 7 as part of the main application's <code>.apk</code> file. The main application 14 <li>The main application's <a 18 Currently, an application must declare in its manifest any components or 22 shows how a class in the main application imports and uses 30 <code>GameActivity</code>, that handles most of the application lifecycle.</p> 38 handles most of the application lifecycle and manages general game play.</li [all...] |
/frameworks/base/docs/html/google/play/licensing/ |
overview.jd | 2 parent.title=Application Licensing 29 <p>Google Play Licensing is a network-based service that lets an application query a trusted 30 Google Play licensing server to determine whether the application is licensed to the current 32 to determine whether a given user is licensed to use a given application. Google Play considers a 33 user to be licensed if the user is a recorded purchaser of the application.</p> 35 <p>The request starts when your application makes a request to a service hosted by 36 the Google Play client application. The Google Play application then sends a request to 37 the licensing server and receives the result. The Google Play application sends 38 the result to your application, which can allow or disallow further use of th [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
IDebuggerConnector.java | 25 * Is this application from a project present in the workspace? 26 * @param appName name of the application. This is typically the application's package, but 35 * The given port is tied to the application and should be used if possible. However the 37 * @param appName the name of the application. Usually the application's package but this 40 * @param selectedPort the port value for the selected application
|
/frameworks/base/docs/html/guide/topics/manifest/ |
receiver-element.jd | 19 <dd><code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code></dd> 27 subclass) as one of the application's components. Broadcast receivers enable 29 applications, even when other components of the application are not running. 48 The <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> element has its own 49 <code><a href="{@docRoot}guide/topics/manifest/application-element.html#enabled">enabled</a></code> attribute that applies to all 50 application components, including broadcast receivers. The 51 <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> an [all...] |
/frameworks/base/docs/html/guide/webapps/ |
overview.jd | 7 users in two ways: in a traditional web browser and in an Android application, by 11 <p>There are essentially two ways to deliver an application on Android: as a 12 client-side application (developed using the Android SDK and installed on user devices as an {@code 13 .apk}) or as a web application (developed using web standards and accessed through a web 16 <p>The approach you choose for your application could depend on several factors, but Android makes 17 the decision to develop a web application easier by providing:</p> 19 <li>Support for viewport properties that allow you to properly size your web application 25 <p>Thus, your decision to develop a web application for Android can exclude consideration for 29 <p>Another great feature of Android is that you don't have to build your application purely on 31 application that embeds some web pages (using a {@link android.webkit.WebView} in your Androi [all...] |
/development/samples/SpinnerTest/ |
_index.html | 2 This sample is the test application for the 5 application. 8 The test application uses the 16 The application shows how to set up a test application project, 18 file for a test application, and how to set up a test case class for a test fixture. The 24 Test setup: The <code>setUp()</code> method re-initializes the state of the application under test 29 test that the application under test is properly initialized prior to running the 37 Application control using instrumentation: The <code>testStateDestroy()</code> and <code>testStatePause()</code> 43 that links the test application with the application under test. Specifically, th [all...] |
/development/samples/Compass/ |
AndroidManifest.xml | 18 used by the system to determine how to start your application and 21 <!-- Declare the contents of this Android application. The namespace 23 supplies a unique name for the application. When writing your 24 own application, the package name must be changed from "com.example.*" 29 <!-- This package contains an application... The 'label' is the name 30 to display to the user for the overall application, and provides 33 <application android:label="@string/compass_app"> 35 <!-- An Activity in the application - this is something the user 56 </application>
|
/development/samples/HeavyWeight/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 24 <application android:label="Heavy Weight" android:cantSaveState="true"> 31 </application>
|