Searched refs:object (Results 126 - 132 of 132) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java473 * same target object.
480 * Returns whether the object associated with the given filter is
636 Object object) {
644 if (array[idx] == object) {
635 remove_all_objects(ArrayMap<String, F[]> map, String name, Object object) argument
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1574 * @param object The info to wrap.
1575 * @return A wrapper for if the object is not null, null otherwise.
1577 static AccessibilityNodeInfoCompat wrapNonNullInstance(Object object) { argument
1578 if (object != null) {
1579 return new AccessibilityNodeInfoCompat(object);
2394 * <strong>Note:</strong> You must not touch the object after calling this function.
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java258 * @param what the object to be spanned over the appended text.
389 // Add span only if this object is not yet used as a span in this string
431 Object object = mSpans[i];
449 sendSpanRemoved(object, start, end);
602 * Mark the specified range of text with the specified object.
694 * Remove the specified markup object from the buffer.
707 * markup object, or -1 if it is not attached to this buffer.
729 * markup object, or -1 if it is not attached to this buffer.
751 * markup object, or 0 if it is not attached to this buffer.
1251 * @param p the Paint object tha
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h732 typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label);
733 typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
735 GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label);
736 GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h400 void GLTrace_glLabelObjectEXT(GLenum type, GLuint object, GLsizei length, const GLchar * label);
401 void GLTrace_glGetObjectLabelEXT(GLenum type, GLuint object, GLsizei bufSize, GLsizei * length, GLchar * label);
H A Dgltrace_api.cpp16315 void GLTrace_glLabelObjectEXT(GLenum type, GLuint object, GLsizei length, const GLchar * label) { argument
16327 // copy argument object
16331 arg_object->add_intvalue(object);
16348 glContext->hooks->gl.glLabelObjectEXT(type, object, length, label);
16362 void GLTrace_glGetObjectLabelEXT(GLenum type, GLuint object, GLsizei bufSize, GLsizei * length, GLchar * label) { argument
16374 // copy argument object
16378 arg_object->add_intvalue(object);
16401 glContext->hooks->gl.glGetObjectLabelEXT(type, object, bufSize, length, label);
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java550 * <p>NOTE: This object is protected by its own lock, NOT the global
920 * a reference to this object to indicate which configuration they are
921 * currently running in, so this object must be kept immutable.
1156 * Runtime CPU use collection thread. This object's lock is used to
1163 * Must acquire this object's lock when accessing it.
2425 // state *now* of the relevant activity record. The object is passed to
2790 // object attached to it so we know it couldn't have crashed; and
3478 throw new IllegalArgumentException("Bad PendingIntent object");
9214 // don't give caller the provider object, it needs
11566 * @param app object o
13299 match(Object object, ComponentName comp) argument
[all...]

Completed in 386 milliseconds

123456