Searched refs:mark (Results 1 - 25 of 514) sorted by path

1234567891011>>

/external/android-clat/
H A Dclatd.c234 * mark - the socket mark to use for the sending raw socket
236 void open_sockets(struct tun_data *tunnel, uint32_t mark) { argument
247 if (mark != MARK_UNSET && setsockopt(rawsock, SOL_SOCKET, SO_MARK, &mark, sizeof(mark)) < 0) {
248 logmsg(ANDROID_LOG_ERROR, "could not set mark on raw socket: %s", strerror(errno));
459 printf("-m [socket mark]\n");
481 uint32_t mark = MARK_UNSET; local
517 if (mark_str != NULL && !parse_unsigned(mark_str, &mark)) {
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as46 /** tracks how deep mark() calls are nested */
52 * A null is kept @ index 0. Create upon first call to mark().
56 /** Track the last mark() call result value for use in rewind(). */
127 public function mark():int { function
H A DCommonTokenStream.as57 /** Track the last mark() call result value for use in rewind(). */
292 public function mark():int { function
H A DDFA.as66 var mark:int = input.mark(); // remember where decision started in input
147 input.rewindTo(mark);
H A DIntStream.as45 * rewind(mark()) should not affect the input cursor. The Lexer
49 function mark():int;
71 * Do not "pop" the marker off the state. mark(i)
83 * argument. So if you're nested 5 levels of mark(), and then release(2)
98 * backtracking using the mark/rewind mechanism that restores state and
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as41 * This stream knows how to mark/release for backtracking.
89 /** Track the last mark() call result value for use in rewind(). */
276 public function mark():int { function
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
H A DTestANTLRStringStream.as89 var mark1:int = stream.mark();
92 var mark2:int = stream.mark();
114 mark1 = stream.mark();
117 stream.mark();
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3debugeventlistener.h156 /** The parser is going to look arbitrarily ahead; mark this location,
159 void (*mark) (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
171 * Do not "pop" the marker off the state. mark(i)
196 * also must be rewound. Even the rewind for each mark must be unwound.
H A Dantlr3intstream.h130 * rewind(mark()) should not affect the input cursor.
132 ANTLR3_MARKER (*mark) (struct ANTLR3_INT_STREAM_struct * intStream); member in struct:ANTLR3_INT_STREAM_struct
159 void (*release) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER mark);
171 * backtracking using the mark/rewind mechanism that restores state and
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c2091 start = is->mark(is);
H A Dantlr3commontreenodestream.c69 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
209 stream->tnstream->istream->mark = mark;
351 stream->tnstream->istream->mark = mark;
656 mark (pANTLR3_INT_STREAM is) function
669 // Return the current mark point
682 /// was in when mark() was called and it returned marker. Also,
685 /// upon mark().
H A Dantlr3cyclicdfa.c81 ANTLR3_MARKER mark; local
86 mark = is->mark(is); /* Store where we are right now */
112 is->rewind(is, mark);
123 is->rewind(is, mark);
155 is->rewind(is, mark);
177 is->rewind(is, mark);
184 is->rewind(is, mark);
H A Dantlr3debughandlers.c66 static void mark (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker);
129 delboy->mark = mark;
696 mark (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker) function
700 sprintf(buffer, "mark\t%d\n", (ANTLR3_UINT32)(marker & 0xFFFFFFFF));
H A Dantlr3inputstream.c47 static void antlr38BitRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
49 static void antlr38BitRelease (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
152 input->istream->mark = antlr38BitMark; // Record the current lex state for later restore
156 input->istream->release = antlr38BitRelease; // Reset marks after mark n
452 /* New mark point
456 /* See if we are revisiting a mark as we can just reuse the vector
490 /** \brief Rewind the lexer input to the state specified by the last produced mark.
503 /** \brief Rewind the lexer input to the state specified by the supplied mark.
511 antlr38BitRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
520 input->istream->release(input->istream, mark);
550 antlr38BitRelease(pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
[all...]
H A Dantlr3lexer.c587 lexer->input->istream->mark(lexer->input->istream);
H A Dantlr3tokenstream.c70 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
72 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
226 stream->tstream->istream->mark = dbgMark;
312 stream->tstream->istream->mark = mark;
342 ts->istream->mark = dbgMark;
837 mark (pANTLR3_INT_STREAM is) function
843 /// As per mark() but with a call to tell the debugger we are doing this
853 ts->debugger->mark(ts->debugger, is->lastMarker);
859 release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs87 int mark = input.Mark(); // remember where decision started in input
172 input.Rewind(mark);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DDFA.cs102 int mark = input.Mark(); // remember where decision started in input
203 input.Rewind( mark );
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas696 /// This stream knows how to mark/release for backtracking.
1384 /// Track the last mark() call result value for use in rewind().
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java53 /** tracks how deep mark() calls are nested */
59 * A null is kept @ index 0. Create upon first call to mark().
63 /** Track the last mark() call result value for use in rewind(). */
150 public int mark() { method in class:ANTLRStringStream
H A DBufferedTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
83 public int mark() { method in class:BufferedTokenStream
H A DDFA.java68 int mark = input.mark(); // remember where decision started in input
149 input.rewind(mark);
H A DIntStream.java46 * rewind(mark()) should not affect the input cursor. The Lexer
50 int mark(); method in interface:IntStream
72 * Do not "pop" the marker off the state. mark(i)
84 * argument. So if you're nested 5 levels of mark(), and then release(2)
99 * backtracking using the mark/rewind mechanism that restores state and
H A DLegacyCommonTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
314 public int mark() { method in class:LegacyCommonTokenStream

Completed in 428 milliseconds

1234567891011>>