Searched refs:marker (Results 1 - 25 of 227) sorted by relevance

12345678910

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs61 /// <returns>Return a marker that can be passed to
64 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
76 /// <see cref="IIntStream.Index"/> would return marker.
79 /// The marker will usually be <see cref="IIntStream.Index"/> but
80 /// it doesn't have to be. It's just a marker to indicate what
83 /// If there are other markers created after the specified marker,
85 /// stream was in when this marker was created.
87 void Rewind(int marker); argument
90 /// Rewind to the input position of the last marker.
95 /// of the decision. Do not "pop" the marker of
114 Release(int marker) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIIntStream.cs56 * current input position, Index, or some other marker so that
77 * Reset the stream so that next call to index would return marker.
78 * The marker will usually be Index but it doesn't have to be. It's
79 * just a marker to indicate what state the stream was in. This is
81 * created after this marker argument, this routine must unroll them
82 * like a stack. Assume the state the stream was in when this marker
86 void Rewind( int marker );
89 * Rewind to the input position of the last marker.
93 * Do not "pop" the marker off the state. mark(i)
95 * like invoking rewind(last marker) bu
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java44 * 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); argument
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) bu
87 release(int marker) argument
[all...]
/external/clang/test/Lexer/
H A Dconflict-marker.c6 // diff3 style expected-error@+1 {{version control conflict marker in file}}
15 // normal style expected-error@+1 {{version control conflict marker in file}}
22 // Perforce style expected-error@+1 {{version control conflict marker in file}}
23 >>>> ORIGINAL conflict-marker.c#6
25 ==== THEIRS conflict-marker.c#7
27 ==== YOURS conflict-marker.c
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRIntStream.h35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRIntStream.h35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRIntStream.h35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceMarker.cpp81 // 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
117 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
154 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local
[all...]
H A DSVGMarkerLayoutInfo.cpp53 // 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, cons argument
[all...]
H A DSVGMarkerLayoutInfo.h36 : marker(markerObj)
39 ASSERT(marker);
42 RenderSVGResourceMarker* marker; member in struct:WebCore::MarkerLayout
H A DSVGMarkerData.h41 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) argument
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/
H A DAccessibilityTextMarkerMac.mm33 AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker marker)
34 : m_textMarker(marker)
38 AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker& marker)
39 : m_textMarker(marker.platformTextMarker())
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as43 * current input position, index(), or some other marker so that
57 /** Reset the stream so that next call to index would return marker.
58 * The marker will usually be index() but it doesn't have to be. It's
59 * just a marker to indicate what state the stream was in. This is
61 * created after this marker argument, this routine must unroll them
62 * like a stack. Assume the state the stream was in when this marker
65 function rewindTo(marker:int):void;
67 /** Rewind to the input position of the last marker.
71 * Do not "pop" the marker off the state. mark(i)
73 * like invoking rewind(last marker) bu
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRIntStream.h39 // current input position, index(), or some other marker so that
42 // TODO: problem in that lexer stream returns not index but some marker
55 // Reset the stream so that next call to index would return marker.
56 // The marker will usually be -index but it doesn't have to be. It's
57 // just a marker to indicate what state the stream was in. This is
59 // created after this marker argument, this routine must unroll them
60 // like a stack. Assume the state the stream was in when this marker
64 - (void) rewind:(NSInteger) marker;
67 // stream to keep bookkeeping objects around for a marker that is
71 - (void) release:(NSInteger) marker;
[all...]
/external/webkit/Source/WebCore/css/
H A DSVGCSSPropertyNames.in27 marker
28 marker-end
29 marker-mid
30 marker-start
H A Dsvg.css45 svg:not(:root), symbol, image, marker, pattern, foreignObject {
/external/jpeg/
H A Djdmarker.c10 * 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 itsel
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...]
H A Djcmarker.c16 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 */
438 write_marker_header(j_compress_ptr cinfo, int marker, unsigned int datalen) argument
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...]
/external/qemu/distrib/jpeg-6b/
H A Djdmarker.c10 * 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 itsel
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...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DLookaheadStream.cs165 public virtual void Release(int marker) { argument
169 public virtual void Rewind(int marker) { argument
170 Seek(marker);
171 Release(marker);
/external/chromium/net/tools/testserver/
H A Dchromiumsync_test.py372 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
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocumentMarkerController.cpp66 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
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
496 setRenderedRectForMarker(Node* node, const DocumentMarker& marker, const IntRect& r) argument
551 DocumentMarker& marker = markers[i]; local
597 DocumentMarker& marker = markers[i]; local
663 DocumentMarker& marker = markers[i]; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DLookaheadStream.cs194 public virtual void Release( int marker )
202 public virtual void Rewind( int marker )
204 Seek( marker );
205 Release( marker );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java135 public void release(int marker) { argument
139 public void rewind(int marker) { argument
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/
H A DServerParser.java82 int marker = 0;
84 marker = this.lexer.markInputPosition();
91 this.lexer.rewindInputPosition(marker);

Completed in 461 milliseconds

12345678910