/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BufferedTokenStream.java | 196 return getTokens(start, stop, (BitSet)null); 200 * the token type BitSet. Return null if no tokens were found. This 203 public List getTokens(int start, int stop, BitSet types) { 224 return getTokens(start,stop,new BitSet(types)); 228 return getTokens(start,stop,BitSet.of(ttype));
|
LegacyCommonTokenStream.java | 192 return getTokens(start, stop, (BitSet)null); 196 * the token type BitSet. Return null if no tokens were found. This 199 public List getTokens(int start, int stop, BitSet types) { 228 return getTokens(start,stop,new BitSet(types)); 232 return getTokens(start,stop,BitSet.of(ttype));
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3tokenstream.c | 716 * the token type BitSet. Return null if no tokens were found. This 772 pANTLR3_BITSET bitSet; 775 bitSet = antlr3BitsetList(list->table); 777 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet); 779 bitSet->free(bitSet); 788 pANTLR3_BITSET bitSet; 791 bitSet = antlr3BitsetOf(type, -1); 792 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet); 794 bitSet->free(bitSet) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/ |
EncoderUtil.java | 24 import java.util.BitSet; 55 private static final BitSet Q_REGULAR_CHARS = initChars("=_?"); 57 private static final BitSet Q_RESTRICTED_CHARS = initChars("=_?\"#$%&'(),.:;<>@[\\]^`{|}~"); 66 private static final BitSet TOKEN_CHARS = initChars("()<>@,;:\\\"/[]?="); 68 private static final BitSet ATEXT_CHARS = initChars("()<>@.,;:\\\"[]"); 70 private static BitSet initChars(String specials) { 71 BitSet bs = new BitSet(128); 402 BitSet qChars = usage == Usage.TEXT_TOKEN ? Q_REGULAR_CHARS 565 BitSet qChars = usage == Usage.TEXT_TOKEN ? Q_REGULAR_CHAR [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BaseRecognizer.pm | 65 Readonly my $usage => 'void match(IntStream input, int ttype, BitSet follow)'; 122 Readonly my $usage => 'void mismatch(IntStream input, int ttype, BitSet follow)'; 304 Readonly my $usage => 'BitSet combine_follows(boolean exact)'; 309 my $follow_set = ANTLR::Runtime::BitSet->new(); 322 Readonly my $usage => 'void recover_from_mismatched_token(IntStream input, int ttype, BitSet follow)'; 364 Readonly my $usage => 'void recover_from_mismatched_set(IntStream input, RecognitionException e, BitSet follow)'; 382 Readonly my $usage => 'boolean recover_from_mismatched_element(IntStream input, RecognitionException e, BitSet follow)'; 418 Readonly my $usage => 'void consume_until(IntStream input, (int token_type | BitSet set))'; 421 if ($_[2]->isa('ANTLR::Runtime::BitSet')) { 441 Readonly my $usage => 'void push_follow(BitSet fset)' [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
BaseRecognizer.cs | 131 public virtual object Match(IIntStream input, int ttype, BitSet follow) { 159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) { 167 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW(); 180 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR 387 BitSet followSet = ComputeErrorRecoverySet(); 495 protected virtual BitSet ComputeErrorRecoverySet() { 553 protected virtual BitSet ComputeContextSensitiveRuleFOLLOW() { 561 protected virtual BitSet CombineFollows(bool exact) { 563 BitSet followSet = new BitSet(); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BaseRecognizer.cs | 141 public virtual object Match( IIntStream input, int ttype, BitSet follow ) 174 public virtual bool MismatchIsMissingToken( IIntStream input, BitSet follow ) 185 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW(); 199 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR 455 BitSet followSet = ComputeErrorRecoverySet(); 565 protected virtual BitSet ComputeErrorRecoverySet() 624 protected virtual BitSet ComputeContextSensitiveRuleFOLLOW() 633 protected virtual BitSet CombineFollows(bool exact) 636 BitSet followSet = new BitSet(); [all...] |
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 21 import java.util.BitSet; 66 * BitSet of printable characters as defined in RFC 1521. 68 private static final BitSet PRINTABLE_CHARS = new BitSet(256); 131 * bitset of characters deemed quoted-printable 136 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) {
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DatabaseAsserts.java | 29 import java.util.BitSet; 189 final BitSet used = new BitSet(cursor.getCount());
|
/external/chromium_org/sync/internal_api/public/base/ |
enum_set.h | 8 #include <bitset> 35 // std::bitset<> with stronger type enforcement, more descriptive 54 typedef std::bitset<kValueCount> EnumBitSet;
|
/frameworks/base/docs/html/sdk/api_diff/19/changes/ |
pkg_java.util.html | 99 <A NAME="BitSet"></A> 100 <nobr><A HREF="java.util.BitSet.html">BitSet</A></nobr>
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
MimeStreamParser.java | 27 import java.util.BitSet;
53 private static BitSet fieldChars = null;
62 fieldChars = new BitSet();
|
/dalvik/dx/src/com/android/dx/cf/cst/ |
ConstantPoolParser.java | 50 import java.util.BitSet; 145 BitSet wasUtf8 = new BitSet(offsets.length); 250 private Constant parse0(int idx, BitSet wasUtf8) {
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
CommonTokenStream.as | 181 * the token type BitSet. Return null if no tokens were found. This 186 public function getTokensBitSet(start:int, stop:int, types:BitSet):Array { 215 return getTokensBitSet(start,stop,new BitSet(types)); 219 return getTokensBitSet(start,stop,BitSet.of(ttype));
|
/external/antlr/antlr-3.4/runtime/JavaScript/build/ |
antlr3.properties | 22 org/antlr/runtime/BitSet.js,\
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRParser.h | 51 BitSet:(ANTLRBitSet *)follow;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRParser.h | 51 BitSet:(ANTLRBitSet *)follow;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRParser.h | 51 BitSet:(ANTLRBitSet *)follow;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRParser.h | 51 BitSet:(ANTLRBitSet *)follow;
|
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/ |
BitSet.pm | 1 package Test::ANTLR::Runtime::BitSet;
|
/external/bison/lib/ |
bitsetv-print.c | 0 /* Bitset vectors.
|
/external/bison/src/ |
lalr.h | 24 # include <bitset.h>
|
/external/chromium_org/third_party/icu/source/test/perf/usetperf/ |
Makefile.in | 25 OBJECTS = usetperf.o bitset.o
|
/external/chromium_org/ui/events/x/ |
device_data_manager.h | 17 #include <bitset> 257 std::bitset<kMaxXIEventType> xi_device_event_types_; 261 std::bitset<kMaxDeviceNum> cmt_devices_; 262 std::bitset<kMaxDeviceNum> touchpads_;
|
/external/icu4c/test/perf/usetperf/ |
Makefile.in | 25 OBJECTS = usetperf.o bitset.o
|