Searched refs:object (Results 101 - 107 of 107) sorted by relevance

12345

/frameworks/base/core/java/android/webkit/
H A DWebView.java269 * Transportation object for returning WebView across thread boundaries.
275 * Sets the WebView to the transportation object.
284 * Gets the WebView object.
286 * @return the transported WebView object
435 * Constructs a new WebView with a Context object.
437 * @param context a Context object used to access application assets
446 * @param context a Context object used to access application assets
456 * @param context a Context object used to access application assets
467 * @param context a Context object used to access application assets
490 * @param context a Context object use
1534 addJavascriptInterface(Object object, String name) argument
[all...]
H A DWebViewClassic.java757 // Native WebView pointer that is 0 until the native object has been
4122 public void addJavascriptInterface(Object object, String name) { argument
4124 if (object == null) {
4129 arg.mObject = object;
5524 // any object in this code path, we move the local variable out to be a private
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java344 * same target object.
351 * Returns whether the object associated with the given filter is
499 Object object) {
507 if (array[idx] == object) {
498 remove_all_objects(HashMap<String, F[]> map, String name, Object object) argument
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java370 // Add span only if this object is not yet used as a span in this string
412 Object object = mSpans[i];
430 sendSpanRemoved(object, start, end);
583 * Mark the specified range of text with the specified object.
692 * Remove the specified markup object from the buffer.
705 * markup object, or -1 if it is not attached to this buffer.
727 * markup object, or -1 if it is not attached to this buffer.
749 * markup object, or 0 if it is not attached to this buffer.
1278 * @param p the Paint object that is requesting this information
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h201 void GLTrace_glLabelObjectEXT(GLenum type, GLuint object, GLsizei length, const GLchar *label);
202 void GLTrace_glGetObjectLabelEXT(GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
H A Dgltrace_api.cpp7314 void GLTrace_glLabelObjectEXT(GLenum type, GLuint object, GLsizei length, const GLchar *label) { argument
7326 // copy argument object
7330 arg_object->add_intvalue(object);
7347 glContext->hooks->gl.glLabelObjectEXT(type, object, length, label);
7361 void GLTrace_glGetObjectLabelEXT(GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label) { argument
7373 // copy argument object
7377 arg_object->add_intvalue(object);
7400 glContext->hooks->gl.glGetObjectLabelEXT(type, object, bufSize, length, label);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java373 * <p>NOTE: This object is protected by its own lock, NOT the global
627 * a reference to this object to indicate which configuration they are
628 * currently running in, so this object must be kept immutable.
814 * Runtime statistics collection thread. This object's lock is used to
1956 // object attached to it so we know it couldn't have crashed; and
2515 throw new IllegalArgumentException("Bad PendingIntent object");
6403 // don't give caller the provider object, it needs
8150 * @param app object of the crashing app, null for the system server
8346 * @param app object of the crashing app, null for the system server
8376 * @param app object o
9595 match(Object object, ComponentName comp) argument
[all...]

Completed in 3036 milliseconds

12345