HomeSort by relevance Sort by last modified time
    Searched refs:lookahead (Results 26 - 50 of 149) sorted by null

12 3 4 5 6

  /external/icu/icu4c/source/tools/genrb/
parse.cpp 84 struct Lookahead
109 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; member in struct:__anon12243
127 /* The nature of the lookahead buffer:
129 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
158 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
174 ustr_deinit(&state->lookahead[i].value)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStream.h 54 NSMutableArray *lookahead; variable
70 @property (retain, getter=getLookahead, setter=setLookahead:) NSMutableArray *lookahead; variable
106 #pragma mark Lookahead Handling
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
RuleCharacterIterator.java 165 c = Utility.unescapeAt(lookahead(), offset);
242 * options. This is useful in conjunction with the lookahead() method.
264 * sequence of calls is to call skipIgnored(), then call lookahead(), then
265 * parse the string returned by lookahead(), then call jumpahead() to
270 public String lookahead() { method in class:RuleCharacterIterator
280 * This is useful in conjunction with the lookahead() method.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
RuleCharacterIterator.java 164 c = Utility.unescapeAt(lookahead(), offset);
241 * options. This is useful in conjunction with the lookahead() method.
263 * sequence of calls is to call skipIgnored(), then call lookahead(), then
264 * parse the string returned by lookahead(), then call jumpahead() to
269 public String lookahead() { method in class:RuleCharacterIterator
279 * This is useful in conjunction with the lookahead() method.
  /external/aac/libSBRenc/src/
tran_det.h 128 INT lookahead; member in struct:__anon5558
tran_det.cpp 809 h_sbrFastTransientDetector->lookahead = TRAN_DET_LOOKAHEAD;
812 buff_size = h_sbrFastTransientDetector->nTimeSlots + h_sbrFastTransientDetector->lookahead;
917 const int lookahead = h_sbrFastTransientDetector->lookahead; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 913 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack); local
922 count = lookahead.len;
924 if (!(this+lookahead[i]).intersects (c->glyphs))
927 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead);
939 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack); local
949 count = lookahead.len;
951 (this+lookahead[i]).add_coverage (c->after);
953 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead);
979 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack); local
980 const ArrayOf<GlyphID> &substitute = StructAfter<ArrayOf<GlyphID> > (lookahead);
1005 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (backtrack); local
    [all...]
  /external/v8/test/mjsunit/
regexp-capture-3.js 176 NoHang(/(?!(((.*)*)*x)?)foo/); // Negative lookahead is filtered.
177 NoHang(/(?!(((.*)*)*x))?/); // Continuation branch of negative lookahead.
178 NoHang(/(?=(((.*)*)*x)?)foo/); // Positive lookahead is filtered.
179 NoHang(/(?=(((.*)*)*x))?/); // Continuation branch of positive lookahead.
180 NoHang(/(?=?)(((.*)*)*x)/); // Positive lookahead also prunes continuation.
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 290 final boolean lookahead(char c, int n) method in class:XPathParser
391 * @param n number of tokens to lookahead. Must be
397 private final boolean lookahead(String s, int n) method in class:XPathParser
404 String lookahead = (String) m_ops.m_tokenQueue.elementAt(m_queueMark + (n - 1)); local
406 isToken = (lookahead != null) ? lookahead.equals(s) : (s == null);
874 if (tokenIs('!') && lookahead('=', 1))
    [all...]
  /external/bison/examples/calc++/
calc++-parser.cc 335 /// Lookahead and lookahead in internal form.
348 /// Semantic value of the lookahead.
351 /// Location of the lookahead.
404 /* Try to take a decision without lookahead. */
409 /* Read a lookahead token. */
444 /* Shift the lookahead token. */
573 lookahead is translated. */
597 /* Make sure we have latest lookahead translation. See comments at
613 /* If just tried and failed to reuse lookahead token after a
    [all...]
  /external/libvpx/libvpx/vp8/
vp8cx.mk 47 VP8_CX_SRCS-yes += encoder/lookahead.c
48 VP8_CX_SRCS-yes += encoder/lookahead.h
  /external/lzma/C/
7zStream.c 136 void LookToRead_CreateVTable(CLookToRead *p, int lookahead)
138 p->s.Look = lookahead ?
7zTypes.h 203 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8cx.mk 47 VP8_CX_SRCS-yes += encoder/lookahead.c
48 VP8_CX_SRCS-yes += encoder/lookahead.h
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 458 char lookahead = pos + 1 < cssLimit ? css.charAt(pos + 1) : 0;
459 if (lookahead == '/' || lookahead == '*') {
519 char lookahead = pos + 1 < cssLimit ? css.charAt(pos + 1) : 0;
520 if (isDecimal(lookahead)
521 || (lookahead == '.' && pos + 2 < cssLimit
533 } else if (isIdentPart(lookahead)) {
574 char lookahead = pos + 1 < cssLimit ? css.charAt(pos + 1) : 0;
575 if (lookahead == '=') {
578 } else if (ch == '|' && lookahead == '|')
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_temporal_filter.c 386 const int num_frames_forward = vp9_lookahead_depth(cpi->lookahead)
456 struct lookahead_entry *buf = vp9_lookahead_peek(cpi->lookahead,
477 // extends beyond the end of the lookahead buffer.
481 frames_after_arf = vp9_lookahead_depth(cpi->lookahead)
vp9_mbgraph.c 386 int i, n_frames = vp9_lookahead_depth(cpi->lookahead);
411 struct lookahead_entry *q_cur = vp9_lookahead_peek(cpi->lookahead, i);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 24 * Use ANTLRWorks to see the lookahead use (step by Location)
  /external/bison/data/
lalr1.cc 117 /// \param tok the lookahead token.
511 /// Lookahead and lookahead in internal form.
524 /// Semantic value of the lookahead.
527 /// Location of the lookahead.
575 /* Try to take a decision without lookahead. */
580 /* Read a lookahead token. */
618 /* Shift the lookahead token. */
685 lookahead is translated. */
709 /* Make sure we have latest lookahead translation. See comments a
    [all...]
glr.c 79 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
94 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
706 * stacks have actually needed the current lookahead. During deterministic
720 /** The lookahead for this reduction. */
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/jszip/
jszip.min.js     [all...]
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 452 num_frames_forward = vp8_lookahead_depth(cpi->lookahead)
509 struct lookahead_entry* buf = vp8_lookahead_peek(cpi->lookahead,
  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.c 382 int i, n_frames = vp9_lookahead_depth(cpi->lookahead);
408 struct lookahead_entry *q_cur = vp9_lookahead_peek(cpi->lookahead, i);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
temporal_filter.c 449 num_frames_forward = vp8_lookahead_depth(cpi->lookahead)
506 struct lookahead_entry* buf = vp8_lookahead_peek(cpi->lookahead,
  /development/ndk/platforms/android-9/arch-x86/include/asm/
processor_32.h 150 unsigned char ftop, changed, lookahead, no_update, rm, alimit; member in struct:i387_soft_struct

Completed in 1060 milliseconds

12 3 4 5 6