HomeSort by relevance Sort by last modified time
    Searched refs:BitSet (Results 101 - 125 of 263) sorted by null

1 2 3 45 6 7 8 91011

  /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) {
URLCodec.java 21 import java.util.BitSet;
59 * BitSet of www-form-url safe characters.
61 protected static final BitSet WWW_FORM_URL = new BitSet(256);
107 * @param urlsafe bitset of characters deemed URL safe
111 public static final byte[] encodeUrl(BitSet urlsafe, byte[] bytes)
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form35c.java 30 import java.util.BitSet;
100 public BitSet compatibleRegs(DalvInsn insn) {
103 BitSet bits = new BitSet(sz);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimChannel.java 37 import java.util.BitSet;
56 private BitSet affectedBones;
269 affectedBones = new BitSet(control.getSkeleton().getBoneCount());
316 BitSet getAffectedBones(){
  /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...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 34 import java.util.BitSet;
54 private BitSet predecessors;
57 private BitSet successors;
127 this.predecessors = new BitSet(parent.getBlocks().size());
128 this.successors = new BitSet(parent.getBlocks().size());
342 public BitSet getPredecessors() {
349 public BitSet getSuccessors() {
426 predecessors = new BitSet(parent.getBlocks().size());
647 * Sets the register as used in a bitset, taking into account its
653 private static void setRegsUsed (BitSet regsUsed, RegisterSpec rs)
    [all...]
LocalVariableExtractor.java 23 import java.util.BitSet;
45 private final BitSet workSet;
73 this.workSet = new BitSet(blocks.size());
PhiTypeResolver.java 25 import java.util.BitSet;
47 private final BitSet worklist;
59 worklist = new BitSet(ssaMeth.getRegCount());
SsaMethod.java 31 import java.util.BitSet;
128 * Builds a BitSet of block indices from a basic block list and a list
133 * @return BitSet of block indices
135 static BitSet bitSetFromLabelList(BasicBlockList blocks,
137 BitSet result = new BitSet(blocks.size());
378 BitSet succs = block.getSuccessors();
755 BitSet visited = new BitSet(blocks.size());
775 BitSet childre
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 35 import java.util.BitSet;
55 private BitSet predecessors;
58 private BitSet successors;
128 this.predecessors = new BitSet(parent.getBlocks().size());
129 this.successors = new BitSet(parent.getBlocks().size());
343 public BitSet getPredecessors() {
350 public BitSet getSuccessors() {
427 predecessors = new BitSet(parent.getBlocks().size());
648 * Sets the register as used in a bitset, taking into account its
654 private static void setRegsUsed (BitSet regsUsed, RegisterSpec rs)
    [all...]
LocalVariableExtractor.java 24 import java.util.BitSet;
46 private final BitSet workSet;
74 this.workSet = new BitSet(blocks.size());
PhiTypeResolver.java 26 import java.util.BitSet;
48 private final BitSet worklist;
60 worklist = new BitSet(ssaMeth.getRegCount());
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSemanticPredicates.java 33 import org.antlr.misc.BitSet;
823 BitSet s = new BitSet();
825 BitSet s2 = new BitSet();
858 BitSet s = new BitSet();
860 BitSet s2 = new BitSet();
880 BitSet s = new BitSet()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 25 import java.util.BitSet;
209 * Uses the given BitSet to determine which registers require
219 public final int getMinimumRegisterRequirement(BitSet compatRegs) {
254 * marked compatible to the format by the given BitSet.
261 public DalvInsn expandedPrefix(BitSet compatRegs) {
279 * marked compatible to the format by the given BitSet.
286 public DalvInsn expandedSuffix(BitSet compatRegs) {
309 public DalvInsn expandedVersion(BitSet compatRegs) {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 1 package ANTLR::Runtime::BitSet;
48 # Construct a bitset of size one word (64 bits)
75 # Construct a bitset given the size
89 my $bs = ANTLR::Runtime::BitSet->new({ size => $el + 1 });
146 return ANTLR::Runtime::BitSet->new(bits => $self->bits);
252 ANTLR::Runtime::BitSet - A bit set
266 A stripped-down version of org.antlr.misc.BitSet that is just good enough to
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 26 import java.util.BitSet;
210 * Uses the given BitSet to determine which registers require
220 public final int getMinimumRegisterRequirement(BitSet compatRegs) {
255 * marked compatible to the format by the given BitSet.
262 public DalvInsn expandedPrefix(BitSet compatRegs) {
280 * marked compatible to the format by the given BitSet.
287 public DalvInsn expandedSuffix(BitSet compatRegs) {
310 public DalvInsn expandedVersion(BitSet compatRegs) {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DatabaseAsserts.java 29 import java.util.BitSet;
189 final BitSet used = new BitSet(cursor.getCount());
  /cts/tests/tests/security/src/android/security/cts/
ClonedSecureRandomTest.java 34 import java.util.BitSet;
99 * Using a byte[][] and BitSet gives us a fixed upper bound for the
106 BitSet seenPids = new BitSet(MAX_PID);
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 24 import java.util.BitSet;
58 BitSet toDelete = new BitSet(blocks.getMaxLabel());
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
bitset.cpp 6 * file name: bitset.cpp
84 class BitSet : public UObject, public UnicodeContainable {
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
172 ~BitSet() {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 29 import java.util.BitSet;
63 BitSet toDelete = new BitSet(blocks.getMaxLabel());
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 6 * file name: bitset.cpp
84 class BitSet : public UObject, public UnicodeContainable {
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
172 ~BitSet() {
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
InputCapsule.java 42 import java.util.BitSet;
107 // BitSet
109 public BitSet readBitSet(String name, BitSet defVal) throws IOException;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 473 class BitSet
476 BitSet() : marker(false), data(0), size(0) { }
477 BitSet(unsigned int nBits, bool zero) : marker(false), data(0), size(0)
481 ~BitSet()
494 void setOr(BitSet *, BitSet *); // second BitSet may be NULL
540 BitSet& operator|=(const BitSet&);
542 BitSet& operator=(const BitSet& set
    [all...]

Completed in 423 milliseconds

1 2 3 45 6 7 8 91011