Searched defs:following (Results 1 - 24 of 24) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognizerSharedState.h6 // 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/
H A DANTLRRecognizerSharedState.h6 // 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/
H A DANTLRRecognizerSharedState.h6 // 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/
H A DANTLRRecognizerSharedState.h6 // 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/
H A DRecognizerSharedState.cs11 * 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/
H A DRecognizerSharedState.cs11 * 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/
H A DRecognizerSharedState.java7 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,
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3recognizersharedstate.h25 // 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/
H A Dsearch.cpp207 int32_t SearchIterator::following(int32_t position, function in class:SearchIterator
/external/icu/icu4c/source/i18n/
H A Dsearch.cpp207 int32_t SearchIterator::following(int32_t position, function in class:SearchIterator
H A Dfilteredbrk.cpp75 virtual int32_t following(int32_t offset) { return fDelegate->following(offset); } function in class:ULISentenceBreakIterator
121 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DFullscreen.cpp78 // following are true, and false otherwise:
222 // 1. If any of the following conditions are true, terminate these steps and queue a task to fire
253 Deque<Document*>::iterator current = docs.begin(), following = docs.begin(); local
256 ++following;
258 // 1. Let following document be the document after document in docs, or null if there is no
261 Document* followingDoc = following != docs.end() ? *following : 0;
263 // 2. If following document is null, push context object on document's fullscreen element
273 // is not following document's browsing context container,
276 // ...push following documen
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp705 int NonSharedCharacterBreakIterator::following(int offset) const function in class:blink::NonSharedCharacterBreakIterator
708 return m_iterator->following(offset);
/external/chromium_org/third_party/icu/source/common/
H A Drbbi.cpp698 * Sets the iterator to refer to the first boundary position following
703 int32_t RuleBasedBreakIterator::following(int32_t offset) { function in class:RuleBasedBreakIterator
861 // up to refer to the following codepoint.
944 // otherwise, we can use following() on the position before the specified
949 UBool result = following(backOne) == offset;
1727 // proposed break by one of the breaks we found. Use following() and
1733 return following(startPos);
/external/chromium_org/v8/src/arm64/
H A Dinstructions-arm64.h21 // The following macros initialize a float/double variable with a bit pattern
124 V8_INLINE Instruction* following(int count = 1) { function in class:v8::internal::Instruction
129 return following(-count);
221 // The following instructions use csp or wsp as Rd:
250 // The following instructions use csp or wsp as Rn:
442 // following values:
/external/icu/icu4c/source/common/
H A Drbbi.cpp698 * Sets the iterator to refer to the first boundary position following
703 int32_t RuleBasedBreakIterator::following(int32_t offset) { function in class:RuleBasedBreakIterator
861 // up to refer to the following codepoint.
944 // otherwise, we can use following() on the position before the specified
949 UBool result = following(backOne) == offset;
1728 // proposed break by one of the breaks we found. Use following() and
1734 return following(startPos);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 1640 milliseconds