Searched refs:lookahead (Results 1 - 25 of 131) sorted by relevance

123456

/external/bison/src/
H A Dielr.h43 symbol_number lookahead, state ***predecessors,
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVT.java196 String lookahead = null; // next token
201 if (lookahead != null)
203 t = lookahead;
204 lookahead = null;
228 lookahead = tokenizer.nextToken();
230 if (lookahead.equals("{"))
234 buffer.append(lookahead);
236 lookahead = null;
242 else if(lookahead.equals("\"") || lookahead
[all...]
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.h35 // - lookahead : Amount of non-causal lookahead to use. This can
41 // A value of zero is the typical no-lookahead case.
51 int lookahead);
64 // value will be offset by the lookahead (i.e. the lookahead should be
H A Ddelay_estimator.h55 int lookahead);
68 // end spectra. The value will be offset by the lookahead (i.e. the lookahead
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRUnbufferedCommonTreeNodeStreamState.h39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
/external/chromium_org/third_party/ply/
H A Dyacc.py283 lookahead = None # Current lookahead symbol
284 lookaheadstack = [ ] # Stack of lookahead symbols
332 # Get the next symbol on the input. If a lookahead symbol
341 if not lookahead:
343 lookahead = get_token() # Get the next token
345 lookahead = lookaheadstack.pop()
346 if not lookahead:
347 lookahead = YaccSymbol()
348 lookahead
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c337 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
363 while (s->lookahead >= MIN_MATCH) {
365 n = s->lookahead - (MIN_MATCH-1);
375 s->lookahead = MIN_MATCH-1;
378 s->strstart += s->lookahead;
380 s->insert = s->lookahead;
381 s->lookahead = 0;
898 if (strm->avail_in != 0 || s->lookahead != 0 ||
932 if (s->lookahead == 0) {
1121 s->lookahead
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.c338 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
376 s->lookahead = MIN_MATCH-1;
379 s->strstart += s->lookahead;
381 s->insert = s->lookahead;
382 s->lookahead = 0;
899 if (strm->avail_in != 0 || s->lookahead != 0 ||
933 if (s->lookahead == 0) {
1122 s->lookahead
[all...]
/external/zlib/src/
H A Ddeflate.c338 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
376 s->lookahead = MIN_MATCH-1;
379 s->strstart += s->lookahead;
381 s->insert = s->lookahead;
382 s->lookahead = 0;
899 if (strm->avail_in != 0 || s->lookahead != 0 ||
933 if (s->lookahead == 0) {
1122 s->lookahead
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlLexer.java222 private final LinkedList<HtmlToken> lookahead = Lists.newLinkedList(); field in class:HtmlLexer
224 if (!lookahead.isEmpty()) {
225 return lookahead.remove();
234 while (lookahead.size() <= i && splitter.hasNext()) {
235 lookahead.add(splitter.next());
237 return lookahead.size() > i ? lookahead.get(i) : null;
241 lookahead.addFirst(token);
/external/chromium_org/third_party/zlib/
H A Ddeflate.c344 * s->lookahead stays null, so s->ins_h will be recomputed at the next
822 if (strm->avail_in != 0 || s->lookahead != 0 ||
873 if (s->lookahead == 0) {
1062 s->lookahead = 0;
1132 * OUT assertion: the match length is not greater than s->lookahead.
1182 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1184 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1195 * for insufficient lookahead only occur occasionally for performance
1198 * However the length of the match is limited to the lookahead, s
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.h89 // - max_lookahead : Maximum amount of non-causal lookahead allowed. The
90 // actual amount of lookahead used can be controlled by
91 // WebRtc_set_lookahead(...). The default |lookahead| is
96 // Using lookahead can detect cases in which a near-end
102 // A value of zero is the typical no-lookahead case.
107 // [-|lookahead|,... ,|history_size|-|lookahead|)
149 // Sets the amount of |lookahead| to use. Valid values are [0, max_lookahead]
155 // - lookahead : The amount of lookahead t
[all...]
H A Ddelay_estimator_wrapper.c353 int WebRtc_set_lookahead(void* handle, int lookahead) { argument
357 if ((lookahead > self->binary_handle->near_history_size - 1) ||
358 (lookahead < 0)) {
361 self->binary_handle->lookahead = lookahead;
362 return self->binary_handle->lookahead;
369 return self->binary_handle->lookahead;
H A Ddelay_estimator.c419 self->lookahead = max_lookahead;
504 int lookahead = 0; local
506 lookahead = self->lookahead;
507 self->lookahead -= delay_shift;
508 if (self->lookahead < 0) {
509 self->lookahead = 0;
511 if (self->lookahead > self->near_history_size - 1) {
512 self->lookahead = self->near_history_size - 1;
514 return lookahead
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A D7zDec.c142 size_t lookahead = (1 << 18); local
143 if (lookahead > inSize)
144 lookahead = (size_t)inSize;
145 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead);
150 SizeT inProcessed = (SizeT)lookahead, dicPos = state.dicPos;
153 lookahead -= inProcessed;
159 if (state.dicBufSize != outSize || lookahead != 0 ||
192 size_t lookahead = (1 << 18); local
193 if (lookahead > inSize)
194 lookahead
[all...]
/external/lzma/C/
H A D7zDec.c142 size_t lookahead = (1 << 18); local
143 if (lookahead > inSize)
144 lookahead = (size_t)inSize;
145 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead);
150 SizeT inProcessed = (SizeT)lookahead, dicPos = state.dicPos;
153 lookahead -= inProcessed;
159 if (state.dicBufSize != outSize || lookahead != 0 ||
192 size_t lookahead = (1 << 18); local
193 if (lookahead > inSize)
194 lookahead
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNamespaceSupport2.java392 private String lookahead=null; field in class:PrefixForUriEnumerator
406 if(lookahead!=null)
414 lookahead=prefix;
425 String tmp=lookahead;
426 lookahead=null;
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh907 const USHORT lookahead[],
915 skippy_iter.set_match_func (match_func, match_data, lookahead);
1564 const USHORT lookahead[],
1576 lookaheadCount, lookahead,
1588 const USHORT lookahead[],
1600 lookaheadCount, lookahead,
1612 const USHORT lookahead[] HB_UNUSED,
1629 const USHORT lookahead[],
1644 lookaheadCount, lookahead,
1659 const ArrayOf<USHORT> &lookahead local
905 match_lookahead(hb_apply_context_t *c, unsigned int count, const USHORT lookahead[], match_func_t match_func, const void *match_data, unsigned int offset) argument
1558 chain_context_closure_lookup(hb_closure_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextClosureLookupContext &lookup_context) argument
1582 chain_context_collect_glyphs_lookup(hb_collect_glyphs_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextCollectGlyphsLookupContext &lookup_context) argument
1623 chain_context_apply_lookup(hb_apply_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextApplyLookupContext &lookup_context) argument
1673 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
1687 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
1700 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
2008 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2029 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2048 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2075 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh907 const USHORT lookahead[],
915 skippy_iter.set_match_func (match_func, match_data, lookahead);
1565 const USHORT lookahead[],
1577 lookaheadCount, lookahead,
1589 const USHORT lookahead[],
1601 lookaheadCount, lookahead,
1613 const USHORT lookahead[] HB_UNUSED,
1630 const USHORT lookahead[],
1645 lookaheadCount, lookahead,
1660 const ArrayOf<USHORT> &lookahead local
905 match_lookahead(hb_apply_context_t *c, unsigned int count, const USHORT lookahead[], match_func_t match_func, const void *match_data, unsigned int offset) argument
1559 chain_context_closure_lookup(hb_closure_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextClosureLookupContext &lookup_context) argument
1583 chain_context_collect_glyphs_lookup(hb_collect_glyphs_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextCollectGlyphsLookupContext &lookup_context) argument
1624 chain_context_apply_lookup(hb_apply_context_t *c, unsigned int backtrackCount, const USHORT backtrack[], unsigned int inputCount, const USHORT input[], unsigned int lookaheadCount, const USHORT lookahead[], unsigned int lookupCount, const LookupRecord lookupRecord[], ChainContextApplyLookupContext &lookup_context) argument
1674 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
1688 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
1701 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local
2009 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2030 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2049 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
2076 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset);
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { function in class:RuleCharacterIterator
/external/icu/icu4c/source/common/
H A Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset);
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { function in class:RuleCharacterIterator
/external/libcxx/test/re/re.alg/re.alg.search/
H A DAndroid.mk47 test_name := re/re.alg/re.alg.search/lookahead
48 test_src := lookahead.pass.cpp

Completed in 3799 milliseconds

123456