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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 13 this.following = [];
  /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();
  /development/samples/AppNavigation/
Android.mk 16 # Use the following include to make our test apk.
  /packages/apps/Gallery/
Android.mk 13 # Use the following include to make our test apk.
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 134 it.following(-1);
140 assertEquals(1, it.following(0));
141 assertEquals(2, it.following(1));
142 assertEquals(5, it.following(4));
143 assertEquals(BreakIterator.DONE, it.following(5));
146 it.following(6);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3parser.c 13 // modification, are permitted provided that the following conditions
16 // notice, this list of conditions and the following disclaimer.
18 // notice, this list of conditions and the following disclaimer in the
132 if (parser->rec->state->following != NULL)
134 parser->rec->state->following->free(parser->rec->state->following);
135 parser->rec->state->following = NULL;
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
terminate.js 11 // The following may or may not be executed, even if dnsResolve() terminates
20 // The following definitely won't be executed, since control should never
  /external/clang/test/Sema/
darwin-align-cast.c 11 This code below comes from the following system headers:
  /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;
  /development/apps/BuildWidget/
Android.mk 15 # Use the following include to make our test apk.
  /development/apps/SettingInjectorSample/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/ActionBarCompat/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/BluetoothChat/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/BluetoothHDP/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/Compass/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/ContactManager/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/HeavyWeight/
Android.mk 16 # Use the following include to make our test apk.
  /development/samples/HelloActivity/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/HoneycombGallery/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/KeyChainDemo/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/LunarLander/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/MultiResolution/
Android.mk 15 # Use the following include to make our test apk.
  /development/samples/NotePad/
Android.mk 15 # Use the following include to make our test apk.

Completed in 1102 milliseconds

1 2 3 4 5 6 7 8 91011>>