HomeSort by relevance Sort by last modified time
    Searched full:marker (Results 1 - 25 of 839) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/css/
SVGCSSPropertyNames.in 27 marker
28 marker-end
29 marker-mid
30 marker-start
  /external/jpeg/
jdmarker.c 10 * suspension: if not all of the data for a marker is available,
12 * the marker.
20 typedef enum { /* JPEG marker codes */
93 /* Application-overridable marker processing methods */
97 /* Limit on marker data length to save for each marker type */
101 /* Status of COM/APPn marker saving */
102 jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */
103 unsigned int bytes_read; /* data bytes read so far in marker */
168 * Entry condition: JPEG marker itself has been read and its code save
742 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1203 int marker = cinfo->unread_marker; local
1280 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1300 my_marker_ptr marker; local
1340 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1389 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
    [all...]
jcmarker.c 16 typedef enum { /* JPEG marker codes */
98 * Note that we do not support suspension while writing a marker.
123 /* Emit a marker code */
140 * Routines to write specific marker types.
145 /* Emit a DQT marker */
185 /* Emit a DHT marker */
223 /* Emit a DAC marker */
225 /* one DAC marker. Therefore this routine does its own scan of the table. */
266 /* Emit a DRI marker */
278 /* Emit a SOF marker */
471 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
553 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
647 my_marker_ptr marker; local
    [all...]
wrjpgcom.c 9 * user-supplied text as a COM (comment) marker in a JFIF file.
135 write_marker (int marker)
138 PUTBYTE(marker);
152 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
153 * code byte (which is not an FF). Here are the marker codes of interest
177 * Find the next JPEG marker and return its marker code.
182 * NB: this routine must not be used after seeing SOS marker, since it will
198 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
214 * Read the initial marker, which should be SOI
291 int marker; local
421 int marker; local
    [all...]
rdjpgcom.c 101 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
102 * code byte (which is not an FF). Here are the marker codes of interest
122 #define M_APP0 0xE0 /* Application-specific marker, type N */
128 * Find the next JPEG marker and return its marker code.
133 * NB: this routine must not be used after seeing SOS marker, since it will
149 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
165 * Read the initial marker, which should be SOI.
186 * Most types of marker are followed by a variable-length parameter segment.
187 * This routine skips over the parameters for any marker we don't otherwis
326 int marker; local
    [all...]
jcapimin.c 177 (*cinfo->marker->write_file_trailer) (cinfo);
185 * Write a special marker.
192 jpeg_write_marker (j_compress_ptr cinfo, int marker,
203 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
204 write_marker_byte = cinfo->marker->write_marker_byte; /* copy for speed */
214 jpeg_write_m_header (j_compress_ptr cinfo, int marker, unsigned int datalen)
222 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
228 (*cinfo->marker->write_marker_byte) (cinfo, val)
    [all...]
jerror.h 53 JMESSAGE(JERR_BAD_LENGTH, "Bogus marker length")
107 JMESSAGE(JERR_SOF_NO_SOS, "Invalid JPEG file structure: missing SOS marker")
117 JMESSAGE(JERR_UNKNOWN_MARKER, "Unsupported marker type 0x%02x")
127 "Adobe APP14 marker: version %d, flags 0x%04x 0x%04x, transform %d")
128 JMESSAGE(JTRC_APP0, "Unknown APP0 marker (not JFIF), length %u")
129 JMESSAGE(JTRC_APP14, "Unknown APP14 marker (not Adobe), length %u")
138 JMESSAGE(JTRC_JFIF, "JFIF APP0 marker: version %d.%02d, density %dx%d %d")
142 "JFIF extension marker: type 0x%02x, length %u")
144 JMESSAGE(JTRC_MISC_MARKER, "Miscellaneous marker 0x%02x, length %u")
145 JMESSAGE(JTRC_PARMLESS_MARKER, "Unexpected marker 0x%02x"
    [all...]
  /development/scripts/app_engine_server/
index.yaml 7 # index.yaml file manually, remove the above marker line (the line
9 # manually, move them above the marker line. The index.yaml file is
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Choice.java 4 * Marker interface for CHOICE objects - if you implement this in a role your
13 // marker interface
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 48 class Marker():
170 """ Adds a marker to the list """
173 self.Markers.append(Marker(sEventType, iEventId, sName, sStartMbt, sEndMbt, iStartMeasure, ppqn))
178 for Marker in self.Markers:
179 if pt[0] >= Marker.iStart and pt[0] <= Marker.iEnd and pt[1] >= Marker.iTop and pt[1] <= Marker.iTop + Marker.iHeight:
181 self.ClickCallbackFct(Marker.sName, Marker.iEventId)
    [all...]
  /external/webkit/WebCore/rendering/
SVGMarkerLayoutInfo.cpp 54 // Draw the marker for the previous element
55 SVGResourceMarker* marker = markerData.marker(); local
56 if (elementIndex > 0 && marker)
57 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle());
59 // Update our marker data for this element
62 // After drawing the start marker, switch to drawing mid markers
93 RenderSVGViewportContainer* markerContent = layout.marker->renderer();
112 layout.marker->draw(paintInfo, layout.matrix);
116 void SVGMarkerLayoutInfo::addLayoutedMarker(SVGResourceMarker* marker, const FloatPoint& origin, float angle
    [all...]
SVGMarkerData.h 41 SVGMarkerData(const Type& type = Unknown, SVGResourceMarker* marker = 0)
43 , m_marker(marker)
48 SVGResourceMarker* marker() const { return m_marker; } function in class:WebCore::SVGMarkerData
77 void updateTypeAndMarker(const Type& type, SVGResourceMarker* marker)
80 m_marker = marker;
95 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=33115 (PathElementAddQuadCurveToPoint not handled for <marker>)
SVGMarkerLayoutInfo.h 35 : marker(markerObj)
38 ASSERT(marker);
41 SVGResourceMarker* marker; member in struct:WebCore::MarkerLayout
RenderSVGViewportContainer.h 31 // This is used for non-root <svg> elements and <marker> elements, neither of which are SVGTransformable
37 // Calculates marker boundaries, mapped to the target element's coordinate space
40 // Generates a transformation matrix usable to render marker content. Handles scaling the marker content
  /packages/apps/Email/src/org/apache/commons/io/
FileCleaner.java 23 * marker object is reclaimed by the garbage collector.
48 * Track the specified file, using the provided marker, deleting the file
49 * when the marker instance is garbage collected.
53 * @param marker the marker object used to track the file, not null
57 public static void track(File file, Object marker) {
58 theInstance.track(file, marker);
62 * Track the specified file, using the provided marker, deleting the file
63 * when the marker instance is garbage collected.
67 * @param marker the marker object used to track the file, not null
    [all...]
FileCleaningTracker.java 27 * marker object is reclaimed by the garbage collector.
63 * Track the specified file, using the provided marker, deleting the file
64 * when the marker instance is garbage collected.
68 * @param marker the marker object used to track the file, not null
71 public void track(File file, Object marker) {
72 track(file, marker, (FileDeleteStrategy) null);
76 * Track the specified file, using the provided marker, deleting the file
77 * when the marker instance is garbage collected.
81 * @param marker the marker object used to track the file, not null
89 addTracker(file.getPath(), marker, deleteStrategy); local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
index.yaml 5 # index.yaml file manually, remove the above marker line (the line
7 # manually, move them above the marker line. The index.yaml file is
  /packages/apps/Gallery3D/src/com/cooliris/media/
TimeBar.java 57 private ArrayList<Marker> mMarkers = new ArrayList<Marker>();
58 private ArrayList<Marker> mMarkersCopy = new ArrayList<Marker>();
70 private final HashMap<MediaItem, Marker> mTracker = new HashMap<MediaItem, Marker>(1024);
140 Marker marker = mMarkers.get(index); local
141 if (marker != null) {
150 ArrayList<MediaItem> items = marker.items
172 Marker marker = mMarkers.get(index); local
178 Marker marker = mTracker.get(item); local
250 Marker marker = null; local
    [all...]
  /external/webkit/WebKitTools/QueueStatusServer/
index.yaml 7 # index.yaml file manually, remove the above marker line (the line
9 # manually, move them above the marker line. The index.yaml file is
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 100 * Adds a marker to a file on a specific line. This methods catches thrown
103 * @param markerId The id of the marker to add.
105 * @param lineNumber the line number where to put the mark. If line is < 1, it puts the marker
107 * @param severity the severity of the marker.
113 IMarker marker = resource.createMarker(markerId); local
114 marker.setAttribute(IMarker.MESSAGE, message);
115 marker.setAttribute(IMarker.SEVERITY, severity);
117 // if marker is text type, enforce a line number so that it shows in the editor
119 if (lineNumber < 1 && marker.isSubtypeOf(IMarker.TEXT)) {
124 marker.setAttribute(IMarker.LINE_NUMBER, lineNumber)
169 IMarker marker = project.createMarker(markerId); local
    [all...]
  /external/v8/src/mips/
frames-mips.cc 43 // The marker and function offsets overlap. If the marker isn't a
44 // smi then the frame is a JavaScript frame -- and the marker is
47 Object* marker = Memory::Object_at(state->fp + offset); local
48 if (!marker->IsSmi()) return JAVA_SCRIPT;
49 return static_cast<StackFrame::Type>(Smi::cast(marker)->value());
  /frameworks/base/media/libstagefright/
JPEGSource.cpp 45 #define JPEG_JFIF 0xE0 /* Jfif marker*/
46 #define JPEG_EXIF 0xE1 /* Exif marker*/
159 uint8_t marker; local
160 if (mSource->readAt(i++, &marker, 1) != 1) {
164 CHECK_EQ(marker, 0xff);
166 if (mSource->readAt(i++, &marker, 1) != 1) {
170 CHECK(marker != 0xff);
183 switch (marker) {
  /external/webkit/WebCore/svg/
svgattrs.in 116 marker-end
117 marker-mid
118 marker-start
  /libcore/luni/src/main/java/java/io/
WriteAbortedException.java 22 * an exception marker in the input stream. This marker indicates that exception
23 * occurred when the object was serialized, and this marker was inserted instead
  /external/bluetooth/glib/glib/
glibintl.h 35 /* not really I18N-related, but also a string marker macro */

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>