HomeSort by relevance Sort by last modified time
    Searched refs:attachments (Results 51 - 75 of 190) sorted by null

1 23 4 5 6 7 8

  /frameworks/base/opengl/java/android/opengl/
GLES30.java     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 106 void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
107 void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModuleSource.js 477 var attachments = TypeUtils.cloneObject(this._attachments);
478 return new ReplayableCall(thisObject, this._functionName, args, result, this._stackTrace, attachments);
513 var attachments = replayableCall.attachments();
514 if (attachments)
515 this._attachments = TypeUtils.cloneObject(attachments);
527 * @param {Object.<string, Object>} attachments
529 function ReplayableCall(thisObject, functionName, args, result, stackTrace, attachments)
536 if (attachments)
537 this._attachments = attachments;
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES30.cpp 4812 GLenum *attachments = (GLenum *) 0; local
4854 GLenum *attachments = (GLenum *) 0; local
4880 GLenum *attachments = (GLenum *) 0; local
4926 GLenum *attachments = (GLenum *) 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fbobject.c 213 /* Only OpenGL ES 1.x forbids color attachments other than
238 * As above, but only used for getting attachments of the default /
856 fbo_incomplete("no attachments", -1);
    [all...]
  /external/mesa3d/src/mesa/main/
fbobject.c 213 /* Only OpenGL ES 1.x forbids color attachments other than
238 * As above, but only used for getting attachments of the default /
856 fbo_incomplete("no attachments", -1);
    [all...]
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 351 const GLenum attachments[] = { GL_COLOR_ATTACHMENT0 }; local
352 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 158 * Copy attachments from MimeMessage to provider Message.
161 * @param localMessage the attachments will be built against this message
162 * @param attachments the attachments to add
166 ArrayList<Part> attachments) throws MessagingException, IOException {
168 for (Part attachmentPart : attachments) {
176 * This will skip adding attachments if they are already found in the attachments table.
177 * The heuristic for this will fail (false-positive) if two identical attachments are
179 * TODO: Fix that, by (elsewhere) simulating an mLocation value based on the attachments
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
dri2_glx.c 510 /* Check we have the right attachments */
712 /* Check we have the right attachments */
753 unsigned int *attachments, int count,
760 width, height, attachments, count, out_count);
776 unsigned int *attachments, int count,
784 width, height, attachments,
    [all...]
  /external/mesa3d/src/glx/
dri2_glx.c 510 /* Check we have the right attachments */
712 /* Check we have the right attachments */
753 unsigned int *attachments, int count,
760 width, height, attachments, count, out_count);
776 unsigned int *attachments, int count,
784 width, height, attachments,
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java 847 JSONArray attachments = new JSONArray(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 85 * For local attachments generated by the Compose UI prior to send/save,
235 * Constructor for use when creating attachments in eml files.
600 public static String toJSONArray(Collection<? extends Attachment> attachments) {
601 if (attachments == null) {
606 for (Attachment attachment : attachments) {
653 * @param previewStates The packed int describing the states of multiple attachments.
657 * @return A packed int describing the updated downloaded states of the multiple attachments.
677 * @param previewStates The packed int describing the states of multiple attachments.
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 738 ArrayList<Parcelable> attachments = new ArrayList<Parcelable>();
744 attachments.add(uri);
749 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLNoOpInterface.h 164 const GrGLenum* attachments);
  /external/skia/src/gpu/gl/
GrGLNoOpInterface.h 164 const GrGLenum* attachments);
  /packages/apps/Email/src/com/android/email/service/
ImapService.java 249 // right now, attachments will be left for later.
251 ArrayList<Part> attachments = new ArrayList<Part>(); local
252 MimeUtility.collectParts(message, viewables, attachments);
1530 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 1089 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gl3stub.c 339 GL_APICALL void (* GL_APIENTRY glInvalidateFramebuffer) (GLenum target, GLsizei numAttachments, const GLenum* attachments);
340 GL_APICALL void (* GL_APIENTRY glInvalidateSubFramebuffer) (GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height);
gl3stub.h     [all...]
  /development/ndk/platforms/android-5/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncParser.java 406 // Now process body parts & attachments
408 // We'll ignore the attachments, as we'll get them directly from EAS
409 ArrayList<Part> attachments = new ArrayList<Part>(); local
410 MimeUtility.collectParts(mimeMessage, viewables, attachments);
449 // We handle both EAS 2.5 and 12.0+ attachments here
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]
  /prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]

Completed in 1825 milliseconds

1 23 4 5 6 7 8