Home
last modified time | relevance | path

Searched full:application (Results 1 – 25 of 6135) sorted by relevance

12345678910>>...246

/external/python/cpython3/Lib/test/
Dmime.types14 application/1d-interleaved-parityfec
15 application/3gpp-ims+xml
16 application/activemessage
17 application/andrew-inset ez
18 application/applefile
19 application/atom+xml atom
20 application/atomcat+xml atomcat
21 application/atomicmail
22 application/atomsvc+xml atomsvc
23 application/auth-policy+xml apxml
[all …]
/external/mime-support/
Dmime.types26 application/activemessage
27 application/andrew-inset ez
28 application/annodex anx
29 application/applefile
30 application/atom+xml atom
31 application/atomcat+xml atomcat
32 application/atomicmail
33 application/atomserv+xml atomsrv
34 application/batch-SMTP
35 application/bbolin lin
[all …]
/external/mesa3d/src/util/
D00-mesa-defaults.conf5 Application bugs worked around in this file:
33 <!ELEMENT device (application | engine)+>
35 <!ELEMENT application (option+)>
36 <!ATTLIST application name CDATA #REQUIRED
59 <application name="Unigine Sanctuary" executable="Sanctuary">
63 </application>
65 <application name="Unigine Tropics" executable="Tropics">
69 </application>
71 <application name="Unigine Heaven (32-bit)" executable="heaven_x86">
75 </application>
[all …]
/external/ImageMagick/www/source/
Dmime.xml20 …<mime type="application/andrew-inset" acronym="ATK" description="Andrew Toolkit" priority="100" pa…
21 …<mime type="application/illustrator" description="Adobe Illustrator document" priority="100" patte…
22 …<mime type="application/mac-binhex40" description="Macintosh BinHex-encoded file" data-type="strin…
23 … type="application/mathematica" description="Mathematica Notebook" data-type="string" offset="0" m…
24 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
25 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
26 …<mime type="application/mathematica" description="Mathematica Notebook" priority="100" pattern="*.…
27 …<mime type="application/mbox" description="mailbox file" data-type="string" offset="0" magic="From…
28 <mime type="application/octet-stream" description="unknown" priority="100" pattern="*.bin" />
29 …<mime type="application/oda" acronym="ODA" description="Office Document Architecture" priority="10…
[all …]
/external/ImageMagick/config/
Dmime.xml20 …<mime type="application/andrew-inset" acronym="ATK" description="Andrew Toolkit" priority="100" pa…
21 …<mime type="application/illustrator" description="Adobe Illustrator document" priority="100" patte…
22 …<mime type="application/mac-binhex40" description="Macintosh BinHex-encoded file" data-type="strin…
23 … type="application/mathematica" description="Mathematica Notebook" data-type="string" offset="0" m…
24 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
25 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
26 …<mime type="application/mathematica" description="Mathematica Notebook" priority="100" pattern="*.…
27 …<mime type="application/mbox" description="mailbox file" data-type="string" offset="0" magic="From…
28 <mime type="application/octet-stream" description="unknown" priority="100" pattern="*.bin" />
29 …<mime type="application/oda" acronym="ODA" description="Office Document Architecture" priority="10…
[all …]
/external/dagger2/java/dagger/android/
DAndroidInjection.java23 import android.app.Application;
41 * @throws RuntimeException if the {@link Application} doesn't implement {@link
46 Application application = activity.getApplication(); in inject() local
48 if (application instanceof HasAndroidInjector) { in inject()
49 injector = ((HasAndroidInjector) application).androidInjector(); in inject()
50 checkNotNull(injector, "%s.androidInjector() returned null", application.getClass()); in inject()
51 } else if (application instanceof HasActivityInjector) { in inject()
52 injector = ((HasActivityInjector) application).activityInjector(); in inject()
53 checkNotNull(injector, "%s.activityInjector() returned null", application.getClass()); in inject()
58 application.getClass().getCanonicalName(), in inject()
[all …]
/external/autotest/client/common_lib/
Dmagic.py155 [0L, 'leshort', '=', 1538L, 'application/x-alan-adventure-game'],
156 [0L, 'string', '=', 'TADS', 'application/x-tads-game'],
157 [0L, 'short', '=', 420L, 'application/x-executable-file'],
158 [0L, 'short', '=', 421L, 'application/x-executable-file'],
159 [0L, 'leshort', '=', 603L, 'application/x-executable-file'],
160 [0L, 'string', '=', 'Core\001', 'application/x-executable-file'],
161 [0L, 'string', '=', 'AMANDA: TAPESTART DATE', 'application/x-amanda-header'],
162 [0L, 'belong', '=', 1011L, 'application/x-executable-file'],
163 [0L, 'belong', '=', 999L, 'application/x-library-file'],
172 [0L, 'long', '=', 100554L, 'application/x-apl-workspace'],
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/internal/
DParallelUniverseCreateApplicationTest.java7 import android.app.Application;
36 … newConfigWith("<application android:name=\"org.robolectric.BogusTestApplication\"/>)"), null); in shouldThrowWhenManifestContainsBadApplicationClassName()
42 .isInstanceOf(Application.class); in shouldReturnDefaultAndroidApplicationWhenManifestDeclaresNoAppName()
48 …newConfigWith("<application android:name=\"org.robolectric.shadows.testing.TestApplication\"/>"), … in shouldReturnSpecifiedApplicationWhenManifestDeclaresAppName()
53 Application application = ApplicationProvider.getApplicationContext(); in shouldAssignThePackageNameFromTheManifest() local
55 assertThat(application.getPackageName()).isEqualTo("org.robolectric"); in shouldAssignThePackageNameFromTheManifest()
56 assertThat(application).isInstanceOf(TestApplication.class); in shouldAssignThePackageNameFromTheManifest()
62 shadowOf((Application) ApplicationProvider.getApplicationContext()) in shouldRegisterReceiversFromTheManifest()
67 "<application>" in shouldRegisterReceiversFromTheManifest()
73 + "</application>"); in shouldRegisterReceiversFromTheManifest()
[all …]
/external/python/cpython2/Lib/
Dmimetypes.py406 '.a' : 'application/octet-stream',
407 '.ai' : 'application/postscript',
414 '.bcpio' : 'application/x-bcpio',
415 '.bin' : 'application/octet-stream',
419 '.cdf' : 'application/x-cdf',
420 '.cdf' : 'application/x-netcdf',
421 '.cpio' : 'application/x-cpio',
422 '.csh' : 'application/x-csh',
425 '.dll' : 'application/octet-stream',
426 '.doc' : 'application/msword',
[all …]
/external/python/cpython3/Lib/
Dmimetypes.py414 '.js' : 'application/javascript',
415 '.mjs' : 'application/javascript',
416 '.json' : 'application/json',
417 '.webmanifest': 'application/manifest+json',
418 '.doc' : 'application/msword',
419 '.dot' : 'application/msword',
420 '.wiz' : 'application/msword',
421 '.bin' : 'application/octet-stream',
422 '.a' : 'application/octet-stream',
423 '.dll' : 'application/octet-stream',
[all …]
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/
DApplication.vcp1 # Microsoft eMbedded Visual Tools Project File - Name="Application" - Package Owner=<4>
5 # TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
6 # TARGTYPE "Win32 (WCE emulator) Application" 0xa601
8 CFG=Application - Win32 (WCE emulator) Debug
12 !MESSAGE NMAKE /f "Application.vcn".
17 !MESSAGE NMAKE /f "Application.vcn" CFG="Application - Win32 (WCE emulator) Debug"
21 !MESSAGE "Application - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
22 !MESSAGE "Application - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
23 !MESSAGE "Application - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
24 !MESSAGE "Application - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
[all …]
/external/grpc-grpc/examples/csharp/HelloworldXamarin/iOS/
DAppDelegate.cs24 // The UIApplicationDelegate for the application. This class is responsible for launching the
25 …// User Interface of the application, as well as listening (and optionally responding) to applicat…
37 … public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) in FinishedLaunching() argument
39 // Override point for customization after application launch. in FinishedLaunching()
40 // If not required for your application you can safely delete this method in FinishedLaunching()
45 public override void OnResignActivation(UIApplication application) in OnResignActivation() argument
47 // Invoked when the application is about to move from active to inactive state. in OnResignActivation()
49 … // or when the user quits the application and it begins the transition to the background state. in OnResignActivation()
53 public override void DidEnterBackground(UIApplication application) in DidEnterBackground() argument
55 …hod to release shared resources, save user data, invalidate timers and store the application state. in DidEnterBackground()
[all …]
/external/python/google-api-python-client/docs/
Doauth-installed.md16 To use OAuth 2.0 in a locally-installed application, first create application credentials for your …
18application needs to access a user's data with a Google API, your application sends the user to Go…
20 …ode to your application, either in the title bar of the browser or in the query string of an HTTP …
22 Finally, your application can use the access token to call Google APIs.
26 - When creating a client ID, you specify that your application is an Installed application. This re…
27 … obtained from the API Console are embedded in the source code of your application. In this contex…
28 - The authorization code can be returned to your application in the title bar of the browser or in …
30 ## Creating application credentials
32 All applications that use OAuth 2.0 must have credentials that identify the application to the OAut…
34 To obtain application credentials for your project, complete these steps:
[all …]
Doauth-web.md3 …ecific data with an application while keeping their usernames, passwords, and other information pr…
5 …rized web server application can access an API while the user interacts with the application or af…
13 Any application that calls Google APIs needs to enable those APIs in the API Console. To enable the…
16 1. Select the project associated with your application. Create a project if you do not have one alr…
17 1. Use the **Library** page to find each API that your application will use. Click on each API and …
21 Any application that uses OAuth 2.0 to access Google APIs must have authorization credentials that …
27 <li>Complete the form. Set the application type to <code>Web
28 application</code>. Applications that use languages and frameworks
38 endpoints</a> so that your application does not expose authorization
42 … from the API Console. Securely store the file in a location that only your application can access.
[all …]
Doauth-server.md3application and a Google service. For this scenario you need a service account, which is an accoun…
5application uses a service account when the application uses Google APIs to work with its own data…
7 …e domain can authorize an application to access user data on behalf of users in the G Suite domain…
9application for your domain, the required permissions are automatically granted to the application
13 This document describes how an application can complete the server-to-server OAuth 2.0 flow by usin…
19 Then, your application prepares to make authorized API calls by using the service account's credent…
21 Finally, your application can use the access token to call Google APIs.
27 If your application runs on Google App Engine, a service account is set up automatically when you c…
29application runs on Google Compute Engine, a service account is also set up automatically when you…
31 If your application doesn't run on Google App Engine or Google Compute Engine, you must obtain thes…
[all …]
Dauth.md3 …d. For all API calls, your application needs to be authenticated. When an API accesses a user's pr…
11 … calls do not access any private user data. Your application must authenticate itself as an applic…
13 … authenticate your application, use an [API key](api-keys.md) for your API Console project. Every …
19 … must grant your application access. Therefore, your application must be authenticated, the user m…
21 …r application requests access to user data, the request must include one or more scopes. The user …
23application access, the OAuth 2.0 authorization server provides your application with refresh and …
27application and are used to acquire tokens. They are created for your project on the [API Console]…
29 - [Web application](https://developers.google.com/accounts/docs/OAuth2WebServer) client IDs
30 - [Installed application](https://developers.google.com/accounts/docs/OAuth2InstalledApp) client IDs
/external/python/google-api-python-client/docs/dyn/
Dappengine_v1beta.apps.html114 <p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Require…
117 <p class="firstline">Gets information about an application.</p>
120 <p class="firstline">Updates the specified Application resource. You can update the following field…
123 …ecreates the required App Engine features for the specified App Engine application, for example a …
127 <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
129 …oud.google.com/appengine/docs/locations) where you want the App Engine application located.For mor…
135 { # An Application resource contains the top-level configuration of an App Engine application.
136 …"defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engin…
137 …"name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@Outpu…
138 …Google Container Registry domain used for storing managed build docker images for this application.
[all …]
Dappengine_v1.apps.html114 <p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Require…
117 <p class="firstline">Gets information about an application.</p>
120 <p class="firstline">Updates the specified Application resource. You can update the following field…
123 …ecreates the required App Engine features for the specified App Engine application, for example a …
127 <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
129 …oud.google.com/appengine/docs/locations) where you want the App Engine application located.For mor…
135 { # An Application resource contains the top-level configuration of an App Engine application.
136 …"defaultHostname": "A String", # Hostname used to reach this application, as resolved by App Engin…
137 …"name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@Outpu…
138 …Google Container Registry domain used for storing managed build docker images for this application.
[all …]
Dappengine_v1beta4.apps.html94 <p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Require…
97 <p class="firstline">Gets information about an application.</p>
100 <p class="firstline">Updates the specified Application resource. You can update the following field…
104 <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
106 …oud.google.com/appengine/docs/locations) where you want the App Engine application located.For mor…
112 { # An Application resource contains the top-level configuration of an App Engine application.
113 …"defaultHostname": "A String", # Hostname used to reach the application, as resolved by App Engine…
114 …"name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@Outpu…
115 …be used for storing files associated with this application. This bucket is associated with the app…
116 …"defaultBucket": "A String", # Google Cloud Storage bucket that can be used by this application to…
[all …]
Dappengine_v1beta5.apps.html94 <p class="firstline">Creates an App Engine application for a Google Cloud Platform project. Require…
97 <p class="firstline">Gets information about an application.</p>
100 <p class="firstline">Updates the specified Application resource. You can update the following field…
104 <pre>Creates an App Engine application for a Google Cloud Platform project. Required fields:
106 …oud.google.com/appengine/docs/locations) where you want the App Engine application located.For mor…
112 { # An Application resource contains the top-level configuration of an App Engine application.
113 …"defaultHostname": "A String", # Hostname used to reach the application, as resolved by App Engine…
114 …"name": "A String", # Full path to the Application resource in the API. Example: apps/myapp.@Outpu…
115 …be used for storing files associated with this application. This bucket is associated with the app…
116 …": "A String", # A Google Cloud Storage bucket that can be used by the application to store conten…
[all …]
Dfitness_v1.users.dataSources.html114 …device and the application that collected and/or transformed the data. It also holds useful metada…
116 …eam identifier, so that data collected by updated versions of the same application/device can stil…
118 …r. Setting the stream name is optional, but should be done whenever an application exposes two str…
134 "application": { # Information about an application which feeds sensor data into the platform.
135 …"packageName": "A String", # Package name for this application. This is used as a unique identifie…
136 …"version": "A String", # Version of the application. You should update this field whenever the app…
137application. This is required for REST clients, but we do not enforce uniqueness of this name. It …
138 "detailsUrl": "A String", # An optional URI that can be used to link back to the application.
157 …# - The application's package name or name. Package name is used when the data source was created …
159 … the stream identifier. In particular, the version of the hardware/the application isn't used. Thi…
[all …]
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/internal/
DParallelUniverse.java10 import android.app.Application;
90 RuntimeEnvironment.application = null; in setUpApplicationState()
163 // Bit of a hack... Context.createPackageContext() is called before the application is created. in setUpApplicationState()
190 Application application = createApplication(appManifest, config); in setUpApplicationState() local
191 RuntimeEnvironment.application = application; in setUpApplicationState()
194 createInstrumentation(activityThread, applicationInfo, application); in setUpApplicationState()
196 if (application != null) { in setUpApplicationState()
218 .setField(ActivityThread.class, activityThread, "mInitialApplication", application); in setUpApplicationState()
219 ShadowApplication shadowApplication = Shadow.extract(application); in setUpApplicationState()
224 ReflectionHelpers.ClassParameter.from(Context.class, application)); in setUpApplicationState()
[all …]
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D9339c173e9a4821813910b92c6caab43.00002675.honggfuzz.cov15 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
18 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
21 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
24 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
27 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D9339c173e9a4821813910b92c6caab43.00002675.honggfuzz.cov15 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
18 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
21 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
24 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
27 …^^^^^^^xt/html,application/xhtml+xml,application/xml;q=html,application/xhtml+xml,application/xml;…
/external/libchrome/base/android/java/src/org/chromium/base/
DContextUtils.java7 import android.app.Application;
19 * This class provides Android application context related utility methods.
37 * Get the Android application context.
39 * Under normal circumstances there is only one application context in a process, so it's safe
44 * Do not downcast the context returned by this method to Application (or any subclass). It may
45 * not be an Application object; it may be wrapped in a ContextWrapper. The only assumption you
53 * Initializes the java application context.
56 * before any other clients make use of the application context through this class.
58 * @param appContext The application context.
63 // started, in which case the browser process re-sets the application context. in initApplicationContext()
[all …]

12345678910>>...246