HomeSort by relevance Sort by last modified time
    Searched defs:lookahead (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStreamState.h 39 NSMutableArray *lookahead; variable
60 - (NSMutableArray *) lookahead;
ANTLRUnbufferedCommonTreeNodeStream.h 54 NSMutableArray *lookahead; variable
70 @property (retain, getter=getLookahead, setter=setLookahead:) NSMutableArray *lookahead; variable
106 #pragma mark Lookahead Handling
  /external/icu/icu4c/source/common/
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
  /cts/tools/dasm/src/java_cup/
lalr_item.java 7 * a set of lookahead symbols (terminal). (The first two of these parts
16 * that B has already been parsed, and that we will expect to see a lookahead
20 * Items may initially be missing some items from their lookahead sets.
22 * to be updated if symbols are added to its lookahead set. During
23 * "lookahead propagation", we add symbols to various lookahead sets and
40 * @param look the set of lookahead symbols.
55 * @param look the set of lookahead symbols.
64 /** Constructor with default position and empty lookahead set.
76 /** The lookahead symbols of the item. *
80 public terminal_set lookahead() {return _lookahead;}; method in class:lalr_item
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator.h 57 // For dynamically changing the lookahead when using SoftReset...().
58 int lookahead; member in struct:__anon26591
198 // the lookahead (i.e. the lookahead should be subtracted from the returned
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 - self->lookahead
    [all...]
  /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/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/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 196 String lookahead = null; // next token local
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.equals("\'")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
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;
  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 20 * (using the current state and the current lookahead token as indexes) to
26 * table is consulted (using the new state and current lookahead token as
236 /** The current lookahead token. */
355 * @param cur_token the current lookahead token.
367 * @param cur_token the current lookahead token.
745 * found, then we fail. Next a small number of "lookahead" or "parse
751 * to "parse ahead" though the buffered lookahead tokens. The "parse ahead"
775 /* read ahead to create lookahead we can parse multiple times */
789 if (lookahead[0].sym == EOF_sym())
804 /* do the real parse (including actions) across the lookahead */
877 protected token lookahead[]; field in class:lr_parser
    [all...]
  /external/lzma/C/
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 = (size_t)inSize;
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
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/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/opencv3/3rdparty/zlib/
deflate.h 161 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/
deflate.h 161 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/
deflate.h 161 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/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/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...]
  /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 3055 milliseconds

1 2 3 4