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

1 2

  /external/antlr/runtime/ObjC/Framework/
RecognizerSharedState.h 6 // modification, are permitted provided that the following conditions
9 // notice, this list of conditions and the following disclaimer.
11 // notice, this list of conditions and the following disclaimer in the
34 __strong AMutableArray *following; // a stack of FOLLOW bitsets used for context sensitive prediction and recovery variable
52 @property (retain, getter=getFollowing, setter=setFollowing:) AMutableArray *following; variable
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmList.java 38 private final CsmElement following; field in class:CsmList
57 return following;
68 public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, CsmElement preceeding, CsmElement following) {
73 this.following = following;
95 if (!nodeList.isEmpty() && following != null) {
96 following.prettyPrint(node, printer);
115 if (!values.isEmpty() && following != null) {
116 following.prettyPrint(node, printer);
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 11 * modification, are permitted provided that the following conditions
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
56 //public List<BitSet> following;
57 public BitSet[] following; field in class:Antlr.Runtime.RecognizerSharedState
152 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
153 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
163 following = (BitSet[])state.following.Clone();
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 11 * modification, are permitted provided that the following conditions
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
58 //public List<BitSet> following;
59 public BitSet[] following; field in class:Antlr.Runtime.RecognizerSharedState
155 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
156 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
167 following = (BitSet[])state.following.Clone();
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 7 modification, are permitted provided that the following conditions
10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
44 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE]; field in class:RecognizerSharedState
125 if ( this.following.length < state.following.length ) {
126 this.following = new BitSet[state.following.length];
128 System.arraycopy(state.following, 0, this.following, 0, state.following.length)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 68 public int following(int offset) { method in class:AbstractBreakIteratorTests.AbstractBreakIterator
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
BreakIteratorICU.java 53 public int following(int offset) { method in class:BreakIteratorICU
54 return fIcuBrkItr.following(offset);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 65 public int following(int offset) { method in class:AbstractBreakIteratorTests.AbstractBreakIterator
  /external/antlr/runtime/C/include/
antlr3recognizersharedstate.h 25 // modification, are permitted provided that the following conditions
28 // notice, this list of conditions and the following disclaimer.
30 // notice, this list of conditions and the following disclaimer in the
80 pANTLR3_STACK following; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
  /external/icu/icu4c/source/common/
ustr_titlecase_brkiter.cpp 61 int32_t following(int32_t offset) U_OVERRIDE;
119 int32_t WholeStringBreakIterator::following(int32_t /*offset*/) { return length; } function in class:WholeStringBreakIterator
rbbi_cache.cpp 45 UBool RuleBasedBreakIterator::DictionaryCache::following(int32_t fromPos, int32_t *result, int32_t *statusIndex) { function in class:RuleBasedBreakIterator::DictionaryCache
51 // Sequential iteration, move from previous boundary to the following
67 // Random indexing. Linear search for the boundary following the given position.
237 void RuleBasedBreakIterator::BreakCache::following(int32_t startPos, UErrorCode &status) { function in class:RuleBasedBreakIterator::BreakCache
361 // Advance to the boundary following the backup position.
388 // Add following position(s) to the cache.
411 while (fTextIdx < position) { // Move forwards to a position at or following the requested pos.
434 if (fBI->fDictionaryCache->following(fromPosition, &pos, &ruleStatusIdx)) {
450 if (fBI->fDictionaryCache->following(fromPosition, &pos, &ruleStatusIdx)) {
511 // Advance to the boundary following the backup position
    [all...]
filteredbrk.cpp 200 virtual int32_t following(int32_t offset);
268 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
445 SimpleFilteredSentenceBreakIterator::following(int32_t offset) { function in class:SimpleFilteredSentenceBreakIterator
446 return internalNext(fDelegate->following(offset));
rbbi.cpp 596 * Sets the iterator to refer to the first boundary position following
601 int32_t RuleBasedBreakIterator::following(int32_t startPos) { function in class:RuleBasedBreakIterator
614 fBreakCache->following(startPos, status);
657 // But we still need the side effect of leaving iteration at the following boundary.
674 // Not on a boundary. isBoundary() must leave iterator on the following boundary.
    [all...]
  /external/icu/icu4c/source/i18n/
search.cpp 209 int32_t SearchIterator::following(int32_t position, function in class:SearchIterator
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
BreakIterator.java 55 * following invariants:
161 * int end = boundary.following(pos);
174 * int last = wb.following(pos);
289 * @return The position of the first boundary position following the
310 * boundary position following the specified position. (Whether the
316 * @return The position of the first boundary position following
321 public abstract int following(int offset); method in class:BreakIterator
340 int pos = following(offset);
350 * iteration position is set as though following() had been called.
363 return following(offset - 1) == offset
775 public int following(int offset) { method in class:BreakIterator.BreakIteratorHandle
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java 7 * modification, are permitted provided that the following conditions
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
262 NFAState following = ruleInvocationTrans.followState; local
263 LookaheadSet fset = _FIRST(following, chaseFollowTransitions);
364 NFAState following = ruleInvocationTrans.followState; local
366 _detectConfoundingPredicates(following,
446 // join this&following-right|following-down
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java 79 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
254 public int following(int offset) { method in class:SimpleFilteredSentenceBreakIterator
255 return internalNext(delegate.following(offset));
CaseMapImpl.java 126 // The following code is not used anywhere in this private class
324 public int following(int offset) { method in class:CaseMapImpl.WholeStringBreakIterator
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakIterator.java 66 * following invariants:
172 * int end = boundary.following(pos);
185 * int wordStart = wb.following(pos);
293 * @return The position of the first boundary position following the
312 * boundary position following the specified position. (Whether the
318 * @return The position of the first boundary position following
322 public abstract int following(int offset); method in class:BreakIterator
340 int pos = following(offset);
350 * iteration position is set as though following() had been called.
362 return following(offset - 1) == offset
    [all...]
SearchIterator.java 34 * a given pattern. The following example uses a <tt>StringSearch</tt>
537 * @return The character index of the first match following
543 public final int following(int position) { method in class:SearchIterator
RuleBasedBreakIterator.java 430 * Sets the iterator to refer to the first boundary position following
436 public int following(int startPos) { method in class:RuleBasedBreakIterator
446 fBreakCache.following(startPos);
499 // But we still need the side effect of leaving iteration at the following boundary.
508 // Not on a boundary. isBoundary() must leave iterator on the following boundary.
776 * fPosition: the boundary following the starting position.
1354 void following(int startPos) { method in class:RuleBasedBreakIterator.BreakCache
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 33 * a given pattern. The following example uses a <tt>StringSearch</tt>
557 * @return The character index of the first match following
564 public final int following(int position) { method in class:SearchIterator
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleFilteredSentenceBreakIterator.java 77 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
252 public int following(int offset) { method in class:SimpleFilteredSentenceBreakIterator
253 return internalNext(delegate.following(offset));
CaseMapImpl.java 121 // The following code is not used anywhere in this private class
319 public int following(int offset) { method in class:CaseMapImpl.WholeStringBreakIterator
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakIterator.java 65 * following invariants:
171 * int end = boundary.following(pos);
184 * int wordStart = wb.following(pos);
299 * @return The position of the first boundary position following the
320 * boundary position following the specified position. (Whether the
326 * @return The position of the first boundary position following
331 public abstract int following(int offset); method in class:BreakIterator
350 int pos = following(offset);
360 * iteration position is set as though following() had been called.
373 return following(offset - 1) == offset
    [all...]

Completed in 1786 milliseconds

1 2