HomeSort by relevance Sort by last modified time
    Searched defs:mark (Results 251 - 275 of 425) sorted by null

<<11121314151617

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 70 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)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventHub.java 147 public void mark(int index) { method in class:DebugEventHub
150 listener.mark(index);
DebugEventRepeater.java 60 public void mark(int i) { listener.mark(i); } method in class:DebugEventRepeater
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 42 * This stream knows how to mark/release for backtracking.
116 /** Track the last mark() call result value for use in rewind(). */
309 public int mark() { method in class:BufferedTreeNodeStream
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 74 def mark(self): member in class:IntStream
79 rewind(mark()) should not affect the input cursor. The Lexer
112 Do not "pop" the marker off the state. mark(i)
128 argument. So if you're nested 5 levels of mark(), and then release(2)
148 backtracking using the mark/rewind mechanism that restores state and
443 def mark(self): member in class:ANTLRStringStream
892 def mark(self): member in class:CommonTokenStream
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTreeNodeStream.java 182 int m = stream.mark(); // MARK
218 stream.mark(); // MARK
224 stream.mark(); // keep saving nodes though
258 int m = stream.mark(); // MARK at start
261 int m2 = stream.mark(); // MARK on 102
  /external/chromium/net/spdy/
spdy_framer_test.cc 28 const bool mark = local
30 hex += mark ? '*' : ' ';
33 hex += mark ? '*' : ' ';
    [all...]
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.cc 306 const bool mark = local
308 hex += mark ? '*' : ' ';
311 hex += mark ? '*' : ' ';
  /external/chromium_org/third_party/icu/source/common/
dictbe.cpp 117 int mark; // The preferred candidate's offset member in class:PossibleWord
137 // Mark the current candidate as the one we like
166 mark = current;
172 utext_setNativeIndex(text, offset + lengths[mark]);
173 return lengths[mark];
192 mark = current;
286 // Followed by another dictionary word; mark first word as a good candidate
368 // Never stop before a combining mark.
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 135 // mark it as live and return true. Else return false.
139 // If "ptr" points to a recorded allocation, mark it as "ignored".
144 // Mark all currently known allocations with the given AllocationMark.
145 void MarkCurrentAllocations(AllocationMark mark);
147 // Mark all unmarked (i.e. marked with AllocationMark::UNMARKED) with the
148 // given mark.
149 void MarkUnmarkedAllocations(AllocationMark mark);
211 // 1. Invoke MarkCurrentAllocations(MARK_ONE) to mark the start of the
224 void DumpMarkedObjects(AllocationMark mark, const char* file_name);
260 AllocationMark mark() const function in struct:HeapProfileTable::AllocValue
316 AllocationMark mark; \/\/ The mark of the allocations to process. member in struct:HeapProfileTable::DumpMarkedArgs
326 AllocationMark mark; \/\/ The mark to put on allocations. member in struct:HeapProfileTable::MarkArgs
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.cpp 254 mark(*I);
263 mark(*I);
268 mark(S->getThen());
269 mark(S->getElse());
274 mark(S->getBody());
279 mark(S->getBody());
284 mark(S->getInit());
285 mark(S->getInc());
286 mark(S->getBody());
291 void mark(Stmt *S) function in class:__anon17488::RemovablesCollector
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-shaper.cpp 78 HB_Glyph mark = glyphs[gfrom+i]; local
80 item->font->klass->getGlyphMetrics(item->font, mark, &markMetrics);
185 // qDebug("char=%x combiningClass = %d offset=%f/%f", mark, cmb, p.x(), p.y());
216 if (cEnd == -1 && attributes[i].mark) {
218 } else if (cEnd != -1 && !attributes[i].mark) {
255 // first char in a run is never (treated as) a mark
258 attributes[0].mark = false;
282 attributes[pos].mark = false;
316 attributes[pos].mark = true;
321 // one gets an inter character justification point if the current char is not a non spacing mark
    [all...]
  /external/iproute2/tc/
f_u32.c 10 * Match mark added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro> [5 nov 2004]
43 " u{32|16|8} | mark } SAMPLE_ARGS [divisor DIVISOR]\n");
665 struct tc_u32_mark mark; local
670 if (get_u32(&mark.val, *argv, 0)) {
671 fprintf(stderr, "Illegal \"mark\" value\n");
676 if (get_u32(&mark.mask, *argv, 0)) {
677 fprintf(stderr, "Illegal \"mark\" mask\n");
682 if ((mark.val & mark.mask) != mark.val)
1237 struct tc_u32_mark *mark = RTA_DATA(tb[TCA_U32_MARK]); local
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack.h 120 u_int32_t mark; member in struct:ip_conntrack
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 237 protected String mark() throws ParseException { method in class:URLParser
239 dbg_enter("mark");
246 throw createParseException("mark");
249 dbg_leave("mark");
  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineImpl.java 441 src.mark();
ServerHandshakeImpl.java 100 io_stream.mark();
295 io_stream.mark();
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 618 int mark = response.indexOf(" ") + 1; local
619 if (mark == 0) {
622 int last = mark + 3;
626 responseCode = Integer.parseInt(response.substring(mark, last));
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 96 // create the mark supporting wrapper
99 // mark is needed to recognize the format of the provided encoding
101 inStream.mark(1);
131 // create the mark supporting wrapper
142 inStream.mark(1);
153 inStream.mark(CERT_CACHE_SEED_LENGTH);
193 // mark for the next iteration
194 inStream.mark(1);
241 // Create the mark supporting wrapper
242 // Mark is needed to recognize the forma
777 public void mark(int readlimit) { method in class:X509CertFactoryImpl.RestoringInputStream
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesm.h 391 inline const char* mark() const { function in class:NCursesMenu
567 // Return the item where you left the selection mark for a single
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesm.h 391 inline const char* mark() const { function in class:NCursesMenu
567 // Return the item where you left the selection mark for a single
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesm.h 391 inline const char* mark() const { function in class:NCursesMenu
567 // Return the item where you left the selection mark for a single
  /bionic/libc/netbsd/
gethnamaddr.c 518 android_gethostbynameforiface(const char *name, int af, const char *iface, int mark)
525 hp = gethostbyname_internal(name, af, res, iface, mark);
744 gethostbyname_internal(const char *name, int af, res_state res, const char *iface, int mark)
752 res_setmark(res, mark);
784 socklen_t len, int af, const char* iface, int mark)
814 socklen_t len, int af, const char* iface, int mark)
862 default_dns_files, uaddr, len, af, iface, mark) != NS_SUCCESS)
869 android_gethostbyaddrforiface(const void *addr, socklen_t len, int af, const char* iface, int mark)
874 return android_gethostbyaddrforiface_proxy(addr, len, af, iface, mark);
876 return android_gethostbyaddrforiface_real(addr,len, af, iface, mark);
1319 int mark; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoEncoder.java 199 // TODO: Make this mark be the actual prologue end.
372 int mark = output.getCursor(); local
382 annotate(output.getCursor() - mark, "line_start: " + line);
405 mark = output.getCursor();
409 annotate(output.getCursor() - mark,
421 mark = output.getCursor();
455 annotate(output.getCursor() - mark,
614 int mark = output.getCursor(); local
620 annotate(output.getCursor() - mark,
690 int mark = output.getCursor() local
719 int mark = output.getCursor(); local
748 int mark = output.getCursor(); local
851 int mark = output.getCursor(); local
875 int mark = output.getCursor(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 207 // TODO: Make this mark be the actual prologue end.
380 int mark = output.getCursor(); local
390 annotate(output.getCursor() - mark, "line_start: " + line);
413 mark = output.getCursor();
417 annotate(output.getCursor() - mark,
429 mark = output.getCursor();
463 annotate(output.getCursor() - mark,
622 int mark = output.getCursor(); local
628 annotate(output.getCursor() - mark,
698 int mark = output.getCursor() local
727 int mark = output.getCursor(); local
756 int mark = output.getCursor(); local
859 int mark = output.getCursor(); local
883 int mark = output.getCursor(); local
    [all...]

Completed in 1034 milliseconds

<<11121314151617