/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRRecognizerSharedState.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 33 NSMutableArray *following; // a stack of FOLLOW bitsets used for context sensitive prediction and recovery variable 51 @property (retain, getter=getFollowing, setter=setFollowing:) NSMutableArray *following; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRRecognizerSharedState.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 33 NSMutableArray *following; // a stack of FOLLOW bitsets used for context sensitive prediction and recovery variable 51 @property (retain, getter=getFollowing, setter=setFollowing:) NSMutableArray *following; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRRecognizerSharedState.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 33 NSMutableArray *following; // a stack of FOLLOW bitsets used for context sensitive prediction and recovery variable 51 @property (retain, getter=getFollowing, setter=setFollowing:) NSMutableArray *following; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRRecognizerSharedState.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/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/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 43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE]; field in class:RecognizerSharedState 123 if ( this.following.length < state.following.length ) { 124 this.following = new BitSet[state.following.length]; 126 System.arraycopy(state.following, 0, this.following, 0, state.following.length) [all...] |
/frameworks/base/core/java/android/text/method/ |
WordIterator.java | 85 public int following(int offset) { method in class:WordIterator 88 shiftedOffset = mIterator.following(shiftedOffset); 148 return mIterator.following(shiftedOffset) + mOffsetShift; 152 return mIterator.following(shiftedOffset) + mOffsetShift;
|
/libcore/luni/src/main/java/java/text/ |
BreakIterator.java | 59 * update the current position. All {@code BreakIterator}s uphold the following 179 * int end = boundary.following(pos); 194 * int last = wb.following(pos); 353 * is set as though {@link #following(int)} had been called. 410 * Sets the position of the first boundary to the one following the given 416 * @return the position of the first boundary following the given offset. 420 public abstract int following(int offset); method in class:BreakIterator
|
RuleBasedBreakIterator.java | 42 @Override public int following(int offset) { method in class:RuleBasedBreakIterator 44 return wrapped.following(offset);
|
/external/antlr/antlr-3.4/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/chromium_org/third_party/icu/source/i18n/ |
search.cpp | 207 int32_t SearchIterator::following(int32_t position, function in class:SearchIterator
|
/external/icu4c/i18n/ |
search.cpp | 207 int32_t SearchIterator::following(int32_t position, function in class:SearchIterator
|
/frameworks/base/core/java/android/view/ |
AccessibilityIterators.java | 42 public int[] following(int current); method in interface:AccessibilityIterators.TextSegmentIterator 97 public int[] following(int offset) { method in class:AccessibilityIterators.CharacterTextSegmentIterator 110 start = mImpl.following(start); 115 final int end = mImpl.following(start); 187 public int[] following(int offset) { method in class:AccessibilityIterators.WordTextSegmentIterator 200 start = mImpl.following(start); 205 final int end = mImpl.following(start); 268 public int[] following(int offset) { method in class:AccessibilityIterators.ParagraphTextSegmentIterator
|
/frameworks/base/core/java/android/widget/ |
AccessibilityIterators.java | 51 public int[] following(int offset) { method in class:AccessibilityIterators.LineTextSegmentIterator 136 public int[] following(int offset) { method in class:AccessibilityIterators.PageTextSegmentIterator
|
/external/antlr/antlr-3.4/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 = (NFAState) ruleInvocationTrans.followState; local 263 LookaheadSet fset = _FIRST(following, chaseFollowTransitions); 364 NFAState following = (NFAState) ruleInvocationTrans.followState; local 366 _detectConfoundingPredicates(following, 446 // join this&following-right|following-down
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
FullscreenElementStack.cpp | 149 // 1. If any of the following conditions are true, terminate these steps and queue a task to fire 206 Deque<Document*>::iterator current = docs.begin(), following = docs.begin(); local 209 ++following; 211 // 1. Let following document be the document after document in docs, or null if there is no 214 Document* followingDoc = following != docs.end() ? *following : 0; 216 // 2. If following document is null, push context object on document's fullscreen element 226 // is not following document's browsing context container, 229 // ...push following document's browsing context container on document's fullscreen element
|
/frameworks/base/core/java/android/text/ |
Selection.java | 367 public int following(int position); method in interface:Selection.PositionIterator 387 final int offset = iter.following(getSelectionEnd(text));
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeBreakIterator.java | 88 public int following(int offset) { method in class:NativeBreakIterator
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
TextBreakIteratorICU.cpp | 705 int NonSharedCharacterBreakIterator::following(int offset) const function in class:WebCore::NonSharedCharacterBreakIterator 708 return m_iterator->following(offset); [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbi.cpp | 638 * Sets the iterator to refer to the first boundary position following 643 int32_t RuleBasedBreakIterator::following(int32_t offset) { function in class:RuleBasedBreakIterator 801 // up to refer to the following codepoint. 884 // otherwise, we can use following() on the position before the specified 889 UBool result = following(backOne) == offset; [all...] |
/external/icu4c/common/ |
rbbi.cpp | 699 * Sets the iterator to refer to the first boundary position following 704 int32_t RuleBasedBreakIterator::following(int32_t offset) { function in class:RuleBasedBreakIterator 862 // up to refer to the following codepoint. 945 // otherwise, we can use following() on the position before the specified 950 UBool result = following(backOne) == offset; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
XInput.h | 688 XID following; member in struct:__anon36933 820 * The following structure is used to return information for the 832 * The following structure is used to return motion history data from [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XInput.h | 688 XID following; member in struct:__anon38523 820 * The following structure is used to return information for the 832 * The following structure is used to return motion history data from [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XInput.h | 688 XID following; member in struct:__anon40038 820 * The following structure is used to return information for the 832 * The following structure is used to return motion history data from [all...] |