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

1 2 3 4 5 6 7

  /external/antlr/src/org/antlr/runtime/
IntStream.java 44 * current input position, index(), or some other marker so that
58 /** Reset the stream so that next call to index would return marker.
59 * The marker will usually be index() but it doesn't have to be. It's
60 * just a marker to indicate what state the stream was in. This is
62 * created after this marker argument, this routine must unroll them
63 * like a stack. Assume the state the stream was in when this marker
66 void rewind(int marker);
68 /** Rewind to the input position of the last marker.
72 * Do not "pop" the marker off the state. mark(i)
74 * like invoking rewind(last marker) but it should not "pop
    [all...]
  /frameworks/media/libvideoeditor/osal/src/
M4PSW_Trace.c 57 va_list marker; /* pointer to list of arguments */ local
60 va_start(marker,format); /* set ptr to first argument in the list of arguments passed to the function */
61 vsprintf((char *)message, (const char *)format,marker ); /* formats and writes the data into message */
62 va_end(marker); /* reset pointer to NULL */
82 va_list marker; /* pointer to list of arguments */ local
85 va_start(marker,stringMsg); /* set ptr to first argument in the list of arguments passed to the function */
86 vsprintf((char *)message, (const char *)stringMsg,marker ); /* formats and writes the data into message */
87 va_end(marker); /* reset pointer to NULL */
  /packages/apps/Email/emailcommon/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...]
  /external/clang/test/Lexer/
conflict-marker.c 7 <<<<<<< .mine // expected-error {{version control conflict marker in file}}
16 <<<<<<< .mine // expected-error {{version control conflict marker in file}}
23 >>>> ORIGINAL conflict-marker.c#6 // expected-error {{version control conflict marker in file}}
25 ==== THEIRS conflict-marker.c#7
27 ==== YOURS conflict-marker.c
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMarker.cpp 81 // Map repaint rect into parent coordinate space, in which the marker boundaries have to be evaluated
97 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
98 ASSERT(marker);
100 return FloatPoint(marker->refX().value(marker), marker->refY().value(marker));
105 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
106 ASSERT(marker);
109 if (marker->orientType() == SVGMarkerElement::SVG_MARKER_ORIENT_ANGLE
117 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
154 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
    [all...]
SVGMarkerLayoutInfo.cpp 53 // Draw the marker for the previous element
54 RenderSVGResourceMarker* marker = markerData.marker(); local
55 if (elementIndex > 0 && marker)
56 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle());
58 // Update our marker data for this element
61 // After drawing the start marker, switch to drawing mid markers
92 RenderSVGResourceMarker* markerContent = layout.marker;
120 layout.marker->draw(paintInfo, layout.matrix);
124 void SVGMarkerLayoutInfo::addLayoutedMarker(RenderSVGResourceMarker* marker, const FloatPoint& origin, float angle
    [all...]
SVGMarkerLayoutInfo.h 36 : marker(markerObj)
39 ASSERT(marker);
42 RenderSVGResourceMarker* marker; member in struct:WebCore::MarkerLayout
SVGMarkerData.h 41 SVGMarkerData(const Type& type = Unknown, RenderSVGResourceMarker* marker = 0)
43 , m_marker(marker)
48 RenderSVGResourceMarker* marker() const { return m_marker; } function in class:WebCore::SVGMarkerData
77 void updateTypeAndMarker(const Type& type, RenderSVGResourceMarker* marker)
80 m_marker = marker;
95 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=33115 (PathElementAddQuadCurveToPoint not handled for <marker>)
  /external/webkit/Tools/DumpRenderTree/mac/
AccessibilityTextMarkerMac.mm 33 AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker marker)
34 : m_textMarker(marker)
38 AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker& marker)
39 : m_textMarker(marker.platformTextMarker())
  /external/webkit/Source/WebCore/css/
SVGCSSPropertyNames.in 27 marker
28 marker-end
29 marker-mid
30 marker-start
svg.css 45 svg:not(:root), symbol, image, marker, pattern, foreignObject {
  /packages/apps/Camera/src/com/android/camera/
Exif.java 34 int marker = jpeg[offset] & 0xFF; local
36 // Check if the marker is a padding.
37 if (marker == 0xFF) {
42 // Check if the marker is SOI or TEM.
43 if (marker == 0xD8 || marker == 0x01) {
46 // Check if the marker is EOI or SOS.
47 if (marker == 0xD9 || marker == 0xDA) {
58 // Break if the marker is EXIF in APP1
    [all...]
  /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
1345 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local
1394 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...]
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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Exif.java 37 int marker = buf[1] & 0xFF; local
39 // Check if the marker is a padding.
40 if (marker == 0xFF) {
44 // Check if the marker is SOI or TEM.
45 if (marker == 0xD8 || marker == 0x01) {
48 // Check if the marker is EOI or SOS.
49 if (marker == 0xD9 || marker == 0xDA) {
64 // Break if the marker is EXIF in APP1
    [all...]
  /external/chromium/net/tools/testserver/
chromiumsync_test.py 372 marker = msg.from_progress_marker.add()
373 marker.data_type_id = autofill.number
374 marker.token = '15412'
375 marker = msg.from_progress_marker.add()
376 marker.data_type_id = theme.number
377 marker.token = '15413'
388 marker = response.new_progress_marker[0]
389 self.assertEqual(marker.data_type_id, autofill.number)
390 self.assertEqual(marker.token, '15413')
391 self.assertFalse(marker.HasField('timestamp_token_for_migration')
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.cpp 66 DocumentMarker marker = {type, textPiece->startOffset(exception), textPiece->endOffset(exception), description, false}; local
67 addMarker(textPiece->startContainer(exception), marker);
109 // Iterate over all markers whose start offset is less than or equal to the new marker's.
110 // If one of them is of the same type as the new marker and touches it or intersects with it
111 // (there is at most one), remove it and adjust the new marker's start offset to encompass it.
113 DocumentMarker marker = markers[i]; local
114 if (marker.startOffset > newMarker.startOffset)
116 if (marker.type == newMarker.type && marker.endOffset >= newMarker.startOffset) {
117 newMarker.startOffset = marker.startOffset
129 DocumentMarker marker = markers[j]; local
174 DocumentMarker marker = markers[i]; local
220 DocumentMarker marker = markers[i]; local
292 DocumentMarker& marker = markers[markerIndex]; local
367 DocumentMarker marker = markers[markerIndex]; local
428 DocumentMarker marker = markers[i]; local
478 DocumentMarker marker = markers[i]; local
551 DocumentMarker& marker = markers[i]; local
597 DocumentMarker& marker = markers[i]; local
663 DocumentMarker& marker = markers[i]; local
    [all...]
  /external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java 135 public void release(int marker) {
139 public void rewind(int marker) {
141 seek(marker); // assume marker is top
142 // release(marker); // waste of call; it does nothing in this class
146 seek(lastMarker); // rewind but do not release marker
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ServerParser.java 82 int marker = 0; local
84 marker = this.lexer.markInputPosition();
91 this.lexer.rewindInputPosition(marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 212 private void selectMarker(IMarker marker) {
213 if (marker == null) {
218 String id = getId(marker);
231 private String getId(IMarker marker) {
233 return (String) marker.getAttribute(MARKER_CHECKID_PROPERTY);
241 private void showMarker(IMarker marker) {
244 int start = marker.getAttribute(IMarker.CHAR_START, -1);
245 int end = marker.getAttribute(IMarker.CHAR_END, -1);
273 IMarker marker = (IMarker) mTable.getItem(index).getData(); local
274 showMarker(marker);
280 IMarker marker = (IMarker) tableItem.getData(); local
298 IMarker marker = (IMarker) tableItem.getData(); local
320 IMarker marker = (IMarker) item.getData(); local
344 IMarker marker = (IMarker) item.getData(); local
419 IMarker marker = (IMarker) element; local
435 IMarker marker = (IMarker) element; local
    [all...]
LintFixGenerator.java 51 * A quickfix and marker resolution for disabling lint checks, and any
67 * if I make my marker be a new independent marker type. However, whenever I
68 * switch the marker type back to extend the "Problem" type, then the icon reverts
70 * And if I switch away from the Problems marker type, then the errors no longer
71 * show up in the Problems view. (I also tried extending the JDT marker but that
83 * make marker management more obvious.
92 public boolean hasResolutions(IMarker marker) {
94 assert marker.getType().equals(AdtConstants.MARKER_LINT);
101 public IMarkerResolution[] getResolutions(IMarker marker) {
    [all...]
  /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) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptParserTest.java 173 for (IMarker marker : markers) {
174 marker.delete();
188 IMarker marker = markers[0]; local
189 String message = marker.getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1$
192 int start = marker.getAttribute(IMarker.CHAR_START, 0);
193 int end = marker.getAttribute(IMarker.CHAR_END, 0);

Completed in 1424 milliseconds

1 2 3 4 5 6 7