HomeSort by relevance Sort by last modified time
    Searched refs:application (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /development/pdk/hosting/
pdk.py 31 application = webapp.WSGIApplication([('/', MainPage)], debug=True) variable
34 run_wsgi_app(application)
51 # To upload this application:
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
app.yaml 6 application: INSERT APPLICATION NAME HERE
  /external/webkit/Tools/RebaselineQueueServer/
main.py 41 application = webapp.WSGIApplication([
53 util.run_wsgi_app(application)
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ChangeNotifier.java 31 public ChangeNotifier(MediaSet set, Uri uri, GalleryApp application) {
33 application.getDataManager().registerChangeNotifier(uri, this);
ComboSource.java 27 public ComboSource(GalleryApp application) {
29 mApplication = application;
FilterSource.java 28 public FilterSource(GalleryApp application) {
30 mApplication = application;
LocalAlbum.java 54 public LocalAlbum(Path path, GalleryApp application, int bucketId,
57 mApplication = application;
58 mResolver = application.getContentResolver();
79 mNotifier = new ChangeNotifier(this, mBaseUri, application);
82 public LocalAlbum(Path path, GalleryApp application, int bucketId,
84 this(path, application, bucketId, isImage,
85 LocalAlbumSet.getBucketName(application.getContentResolver(),
136 GalleryApp application, boolean isImage, ArrayList<Integer> ids) {
157 ContentResolver resolver = application.getContentResolver();
158 DataManager dataManager = application.getDataManager()
    [all...]
MtpDevice.java 44 public MtpDevice(Path path, GalleryApp application, int deviceId,
47 mApplication = application;
50 mDataManager = application.getDataManager();
53 mNotifier = new ChangeNotifier(this, Uri.parse("mtp://"), application);
58 public MtpDevice(Path path, GalleryApp application, int deviceId,
60 this(path, application, deviceId,
MtpDeviceSet.java 41 public MtpDeviceSet(Path path, GalleryApp application, MtpContext mtpContext) {
43 mApplication = application;
44 mNotifier = new ChangeNotifier(this, Uri.parse("mtp://"), application);
46 mName = application.getResources().getString(R.string.set_label_mtp_devices);
ClusterSource.java 37 public ClusterSource(GalleryApp application) {
39 mApplication = application;
ComboAlbumSet.java 31 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) {
37 mName = application.getResources().getString(
MtpSource.java 32 public MtpSource(GalleryApp application) {
34 mApplication = application;
  /external/webkit/Tools/TestResultServer/
main.py 51 application = webapp.WSGIApplication(routes, debug=True) variable
55 run_wsgi_app(application)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiElementNodeTest.java 48 mAppDesc = new ElementDescriptor("application", new ElementDescriptor[] {
86 * We declared the descriptors as having a "mandatory last" application element
88 * UiModel, we should get these two created, with the application element after
104 new MockXmlNode(null /* namespace */, "application", Node.ELEMENT_NODE, null)
110 // before application since it's a mandatory-last so it "moves" to the end if possible.
135 new MockXmlNode(null /* namespace */, "application", Node.ELEMENT_NODE, null)
144 // get /manifest/application
146 UiElementNode application = ui_child_it.next(); local
147 assertEquals("application", application.getDescriptor().getXmlName())
168 UiElementNode application = ui_child_it.next(); local
213 UiElementNode application = ui_child_it.next(); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
pathutils.h 128 inline void SetApplicationName(const std::string& application) {
129 Filesystem::SetApplicationName(application);
134 inline void GetApplicationName(std::string* application) {
135 Filesystem::GetApplicationName(application);
fileutils.h 237 // Returns the path to the running application.
242 // Get a folder that is unique to the current application, which is suitable
247 // Get a temporary folder that is unique to the current user and application.
270 void SetApplicationName(const std::string& application) {
271 application_name_ = application;
273 void GetApplicationName(std::string* application) {
274 ASSERT(NULL != application);
275 *application = application_name_;
417 static void SetApplicationName(const std::string& application) {
418 EnsureDefaultFilesystem()->SetApplicationName(application);
    [all...]
  /frameworks/base/cmds/app_process/
app_main.cpp 4 * Starts the interpreted runtime, then starts up the application.
158 bool application = false; local
171 } else if (strcmp(arg, "--application") == 0) {
172 application = true;
197 application ? "application" : "tool");
  /frameworks/base/docs/html/resources/
resources-data.js 52 en: 'Mobile devices often have limited memory, and memory leaks can cause your application to waste this valuable resource without your knowledge. This article provides tips to help you avoid common causes of memory leaks on the Android platform.'
72 en: 'Android offers a very powerful and yet easy-to-use message type called an intent. You can use intents to turn applications into high-level libraries and make code modular and reusable. While it is nice to be able to make use of a loosely coupled API, there is no guarantee that the intent you send will be received by another application. This article describes a technique you can use to find out whether the system contains any application capable of responding to the intent you want to use.'
122 en: 'Touch screens allow users to perform gestures, such as tapping, dragging, flinging, or sliding, to perform various actions. The gestures API enables your application to recognize even complicated gestures with ease. This article explains how to integrate this API into an application.'
132 en: 'This article provides an overview of GLSurfaceView, a class that makes it easy to implement 2D or 3D OpenGL rendering inside of an Android application.'
142 en: 'Learn how to combine multiple standard UI widgets into a single high-level component, which can be reused throughout your application.'
152 en: 'Learn how to optimize application layouts as this article walks you through converting a LinearLayout into a RelativeLayout, and analyzes the resulting implications on performance.'
162 en: 'Learn about using ViewStubs inside an application\'s layout in order to inflate rarely used UI elements, without the performance implications which would otherwise be caused by using the <code>&lt;include&gt;</code> tag.'
172 en: 'Learn how to use the <code>&lt;merge&gt;</code> tag in your XML layouts in order to avoid unnecessary levels of hierarchy within an application\'s view tree.
    [all...]
  /external/apache-harmony/auth/src/test/resources/
auth.conf 3 // application 1
33 // application 7
  /external/chromium/chrome/browser/
background_application_list_model.cc 45 // Background application representation, private to the
47 class BackgroundApplicationListModel::Application
50 Application(BackgroundApplicationListModel* model,
53 virtual ~Application();
109 BackgroundApplicationListModel::Application::~Application() {
112 BackgroundApplicationListModel::Application::Application(
121 void BackgroundApplicationListModel::Application::OnImageLoaded(
131 void BackgroundApplicationListModel::Application::RequestIcon
168 Application* application = FindApplication(extension); local
215 const Application* application = FindApplication(extension); local
    [all...]
  /external/webkit/Tools/QueueStatusServer/
main.py 74 application = webapp.WSGIApplication(routes, debug=True) variable
77 run_wsgi_app(application)
  /external/mesa3d/docs/OLD/
MESA_trace.spec 32 Provides the application with means to enable and disable logging
38 The application can add comments and enable or disable tracing of GL
39 operations at any time. The data flow from the application to GL
42 Application-side implementation of these features raises namespace
70 RESOLVED: No. The application can use NewTraceMESA/EndTraceMESA
223 returned to the application on its GetError calls. If the user does not
320 flow from application to OpenGL, as well as data flow from OpenGL to
321 application, except for timing, possible print I/O. TRACE_ERRORS_BIT_MESA
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiff.pl 76 svn:mime-type = application/octet-stream
81 + application/octet-stream
92 svn:mime-type = application/octet-stream
112 svn:mime-type = application/octet-stream
117 + application/octet-stream
129 svn:mime-type = application/octet-stream
496 svn:mime-type = application/octet-stream
501 + application/octet-stream
514 svn:mime-type = application/octet-stream
535 svn:mime-type = application/octet-strea
    [all...]
  /external/webkit/LayoutTests/http/conf/
fedora-httpd.conf 413 # or images, you may want to use "application/octet-stream" instead to
656 #AddType application/x-tar .tgz
670 #AddType application/x-compress .Z
671 #AddType application/x-gzip .gz .tgz
676 AddType application/x-x509-ca-cert .crt
677 AddType application/x-pkcs7-crl .crl
868 AddType application/x-httpd-php .php
869 AddType application/x-httpd-php .bat
870 AddType application/x-httpd-php-source .phps
  /ndk/build/core/
build-local.mk 44 # If NDK_PROJECT_PATH is not defined, find the application's project
100 $(call __ndk_info,Could not find application project directory !)
107 $(call __ndk_info,Your Android application project path contains spaces: '$(NDK_PROJECT_PATH)')
112 NDK_APPLICATION_MK := $(strip $(wildcard $(NDK_PROJECT_PATH)/jni/Application.mk))
114 NDK_APPLICATION_MK := $(NDK_ROOT)/build/core/default-application.mk
122 # Fake an application named 'local'
127 include $(BUILD_SYSTEM)/add-application.mk

Completed in 828 milliseconds

1 2 3 4 5 6 7