Home
last modified time | relevance | path

Searched refs:marker (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DJpegHeader.java35 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()
DExifParser.java759 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()
DExifOutputStream.java172 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/
DExif.java82 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/
DExif.java87 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/
DJPEGSource.cpp159 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/
DVolleyLog.java153 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/
Dmanifest-merge.jd130 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/
DCaches.h199 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/
DExifInterface.java1597 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 …]
DAudioRecord.java1555 private native final int native_set_marker_pos(int marker); in native_set_marker_pos() argument
/frameworks/av/include/media/
DAudioRecord.h280 status_t setMarkerPosition(uint32_t marker);
281 status_t getMarkerPosition(uint32_t *marker) const;
DAudioTrack.h435 status_t setMarkerPosition(uint32_t marker);
436 status_t getMarkerPosition(uint32_t *marker) const;
/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegProcessor.cpp313 uint8_t marker[MARKER_LENGTH]; member
371 uint8_t type = checkJpegMarker(segment->marker); in findJpegSize()
/frameworks/av/media/libmedia/
DAudioRecord.cpp369 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()
DAudioTrack.cpp895 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/
DRegisteredServicesCache.java623 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/
DNuPlayerCCDecoder.cpp275 uint8_t marker = br.getBits(5); in parseSEINalUnit() local
276 CHECK_EQ(marker, 0x1f); in parseSEINalUnit()
/frameworks/av/media/libmedia/docs/
Dpaused.dot25 ATsetMarkerPosition [label="AudioTrack::setMarkerPosition()\n[sets marker variables]"];
/frameworks/base/libs/hwui/tests/
Dnullgles.cpp260 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/
Dindex.jd43 "https://developers.google.com/maps/documentation/android/marker">Draw markers</a>.
/frameworks/native/opengl/libs/GLES2/
Dgl2ext_api.in184 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/
Djetcreator_manual.jd1013 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/
Dgl2ext.h742 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/
DOptions.td329 HelpText<"Surround the result strings with the marker">;

12