/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | JpegHeader.java | 35 public static final boolean isSofMarker(short marker) { in isSofMarker() argument 36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG in isSofMarker() 37 && marker != DAC; in isSofMarker()
|
D | ExifParser.java | 759 short marker = dataStream.readShort(); in seekTiffData() local 760 while (marker != JpegHeader.EOI in seekTiffData() 761 && !JpegHeader.isSofMarker(marker)) { in seekTiffData() 765 if (marker == JpegHeader.APP1) { in seekTiffData() 784 marker = dataStream.readShort(); in seekTiffData()
|
D | ExifOutputStream.java | 172 short marker = mBuffer.getShort(); in write() local 173 if (marker == JpegHeader.APP1) { in write() 176 } else if (!JpegHeader.isSofMarker(marker)) { in write()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/ |
D | Exif.java | 82 final int marker = jpeg.get(offset) & 0xFF; in getOrientation() local 85 if (marker == 0xFF) { in getOrientation() 91 if (marker == 0xD8 || marker == 0x01) { in getOrientation() 95 if (marker == 0xD9 || marker == 0xDA) { in getOrientation() 109 if (marker == 0xE1 && length >= 8 && in getOrientation()
|
/frameworks/opt/bitmap/src/com/android/bitmap/util/ |
D | Exif.java | 87 final int marker = jpeg.get(offset) & 0xFF; in getOrientation() local 90 if (marker == 0xFF) { in getOrientation() 96 if (marker == 0xD8 || marker == 0x01) { in getOrientation() 100 if (marker == 0xD9 || marker == 0xDA) { in getOrientation() 114 if (marker == 0xE1 && length >= 8 && in getOrientation()
|
/frameworks/av/media/libstagefright/ |
D | JPEGSource.cpp | 159 uint8_t marker; in parseJPEG() local 160 if (mSource->readAt(i++, &marker, 1) != 1) { in parseJPEG() 164 CHECK_EQ(marker, 0xff); in parseJPEG() 166 if (mSource->readAt(i++, &marker, 1) != 1) { in parseJPEG() 170 CHECK(marker != 0xff); in parseJPEG() 183 switch (marker) { in parseJPEG()
|
/frameworks/volley/src/main/java/com/android/volley/ |
D | VolleyLog.java | 153 for (Marker marker : mMarkers) { in finish() 154 long thisTime = marker.time; in finish() 155 d("(+%-4d) [%2d] %s", (thisTime - prevTime), marker.thread, marker.name); in finish()
|
/frameworks/base/docs/html/tools/building/ |
D | manifest-merge.jd | 130 the <code>overrideLibrary</code> conflict marker is used. 156 specific conflict resolutions. For example, use a conflict marker to 162 <p>A merge conflict marker is a special attribute in the Android tools namespace that defines a 163 specific merge conflict resolution. Create a conflict marker to avoid a merge conflict error for 185 <p>By default, the manifest merge process applies the <code>merge</code> conflict marker to 189 <p>To set a merge conflict marker, first declare the namespace in the 190 <code>AndroidManifest.xml</code> file. Then, enter the merge conflict marker in the manifest to 191 specify a custom merge conflict action. This example inserts the <code>replace</code> marker to 217 <code>replace</code> merge actions. Multiple <code>tools:attr</code> marker values can be applied 222 <h4>Merge conflict marker for imported libraries</h4> [all …]
|
/frameworks/base/libs/hwui/ |
D | Caches.h | 199 static void eventMarkNull(GLsizei length, const GLchar* marker) { } in eventMarkNull() argument 200 static void startMarkNull(GLsizei length, const GLchar* marker) { } in startMarkNull() argument
|
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 1597 byte marker; in getJpegAttributes() 1599 if ((marker = dataInputStream.readByte()) != MARKER) { in getJpegAttributes() 1600 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes() 1604 throw new IOException("Invalid marker: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes() 1608 marker = dataInputStream.readByte(); in getJpegAttributes() 1609 if (marker != MARKER) { in getJpegAttributes() 1610 throw new IOException("Invalid marker:" + Integer.toHexString(marker & 0xff)); in getJpegAttributes() 1613 marker = dataInputStream.readByte(); in getJpegAttributes() 1615 Log.d(TAG, "Found JPEG segment indicator: " + Integer.toHexString(marker & 0xff)); in getJpegAttributes() 1621 if (marker == MARKER_EOI || marker == MARKER_SOS) { in getJpegAttributes() [all …]
|
D | AudioRecord.java | 1555 private native final int native_set_marker_pos(int marker); in native_set_marker_pos() argument
|
/frameworks/av/include/media/ |
D | AudioRecord.h | 280 status_t setMarkerPosition(uint32_t marker); 281 status_t getMarkerPosition(uint32_t *marker) const;
|
D | AudioTrack.h | 435 status_t setMarkerPosition(uint32_t marker); 436 status_t getMarkerPosition(uint32_t *marker) const;
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | JpegProcessor.cpp | 313 uint8_t marker[MARKER_LENGTH]; member 371 uint8_t type = checkJpegMarker(segment->marker); in findJpegSize()
|
/frameworks/av/media/libmedia/ |
D | AudioRecord.cpp | 369 status_t AudioRecord::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument 377 mMarkerPosition = marker; in setMarkerPosition() 387 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const in getMarkerPosition() 389 if (marker == NULL) { in getMarkerPosition() 394 *marker = mMarkerPosition; in getMarkerPosition()
|
D | AudioTrack.cpp | 895 status_t AudioTrack::setMarkerPosition(uint32_t marker) in setMarkerPosition() argument 903 mMarkerPosition = marker; in setMarkerPosition() 913 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const in getMarkerPosition() 918 if (marker == NULL) { in getMarkerPosition() 923 *marker = mMarkerPosition; in getMarkerPosition()
|
/frameworks/base/core/java/android/content/pm/ |
D | RegisteredServicesCache.java | 623 File marker = new File(syncDir, mInterfaceName + ".xml.migrated"); in migrateIfNecessaryLocked() local 625 if (!marker.exists()) { in migrateIfNecessaryLocked() 627 Slog.i(TAG, "Marker file " + marker + " does not exist - running migration"); in migrateIfNecessaryLocked() 650 marker.createNewFile(); in migrateIfNecessaryLocked()
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerCCDecoder.cpp | 275 uint8_t marker = br.getBits(5); in parseSEINalUnit() local 276 CHECK_EQ(marker, 0x1f); in parseSEINalUnit()
|
/frameworks/av/media/libmedia/docs/ |
D | paused.dot | 25 ATsetMarkerPosition [label="AudioTrack::setMarkerPosition()\n[sets marker variables]"];
|
/frameworks/base/libs/hwui/tests/ |
D | nullgles.cpp | 260 void glInsertEventMarkerEXT(GLsizei length, const GLchar *marker) {} in glInsertEventMarkerEXT() argument 261 void glPushGroupMarkerEXT(GLsizei length, const GLchar *marker) {} in glPushGroupMarkerEXT() argument
|
/frameworks/base/docs/html/training/maps/ |
D | index.jd | 43 "https://developers.google.com/maps/documentation/android/marker">Draw markers</a>.
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2ext_api.in | 184 void API_ENTRY(glInsertEventMarkerEXT)(GLsizei length, const GLchar * marker) { 185 CALL_GL_API(glInsertEventMarkerEXT, length, marker); 187 void API_ENTRY(glPushGroupMarkerEXT)(GLsizei length, const GLchar * marker) { 188 CALL_GL_API(glPushGroupMarkerEXT, length, marker);
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 1013 102 JET event marker</p> 1016 103 JET clip marker</p> 1080 authoring tools make it difficult to place the end-of-track marker accurately, 1086 a JET end-of-segment marker (controller=102, value=0) at the point where the 1087 segment is to be looped. When the end-of-segment marker is encountered, the 1093 <p>The end-of-segment marker can also be used 1098 marker at the end of the 4<sup>th</sup> bar, the next segment will be
|
/frameworks/native/opengl/include/GLES2/ |
D | gl2ext.h | 742 typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); 743 typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); 746 GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); 747 GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);
|
/frameworks/compile/mclinker/tools/mcld/ |
D | Options.td | 329 HelpText<"Surround the result strings with the marker">;
|