HomeSort by relevance Sort by last modified time
    Searched refs:marker (Results 226 - 250 of 480) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/
Caches.h 367 static void eventMarkNull(GLsizei length, const GLchar* marker) { }
368 static void startMarkNull(GLsizei length, const GLchar* marker) { }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 117 for (IMarker marker : markers) {
118 String message = marker.getAttribute(IMarker.MESSAGE, "");
119 // There are no other attributes in the marker we can use to identify
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 88 IMarker marker = markers[i]; local
89 IResource resource = marker.getResource();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IdeScanningContext.java 129 // marker will throw a org.eclipse.core.internal.resources.ResourceException.
170 * Returns true if any of the scanned resources has an error marker on it.
179 for (IMarker marker : markers) {
180 if (marker.getAttribute(IMarker.SEVERITY, IMarker.SEVERITY_INFO) ==
  /external/jpeg/
jpeglib.h 85 * (not the zigzag order in which they are stored in a JPEG DQT marker).
101 /* These two fields directly represent the contents of a JPEG DHT marker */
119 /* for decompression, they are read from the SOF marker. */
127 /* for decompression, they are read from the SOS marker. */
197 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */ member in struct:jpeg_marker_struct
200 JOCTET FAR * data; /* the data contained in the marker */
201 /* the marker length word is not counted in data_length or original_length */
341 boolean write_JFIF_header; /* should a JFIF marker be written? */
345 /* into the JFIF APP0 marker. density_unit can be 0 for unknown, *
403 struct jpeg_marker_writer * marker; member in struct:jpeg_compress_struct
632 struct jpeg_marker_reader * marker; member in struct:jpeg_decompress_struct
    [all...]
  /external/qemu/distrib/jpeg-6b/
jpeglib.h 85 * (not the zigzag order in which they are stored in a JPEG DQT marker).
101 /* These two fields directly represent the contents of a JPEG DHT marker */
119 /* for decompression, they are read from the SOF marker. */
127 /* for decompression, they are read from the SOS marker. */
197 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */ member in struct:jpeg_marker_struct
200 JOCTET FAR * data; /* the data contained in the marker */
201 /* the marker length word is not counted in data_length or original_length */
341 boolean write_JFIF_header; /* should a JFIF marker be written? */
345 /* into the JFIF APP0 marker. density_unit can be 0 for unknown, *
403 struct jpeg_marker_writer * marker; member in struct:jpeg_compress_struct
632 struct jpeg_marker_reader * marker; member in struct:jpeg_decompress_struct
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifParser.java 759 short marker = dataStream.readShort(); local
760 while (marker != JpegHeader.EOI
761 && !JpegHeader.isSofMarker(marker)) {
765 if (marker == JpegHeader.APP1) {
784 marker = dataStream.readShort();
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifParser.java 759 short marker = dataStream.readShort(); local
760 while (marker != JpegHeader.EOI
761 && !JpegHeader.isSofMarker(marker)) {
765 if (marker == JpegHeader.APP1) {
784 marker = dataStream.readShort();
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifParser.java 759 short marker = dataStream.readShort(); local
760 while (marker != JpegHeader.EOI
761 && !JpegHeader.isSofMarker(marker)) {
765 if (marker == JpegHeader.APP1) {
784 marker = dataStream.readShort();
    [all...]
  /packages/apps/Launcher3/src/com/android/gallery3d/exif/
ExifParser.java 759 short marker = dataStream.readShort(); local
760 while (marker != JpegHeader.EOI
761 && !JpegHeader.isSofMarker(marker)) {
765 if (marker == JpegHeader.APP1) {
784 marker = dataStream.readShort();
    [all...]
  /packages/apps/Mms/src/com/android/mms/exif/
ExifParser.java 759 short marker = dataStream.readShort(); local
760 while (marker != JpegHeader.EOI
761 && !JpegHeader.isSofMarker(marker)) {
765 if (marker == JpegHeader.APP1) {
784 marker = dataStream.readShort();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 314 * Reads and processes the current markers and adds a listener for marker changes.
356 for (IMarker marker : markers) {
357 processMarker(marker, children, IResourceDelta.ADDED);
385 * Processes a new/old/updated marker.
386 * @param marker The marker being added/removed/changed
391 private void processMarker(IMarker marker, List<UiElementNode> nodeList, int kind) {
392 // get the data from the marker
393 String nodeType = marker.getAttribute(AdtConstants.MARKER_ATTR_TYPE, EMPTY);
398 String className = marker.getAttribute(AdtConstants.MARKER_ATTR_CLASS, EMPTY)
    [all...]
  /external/yaffs2/yaffs2/direct/
dtest.c 66 int marker; local
74 marker = ~i;
76 yaffs_write(outh,&marker,sizeof(marker));
85 int marker; local
96 yaffs_read(h,&marker,sizeof(marker));
97 ok = (marker == ~i);
101 fn,size,i,marker,~i);
115 int marker; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 75 static void rewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
76 static void dbgRewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
910 rewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker)
912 is->seek(is, (ANTLR3_UINT32)(marker));
915 dbgRewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker)
921 ts->debugger->rewind(ts->debugger, marker);
923 is->seek(is, (ANTLR3_UINT32)(marker));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 796 for (final IMarker marker : markers) {
797 String tmpMsg = marker.getAttribute(IMarker.MESSAGE, null);
805 marker.delete();
807 AdtPlugin.log(e, "Can't delete problem marker");
833 // check if there's a similar marker already, since aapt is launched twice
838 for (IMarker marker : markers) {
839 int tmpLine = marker.getAttribute(IMarker.LINE_NUMBER, -1);
844 int tmpSeverity = marker.getAttribute(IMarker.SEVERITY, -1);
849 String tmpMsg = marker.getAttribute(IMarker.MESSAGE, null);
854 // if we're here, all the marker attributes are equals, we found i
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 870 def marker(self): member in class:Unpickler
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 870 def marker(self): member in class:Unpickler
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 396 public virtual void Release(int marker) {
406 public virtual void Rewind(int marker) {
407 Seek(marker);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 468 public virtual void Release( int marker )
481 public virtual void Rewind( int marker )
483 Seek( marker );
  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.cc 314 TimeMarker marker)
316 // The marker vectors can only be safely manipulated on the main thread.
321 vector->push_back(marker);
323 // Add the marker on the UI thread.
330 marker));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestResult.cpp 207 DocumentMarker* marker = m_innerNonSharedNode->document()->markers()->markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
208 if (!marker)
213 return marker->description();
RenderListItem.cpp 58 // The marker always inherits from the list item, regardless of where it might end
218 static RenderObject* getParentOfFirstLineBox(RenderBlock* curr, RenderObject* marker)
226 if (currChild == marker)
242 RenderObject* lineBox = getParentOfFirstLineBox(toRenderBlock(currChild), marker);
269 // Sanity check the location of our marker.
274 // If the marker is currently contained inside an anonymous box,
276 // parent was found). It's ok to just leave the marker where it is
285 // Removing and adding the marker can trigger repainting in
433 // Append the suffix for the marker in the right place depending
  /external/chromium_org/tools/
bisect-builds.py 120 def GetListingURL(self, marker=None):
121 """Returns the URL for a directory listing, with an optional marker."""
123 if marker:
124 marker_param = '&marker=' + str(marker)
152 """Fetches a URL and returns a 2-Tuple of ([revisions], next-marker). If
153 next-marker is not None, then the listing is a partial listing and another
154 fetch should be performed with next-marker being the marker= GET
194 # If the result list was truncated, refetch with the next marker. Do thi
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/common/src/
extra_data_handler.cpp 167 OMX_U32 marker = 0, pad = 0xFF; local
199 marker = d_u(1);
200 if(marker) {
210 DEBUG_PRINT_ERROR("\nERROR: In %s() Marker Bit Error in SEI",
  /hardware/qcom/media/mm-video-v4l2/vidc/common/src/
extra_data_handler.cpp 179 OMX_U32 marker = 0, pad = 0xFF; local
214 marker = d_u(1);
216 if (marker) {
227 DEBUG_PRINT_ERROR("\nERROR: In %s() Marker Bit Error in SEI",

Completed in 3987 milliseconds

1 2 3 4 5 6 7 8 91011>>