/external/bison/src/ |
H A D | ielr.h | 43 symbol_number lookahead, state ***predecessors,
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
H A D | AVT.java | 196 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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 39 NSMutableArray *lookahead; variable 60 - (NSMutableArray *) lookahead;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 39 NSMutableArray *lookahead; variable 60 - (NSMutableArray *) lookahead;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 39 NSMutableArray *lookahead; variable 60 - (NSMutableArray *) lookahead;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 39 NSMutableArray *lookahead; variable 60 - (NSMutableArray *) lookahead;
|
H A D | ANTLRUnbufferedCommonTreeNodeStream.h | 54 NSMutableArray *lookahead; variable 70 @property (retain, getter=getLookahead, setter=setLookahead:) NSMutableArray *lookahead; variable
|
/external/pdfium/third_party/zlib_v128/ |
H A D | deflate.c | 337 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/zlib/src/ |
H A D | deflate.c | 338 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 D | HtmlLexer.java | 222 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/webrtc/webrtc/modules/audio_processing/utility/ |
H A D | delay_estimator_wrapper.h | 89 // - 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 D | delay_estimator_wrapper.c | 353 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 D | delay_estimator.c | 419 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...] |
H A D | delay_estimator.h | 57 // For dynamically changing the lookahead when using SoftReset...(). 58 int lookahead; member in struct:__anon20324 198 // the lookahead (i.e. the lookahead should be subtracted from the returned
|
/external/lzma/C/ |
H A D | 7zDec.c | 144 size_t lookahead = (1 << 18);
local 145 if (lookahead > inSize)
146 lookahead = (size_t)inSize;
147 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead);
152 SizeT inProcessed = (SizeT)lookahead, dicPos = state.dicPos;
155 lookahead -= inProcessed;
161 if (state.dicBufSize != outSize || lookahead != 0 ||
194 size_t lookahead = (1 << 18);
local 195 if (lookahead > inSize)
196 lookahead [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | NamespaceSupport2.java | 392 private String lookahead=null; field in class:PrefixForUriEnumerator 406 if(lookahead!=null) 414 lookahead=prefix; 425 String tmp=lookahead; 426 lookahead=null;
|
/external/harfbuzz_ng/src/ |
H A D | hb-ot-layout-gsubgpos-private.hh | 904 const USHORT lookahead[], 913 skippy_iter.set_match_func (match_func, match_data, lookahead); 1563 const USHORT lookahead[], 1575 lookaheadCount, lookahead, 1587 const USHORT lookahead[], 1599 lookaheadCount, lookahead, 1611 const USHORT lookahead[] HB_UNUSED, 1628 const USHORT lookahead[], 1643 lookaheadCount, lookahead, 1658 const ArrayOf<USHORT> &lookahead local 902 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 1557 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 1581 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 1622 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 1672 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local 1686 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local 1699 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local 1714 const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); local 2013 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local 2034 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local 2053 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local 2080 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local 2100 const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); local [all...] |
/external/icu/icu4c/source/common/ |
H A D | ruleiter.cpp | 74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset); 111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { function in class:RuleCharacterIterator
|
H A D | ruleiter.h | 169 * options. This is useful in conjunction with the lookahead() method. 183 * sequence of calls is to call skipIgnored(), then call lookahead(), then 184 * parse the string returned by lookahead(), then call jumpahead() to 191 UnicodeString& lookahead(UnicodeString& result, int32_t maxLookAhead = -1) const; 195 * This is useful in conjunction with the lookahead() method.
|
/external/selinux/sepolgen/src/sepolgen/ |
H A D | yacc.py | 188 lookahead = None # Current lookahead symbol 189 lookaheadstack = [ ] # Stack of lookahead symbols 226 # Get the next symbol on the input. If a lookahead symbol 231 if not lookahead: 233 lookahead = get_token() # Get the next token 235 lookahead = lookaheadstack.pop() 236 if not lookahead: 237 lookahead = YaccSymbol() 238 lookahead [all...] |
/external/icu/icu4c/source/tools/genrb/ |
H A D | parse.cpp | 109 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; member in struct:__anon7154 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); 175 ustr_deinit(&state->lookahead[i].comment); 186 result = state->lookahead[stat [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | 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/ |
H A D | 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/openfst/src/include/fst/ |
H A D | fstlib.h | 117 #include <fst/lookahead-filter.h> 118 #include <fst/lookahead-matcher.h>
|
/external/aac/libSBRenc/src/ |
H A D | tran_det.h | 128 INT lookahead; member in struct:__anon440
|