Searched defs:lookahead (Results 1 - 25 of 42) sorted by relevance

12

/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;
H A DANTLRUnbufferedCommonTreeNodeStream.h54 NSMutableArray *lookahead; variable
70 @property (retain, getter=getLookahead, setter=setLookahead:) NSMutableArray *lookahead; variable
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DRuleCharacterIterator.java165 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/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/webrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.h57 // For dynamically changing the lookahead when using SoftReset...().
58 int lookahead; member in struct:__anon20985
198 // the lookahead (i.e. the lookahead should be subtracted from the returned
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/aac/libSBRenc/src/
H A Dtran_det.h128 INT lookahead; member in struct:__anon271
H A Dtran_det.cpp809 h_sbrFastTransientDetector->lookahead = TRAN_DET_LOOKAHEAD;
812 buff_size = h_sbrFastTransientDetector->nTimeSlots + h_sbrFastTransientDetector->lookahead;
917 const int lookahead = h_sbrFastTransientDetector->lookahead; local
936 FDKmemclear(transientCandidates+lookahead, nTimeSlots*sizeof(int));
938 for(timeSlot = lookahead; timeSlot < nTimeSlots + lookahead; timeSlot++) {
1010 FDK_ASSERT(lookahead >= 2);
1011 for(timeSlot = lookahead; timeSlot < nTimeSlots + lookahead; timeSlo
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRuleCharacterIterator.java164 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/lzma/C/
H A D7zStream.c136 void LookToRead_CreateVTable(CLookToRead *p, int lookahead) argument
138 p->s.Look = lookahead ?
H A D7zDec.c144 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 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/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/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java290 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));
406 isToken = (lookahead != null) ? lookahead.equals(s) : (s == null);
874 if (tokenIs('!') && lookahead('=', 1))
1444 else if (lookahead('(', 1) || (lookahead(':', 1) && lookahead('(',
[all...]
/external/bison/src/
H A Dielr.c46 * a goto on <tt>ritem[i]</tt> include the lookahead set of the item.
189 * \c i include the lookahead set of item \c j in the from state of goto
217 one whose lookahead set is included in this goto's follows. */
379 symbol_number lookahead, state ***predecessors,
404 lookahead set from the RHS's only nonterminal, and (2) no reduction
405 has a lookback dependency on this lookahead set. Nevertheless, I
437 predecessor items' lookahead sets. */
464 return bitset_test (item_lookahead_sets[s->number][item], lookahead);
558 * \c NULL iff all lookahead sets are empty. <tt>lookaheads[i] = NULL</tt>
559 * iff the lookahead se
378 ielr_item_has_lookahead(state *s, symbol_number lhs, size_t item, symbol_number lookahead, state ***predecessors, bitset **item_lookahead_sets) argument
[all...]
/external/opencv3/3rdparty/zlib/
H A Ddeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
282 /* Minimum amount of lookahead, except at the end of the input file.
/external/pdfium/third_party/zlib_v128/
H A Ddeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
282 /* Minimum amount of lookahead, except at the end of the input file.
/external/zlib/src/
H A Ddeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
282 /* Minimum amount of lookahead, except at the end of the input file.
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsub-table.hh913 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/flac/libFLAC/
H A Dstream_decoder.c161 FLAC__bool cached; /* true if there is a byte in lookahead */
164 FLAC__byte lookahead; /* temp storage when we need to look ahead one byte in the stream */ member in struct:FLAC__StreamDecoderPrivate
1354 x = (FLAC__uint32)decoder->private_->lookahead;
1389 decoder->private_->lookahead = (FLAC__byte)x;
1995 x = (FLAC__uint32)decoder->private_->lookahead;
2010 decoder->private_->lookahead = (FLAC__byte)x;
2220 decoder->private_->lookahead = (FLAC__byte)x;
2381 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
2394 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
/external/icu/icu4c/source/tools/genrb/
H A Dparse.cpp109 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; member in struct:__anon6982
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...]

Completed in 961 milliseconds

12