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

12

/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/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DAbstractBreakIteratorTests.java63 public int following(int offset) { method in class:AbstractBreakIteratorTests.AbstractBreakIterator
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DBreakIteratorICU.java53 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/
H A DAbstractBreakIteratorTests.java62 public int following(int offset) { method in class:AbstractBreakIteratorTests.AbstractBreakIterator
/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/icu/icu4c/source/i18n/
H A Dsearch.cpp209 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/
H A DBreakIterator.java55 * 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(offse
775 public int following(int offset) { method in class:BreakIterator.BreakIteratorHandle
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java76 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
251 public int following(int offset) { method in class:SimpleFilteredSentenceBreakIterator
252 return internalNext(delegate.following(offset));
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSearchIterator.java34 * 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
H A DBreakIterator.java65 * following invariants:
171 * int end = boundary.following(pos);
184 * int last = wb.following(pos);
294 * @return The position of the first boundary position following the
313 * boundary position following the specified position. (Whether the
319 * @return The position of the first boundary position following
323 public abstract int following(int offset); method in class:BreakIterator
341 int pos = following(offset);
351 * iteration position is set as though following() had been called.
363 return following(offse
[all...]
H A DRuleBasedBreakIterator.java565 // proposed break by one of the breaks we found. Use following() and
571 return following(startPos);
680 * Sets the iterator to refer to the first boundary position following
686 public int following(int offset) { method in class:RuleBasedBreakIterator
691 // inherited following() method. This will call other methods in this
922 // otherwise, we can use following() on the position before the specified
926 // return following(offset - 1) == offset;
932 boolean result = following(pos) == offset;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DSearchIterator.java33 * 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/
H A DSimpleFilteredSentenceBreakIterator.java74 // Assume a space is following the '.' (so we handle the case: "Mr. /Brown")
249 public int following(int offset) { method in class:SimpleFilteredSentenceBreakIterator
250 return internalNext(delegate.following(offset));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBreakIterator.java64 * following invariants:
170 * int end = boundary.following(pos);
183 * int last = wb.following(pos);
300 * @return The position of the first boundary position following the
321 * boundary position following the specified position. (Whether the
327 * @return The position of the first boundary position following
332 public abstract int following(int offset); method in class:BreakIterator
351 int pos = following(offset);
361 * iteration position is set as though following() had been called.
374 return following(offse
[all...]
H A DRuleBasedBreakIterator.java575 // proposed break by one of the breaks we found. Use following() and
581 return following(startPos);
691 * Sets the iterator to refer to the first boundary position following
698 public int following(int offset) { method in class:RuleBasedBreakIterator
703 // inherited following() method. This will call other methods in this
937 // otherwise, we can use following() on the position before the specified
941 // return following(offset - 1) == offset;
947 boolean result = following(pos) == offset;
/external/icu/icu4c/source/common/
H A Dfilteredbrk.cpp200 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));
H A Drbbi.cpp685 * Sets the iterator to refer to the first boundary position following
690 int32_t RuleBasedBreakIterator::following(int32_t offset) { function in class:RuleBasedBreakIterator
856 // up to refer to the following codepoint.
939 // otherwise, we can use following() on the position before the specified
944 UBool result = following(backOne) == offset;
1699 // proposed break by one of the breaks we found. Use following() and
1705 return following(startPos);
/external/v8/src/arm64/
H A Dinstructions-arm64.h21 // The following macros initialize a float/double variable with a bit pattern
124 V8_INLINE const Instruction* following(int count = 1) const { function in class:v8::internal::Instruction
128 V8_INLINE Instruction* following(int count = 1) { function in class:v8::internal::Instruction
133 return following(-count);
137 return following(-count);
205 return IsBrk() && following()->IsBrk();
237 // The following instructions use csp or wsp as Rd:
266 // The following instructions use csp or wsp as Rn:
330 int32_t low16 = following()->ImmException();
472 // following value
[all...]
/external/guice/extensions/persist/lib/
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...

Completed in 494 milliseconds

12