Searched refs:following (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/external/libopus/celt/arm/
H A Darmopts.s.in4 modification, are permitted provided that the following conditions
8 notice, this list of conditions and the following disclaimer.
11 notice, this list of conditions and the following disclaimer in the
27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
34 ; Set the following to 1 if we have NEON (some ARMv7)
/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/JavaScript/src/org/antlr/runtime/
H A DRecognizerSharedState.js13 this.following = [];
/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/C/src/
H A Dantlr3parser.c13 // 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;
H A Dantlr3treeparser.c13 // 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
137 if (parser->rec->state->following != NULL)
139 parser->rec->state->following->free(parser->rec->state->following);
140 parser->rec->state->following = NULL;
/external/clang/test/Sema/
H A Ddarwin-align-cast.c11 This code below comes from the following system headers:
/external/libdivsufsort/
H A Dgenerate_includes.sh45 Remember to run the following command to add the new headers:
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
H A DBreakIteratorTest.java146 * Test method for 'com.ibm.icu.text.BreakIterator.following(int)'
149 assertEquals(100, cbr.following(pos));
150 assertEquals(103, wbr.following(pos));
151 assertEquals(104, lbr.following(pos));
152 assertEquals(116, sbr.following(pos));
180 cbr.following(pos);
181 wbr.following(pos);
182 lbr.following(pos);
183 sbr.following(pos);
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DBreakIteratorICU.java51 public int following(int offset) { method in class:BreakIteratorICU
52 return fIcuBrkItr.following(offset);
/external/libcxx/src/support/solaris/
H A Dmbsnrtowcs.inc5 * FreeBSD libc. These are covered by the following copyright:
10 * modification, are permitted provided that the following conditions
13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
/external/libvorbis/doc/
H A D10-tables.tex9 lookup table consiting of the following values (read left to right
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb194 @state.following.push( TOKENS_FOLLOWING_group_name_IN_group_spec_85 )
196 @state.following.pop
220 @state.following.push( TOKENS_FOLLOWING_member_IN_group_spec_108 )
222 @state.following.pop
348 @state.following.push( TOKENS_FOLLOWING_parameter_declaration_IN_member_203 )
350 @state.following.pop
445 @state.following.push( TOKENS_FOLLOWING_parameters_IN_parameter_declaration_280 )
447 @state.following.pop
457 @state.following.push( TOKENS_FOLLOWING_parameters_IN_parameter_declaration_293 )
459 @state.following
[all...]
/external/netperf/doc/examples/
H A Dsnapshot_script5 # pair of nodes. At first, it will perform the following tests:
127 echo Testing with the following command line:
141 echo Testing with the following command line:
155 echo Testing with the following command line:
168 echo Testing with the following command line:
183 echo Testing with the following command line:
194 echo Testing with the following command line:
208 echo Testing with the following command line:
H A Dtcp_range_script95 echo Testing with the following command line:
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DBreakIterator.java53 * following invariants:
159 * int end = boundary.following(pos);
172 * int last = wb.following(pos);
287 * @return The position of the first boundary position following the
308 * boundary position following the specified position. (Whether the
314 * @return The position of the first boundary position following
319 public abstract int following(int offset); method in class:BreakIterator
338 int pos = following(offset);
348 * iteration position is set as though following() had been called.
361 return following(offse
773 public int following(int offset) { method in class:BreakIterator.BreakIteratorHandle
[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/llvm/test/MC/ARM/
H A Ddwarf-cfi-initial-state.s16 # The following 2 DW_CFA_nop instructions are "padding"
/external/valgrind/none/tests/solaris/
H A Dreserve_sysstat_addr.stderr.exp3 the following unimplemented functionality:
H A Dreserve_sysstat_zone_addr.stderr.exp3 the following unimplemented functionality:
/external/google-breakpad/android/sample_app/jni/
H A DApplication.mk5 # modification, are permitted provided that the following conditions are
9 # notice, this list of conditions and the following disclaimer.
11 # copyright notice, this list of conditions and the following disclaimer
/external/smali/deodexerant/
H A DAndroid.mk5 # modification, are permitted provided that the following conditions are
9 # notice, this list of conditions and the following disclaimer.
11 # copyright notice, this list of conditions and the following disclaimer
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DRBBIAPITest.java162 * Testing the methods first(), next(), next(int) and following() of RuleBasedBreakIterator
169 logln("Testing first() and next(), following() with custom rules");
187 q = wordIter1.following(2);
189 q = wordIter1.following(22);
193 q = wordIter1.following(wordIter1.last());
195 errln("ERROR: next()/following() at last position returned #"
218 p = charIter1.following(charIter1.last());
221 errln("ERROR: following()/next() at last position returned #"
244 q = sentIter1.following(1);
246 q = sentIter1.following(1
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBIAPITest.java158 * Testing the methods first(), next(), next(int) and following() of RuleBasedBreakIterator
165 logln("Testing first() and next(), following() with custom rules");
183 q = wordIter1.following(2);
185 q = wordIter1.following(22);
189 q = wordIter1.following(wordIter1.last());
191 errln("ERROR: next()/following() at last position returned #"
214 p = charIter1.following(charIter1.last());
217 errln("ERROR: following()/next() at last position returned #"
240 q = sentIter1.following(1);
242 q = sentIter1.following(1
[all...]

Completed in 772 milliseconds

1234567891011>>