HomeSort by relevance Sort by last modified time
    Searched refs:application (Results 26 - 50 of 92) sorted by null

12 3 4

  /packages/apps/Email/tests/src/com/android/email/activity/
MessageViewTests.java 23 import android.app.Application;
184 private MockMessagingController(Application application) {
185 super(application);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 34 InstrValidator_NoTestLibMsg_s=The application does not declare uses-library %1$s
  /sdk/eclipse/scripts/
build_plugins.sh 193 -application org.eclipse.ant.core.antRunner \
_mk_icons.sh 24 icon A blue application
  /external/v8/tools/
profile_view.js 95 * @param {number} totalTime Amount of time that application spent in the
98 * @param {number} selfTime Amount of time that application spent in the
157 * @param {number} totalTime Amount of time that application spent in the
160 * @param {number} selfTime Amount of time that application spent in the
177 * Returns a share of the function's total time in application's total time.
186 * Returns a share of the function's self time in application's total time.
  /development/samples/Home/src/com/example/android/home/
Home.java 501 ApplicationInfo application = new ApplicationInfo(); local
504 application.title = info.loadLabel(manager);
505 application.setActivity(new ComponentName(
510 application.icon = info.activityInfo.loadIcon(manager);
512 mApplications.add(application);
620 convertView = inflater.inflate(R.layout.application, parent, false);
721 * Starts the selected activity/application in the grid view.
732 * by calling Drawable.setBounds(). In this application, the View that draws the
  /prebuilt/common/osgi/
osgi.jar 
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 260 application = webapp.WSGIApplication(
270 wsgiref.handlers.CGIHandler().run(application)
  /development/scripts/app_engine_server/gae_shell/
shell.py 301 application = webapp.WSGIApplication(
304 wsgiref.handlers.CGIHandler().run(application)
  /ndk/build/core/
add-application.mk 16 # this script is used to record an application definition in the
20 # variable named '_application_mk' which points to a given Application.mk
22 # to describe the application to the build system, and the rest of the
93 $(call ndk_log,Application $(_name) targets unknown platform '$(_bad_platform)')
102 $(call __ndk_info,Application $(_name) targets unknown ABI '$(_bad_abis)')
132 # Determine whether the application should be debuggable.
141 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
143 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
155 $(call ndk_log,Application '$(_app)' *is* debuggable)
157 $(call ndk_log,Application '$(_app)' is not debuggable
    [all...]
check-cygwin-make.mk 18 # For some reason, a lot of application developers on Windows
setup-abi.mk 19 $(call ndk_log,Building application '$(NDK_APP_NAME)' for ABI '$(TARGET_ARCH_ABI)')
  /packages/apps/Email/
Android.mk 34 # application. This configuration line selects which packages will be analyzed,
  /frameworks/base/services/java/com/android/server/
InputManager.java 78 private static native void nativeSetFocusedApplication(InputApplication application);
263 * Injects an input event into the event system on behalf of an application.
279 * @param injectorPid The pid of the injecting application.
280 * @param injectorUid The uid of the injecting application.
321 public void setFocusedApplication(InputApplication application) {
322 nativeSetFocusedApplication(application);
  /external/clearsilver/ports/rpm/
clearsilver.spec 80 separation between presentation code and application logic which makes
  /frameworks/base/libs/ui/
InputDispatcher.cpp 57 // Default input dispatching timeout if there is no focused application or paused window
63 // when an application takes too long to respond and the user has pressed an app switch key.
797 // dispatched to change before the application finally consumed them.
845 const EventEntry* entry, const InputApplication* application, const InputWindow* window,
847 if (application == NULL && window == NULL) {
860 LOGD("Waiting for application to become ready for input: %s",
861 getApplicationWindowLabelLocked(application, window).string());
864 application ? application->dispatchingTimeout : DEFAULT_INPUT_DISPATCHING_TIMEOUT;
878 onANRLocked(currentTime, application, window, entry->eventTime, mInputTargetWaitStartTime)
    [all...]
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 65 access application resources, and more, when programming in C or C++. If you write
67 inside of a virtual machine on the device. The fundamental Android application model
71 but always increases application complexity. If you have not run into any limitations
  /external/qemu/distrib/sdl-1.2.12/src/main/macosx/
SDLMain.m 49 /* Determine the application name */
81 /* The main class of the application, the application's delegate */
164 /* Tell the application object that this is now the application menu */
191 /* Tell the application object that this is now the window menu */
205 /* Ensure the application object is initialised */
253 - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename
300 /* Hand off to main application code */
378 * application that creates a Menu bar and steals the focus
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 682 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
683 if (application != NULL) {
684 addTagAttribute(application, RESOURCES_ANDROID_NAMESPACE, "debuggable", "true");
702 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); local
703 if (application != NULL) {
704 fullyQualifyClassName(origPackage, application, String16("name"));
705 fullyQualifyClassName(origPackage, application, String16("backupAgent"));
707 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren())
    [all...]
  /external/e2fsprogs/lib/blkid/
tag.c 269 * performance for this application. [tytso:20030125.2007EST]
  /external/webkit/WebCore/inspector/front-end/
ResourceView.js 222 if (requestContentType && requestContentType.match(/^application\/x-www-form-urlencoded\s*(;.*)?$/i))
  /frameworks/base/core/java/android/app/
Activity.java 105 * <p>The Activity class is an important part of an application's overall lifecycle,
107 * part of the platform's application model. For a detailed perspective on the structure of
109 * <a href="{@docRoot}guide/topics/fundamentals.html">Application Fundamentals</a>.</p>
359 * <p>This is done because any application resource,
491 * preferences that are shared across multiple application components
496 * (Note that it is not possible to share settings data across application
545 * <p>The Android system attempts to keep application process around for as
575 * application components (such as {@link Service} or
585 * application that allows you to upload a picture to a web site. The upload
586 * may take a long time, and the application should allow the user to leav
    [all...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 246 * @param context the application context
266 * @param context the application context
280 * @param context the application context
336 * @param context the application context
346 * @param context the application context
  /frameworks/base/include/ui/
InputDispatcher.h 50 * into the application with input focus. */
85 /* This flag indicates that the event is being delivered to a foreground application. */
236 * An input application describes properties of an application that can receive input.
263 /* Notifies the system that an application is not responding.
315 /* Checks whether a given application pid/uid has permission to inject input events
378 /* Sets the focused application.
    [all...]
  /frameworks/base/services/jni/
com_android_server_InputManager.cpp 792 LOGE("Could not create weak reference for application token.");
809 InputApplication application; local
810 application.name = name;
811 application.dispatchingTimeout = dispatchingTimeoutNanos;
812 application.handle = new ApplicationToken(tokenObjWeak);
813 mInputManager->getDispatcher()->setFocusedApplication(& application);
    [all...]

Completed in 7134 milliseconds

12 3 4