/development/pdk/hosting/ |
pdk.py | 31 application = webapp.WSGIApplication([('/', MainPage)], debug=True) variable 34 run_wsgi_app(application) 51 # To upload this application:
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
UiElementNodeTest.java | 37 new ElementDescriptor("application", new ElementDescriptor[] { 84 new MockXmlNode(null /* namespace */, "application", Node.ELEMENT_NODE, null) 93 // get /manifest/application 95 UiElementNode application = ui_child_it.next(); local 96 assertEquals("application", application.getDescriptor().getXmlName()); 97 assertEquals(0, application.getUiChildren().size()); 98 assertEquals(0, application.getUiAttributes().size()); 105 new MockXmlNode(null /* namespace */, "application", Node.ELEMENT_NODE, null), 115 // get /manifest/application 117 UiElementNode application = ui_child_it.next(); local 160 UiElementNode application = ui_child_it.next(); local [all...] |
/external/webkit/WebKitTools/QueueStatusServer/ |
main.py | 59 application = webapp.WSGIApplication(routes, debug=True) variable 62 run_wsgi_app(application)
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IccCardStatus.java | 126 public void addApplication(IccCardApplication application) { 127 mApplications.add(application);
|
/packages/apps/Calendar/ |
Android.mk | 8 # TODO: Remove dependency of application on the test runner (android.test.runner)
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
IconCache.java | 30 * Cache of application icons. Icons can be made from any thread. 87 * Fill in "application" with the icon and label for "info." 89 public void getTitleAndIcon(ApplicationInfo application, ResolveInfo info) { 91 CacheEntry entry = cacheLocked(application.componentName, info); 96 application.title = entry.title; 97 application.titleBitmap = entry.titleBitmap; 98 application.iconBitmap = entry.icon;
|
/external/webkit/LayoutTests/http/conf/ |
fedora-httpd.conf | 407 # or images, you may want to use "application/octet-stream" instead to 650 #AddType application/x-tar .tgz 664 #AddType application/x-compress .Z 665 #AddType application/x-gzip .gz .tgz 670 AddType application/x-x509-ca-cert .crt 671 AddType application/x-pkcs7-crl .crl 862 AddType application/x-httpd-php .php 863 AddType application/x-httpd-php .bat 864 AddType application/x-httpd-php-source .phps
|
apache2-debian-httpd.conf | 361 # or images, you may want to use "application/octet-stream" instead to 525 AddType application/x-tar .tgz 539 #AddType application/x-compress .Z 540 #AddType application/x-gzip .gz .tgz 657 AddType application/x-httpd-php .php 658 AddType application/x-httpd-php .bat 659 AddType application/x-httpd-php-source .phps
|
apache2-httpd.conf | 386 # or images, you may want to use "application/octet-stream" instead to 550 AddType application/x-tar .tgz 564 #AddType application/x-compress .Z 565 #AddType application/x-gzip .gz .tgz 682 AddType application/x-httpd-php .php 683 AddType application/x-httpd-php .bat 684 AddType application/x-httpd-php-source .phps
|
cygwin-httpd.conf | 420 # or images, you may want to use "application/octet-stream" instead to 584 AddType application/x-tar .tgz 598 #AddType application/x-compress .Z 599 #AddType application/x-gzip .gz .tgz 716 AddType application/x-httpd-php .php 717 AddType application/x-httpd-php .bat 718 AddType application/x-httpd-php-source .phps
|
httpd.conf | 423 # or images, you may want to use "application/octet-stream" instead to 587 AddType application/x-tar .tgz 601 #AddType application/x-compress .Z 602 #AddType application/x-gzip .gz .tgz 719 AddType application/x-httpd-php .php 720 AddType application/x-httpd-php .bat 721 AddType application/x-httpd-php-source .phps
|
/ndk/build/core/ |
build-local.mk | 43 # If NDK_PROJECT_PATH is not defined, find the application's project 83 $(call __ndk_info,Could not find application project directory !) 90 $(call __ndk_info,Your Android application project path contains spaces: '$(NDK_PROJECT_PATH)') 95 NDK_APPLICATION_MK := $(strip $(wildcard $(NDK_PROJECT_PATH)/jni/Application.mk)) 97 NDK_APPLICATION_MK := $(NDK_ROOT)/build/core/default-application.mk 105 # Fake an application named 'local' 110 include $(BUILD_SYSTEM)/add-application.mk
|
main.mk | 43 # Read all application configuration files 45 # Each 'application' must have a corresponding Application.mk file 68 You can also add new applications by writing an Application.mk file.) 70 See docs/APPLICATION-MK.TXT for details.) 84 # Check that all apps listed in APP have an Application.mk 87 $(eval _application_mk := $(strip $(wildcard $(NDK_ROOT)/apps/$(_app)/Application.mk))) \ 90 $(eval include $(BUILD_SYSTEM)/add-application.mk)\ 93 Missing file: apps/$(_app)/Application.mk !)\ 103 The NDK could not find a proper application description under apps/*/Application.mk [all...] |
setup-app.mk | 31 NDK_APP_APPLICATION_MK := $(call get,$(_map),Application.mk) 37 # make the application depend on the modules it requires 52 # check the target ABIs for this application 55 $(call __ndk_info,NDK Application '$(_app)' targets unknown ABI(s): $(_bad_abis)) 60 # Clear all installed binaries for this application
|
/development/ide/xcode/ports/ |
skia_mac.cp | 21 // argv[0] is set to the execution path of the application, e.g. 28 // {client}/device/build/ide/xcode/{application} 57 // CreateNibReference only searches into the application bundle.
|
/external/icu4c/samples/ |
readme.txt | 19 legacy - demonstrates using two versions of ICU in one application 37 ufortune - demonstrates packaging and use of resources in an application 49 - The "uconv" utility is a full-featured command line application.
|
/external/skia/xcode/ports/ |
skia_mac.cp | 22 // argv[0] is set to the execution path of the application, e.g. 29 // {client}/device/build/ide/xcode/{application} 58 // CreateNibReference only searches into the application bundle.
|
/external/blktrace/ |
btrace.spec | 27 performance or application problems relating to block layer io.
|
/frameworks/base/core/java/android/app/ |
Service.java | 34 * A Service is an application component representing either an application's desire 44 * <p>Note that services, like other application objects, run in the main 49 * <a href="{@docRoot}guide/topics/fundamentals.html#procthread">Application Fundamentals: 55 * <a href="{@docRoot}guide/topics/fundamentals.html#lcycles">application's overall lifecycle</a>.</p> 76 * it runs in the same process as the application it is part of. 78 * of the main thread (to avoid Application Not Responding errors). 84 * <li>A facility for the application to tell the system <em>about</em> 86 * directly interacting with the application). This corresponds to calls to 90 * <li>A facility for an application to expose some of its functionality t [all...] |
/frameworks/base/test-runner/src/android/test/ |
ServiceTestCase.java | 19 import android.app.Application; 76 * associated {@link android.app.Application Application}. The ServiceTestCase framework 98 private Application mApplication; 142 * (Context, Application) to it. This is called automatically by {@link #startService} or 209 * object refers to a communication channel between the application and 218 * method. An example of this is in the ApiDemos sample application, in the 290 * Sets the application that is used during the test. If you do not call this method, 293 * @param application The Application object that is used by the service under test [all...] |
ActivityUnitTestCase.java | 20 import android.app.Application; 80 private Application mApplication; 179 * Set the application for use during the test. You must call this function before calling 181 * @param application The Application object that will be injected into the Activity under test. 183 public void setApplication(Application application) { 184 mApplication = application;
|
/packages/providers/ContactsProvider/ |
Android.mk | 16 # application. This configuration line selects which packages will be analyzed,
|
/development/samples/BrowserPlugin/ |
Android.mk | 18 # Build application
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
main.py | 20 This script is designed to be run directly as a WSGI application. 163 application = webapp.WSGIApplication( 170 wsgiref.handlers.CGIHandler().run(application)
|
/frameworks/base/tests/BrowserTestPlugin/ |
Android.mk | 18 # Build application
|