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

1 2 3 45 6 7 8 910

  /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 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) {
  /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) {
  /dalvik/dx/src/com/android/dx/ssa/
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());
SsaMethod.java 32 import java.util.BitSet;
129 * Builds a BitSet of block indices from a basic block list and a list
134 * @return BitSet of block indices
136 static BitSet bitSetFromLabelList(BasicBlockList blocks,
138 BitSet result = new BitSet(blocks.size());
379 BitSet succs = block.getSuccessors();
756 BitSet visited = new BitSet(blocks.size());
776 BitSet childre
    [all...]
Dominators.java 20 import java.util.BitSet;
94 private BitSet getSuccs(SsaBasicBlock block) {
102 private BitSet getPreds(SsaBasicBlock block) {
195 BitSet preds = getPreds(w);
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 29 import java.util.BitSet;
63 BitSet toDelete = new BitSet(blocks.getMaxLabel());
FirstFitLocalCombiningAllocator.java 33 import java.util.BitSet;
59 private final BitSet ssaRegsMapped;
68 private final BitSet reservedRopRegs;
71 private final BitSet usedRopRegs;
89 ssaRegsMapped = new BitSet(ssaMeth.getRegCount());
104 reservedRopRegs = new BitSet(paramRangeEnd * 2);
106 usedRopRegs = new BitSet(paramRangeEnd * 2);
460 BitSet predBlocks = insn.getBlock().getPredecessors();
796 BitSet resultMovesRequired = null;
820 BitSet curMovesRequired = new BitSet(szSources)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
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());
SsaMethod.java 32 import java.util.BitSet;
129 * Builds a BitSet of block indices from a basic block list and a list
134 * @return BitSet of block indices
136 static BitSet bitSetFromLabelList(BasicBlockList blocks,
138 BitSet result = new BitSet(blocks.size());
379 BitSet succs = block.getSuccessors();
756 BitSet visited = new BitSet(blocks.size());
776 BitSet childre
    [all...]
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 284 return GetTokens(start, stop, default(BitSet));
288 * the token type BitSet. Return null if no tokens were found. This
291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) {
316 return GetTokens(start, stop, new BitSet(types));
320 return GetTokens(start, stop, BitSet.Of(ttype));
LegacyCommonTokenStream.cs 235 return GetTokens(start, stop, (BitSet)null);
240 * the token type BitSet. Return null if no tokens were found. This
244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) {
273 return GetTokens(start, stop, new BitSet(types));
277 return GetTokens(start, stop, BitSet.Of(ttype));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 324 return GetTokens(start, stop, default(BitSet));
328 * the token type BitSet. Return null if no tokens were found. This
331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types)
361 return GetTokens(start, stop, new BitSet(types));
366 return GetTokens(start, stop, BitSet.Of(ttype));
LegacyCommonTokenStream.cs 261 return GetTokens( start, stop, (BitSet)null );
266 * the token type BitSet. Return null if no tokens were found. This
270 public virtual IList<IToken> GetTokens( int start, int stop, BitSet types )
308 return GetTokens( start, stop, new BitSet( types ) );
313 return GetTokens( start, stop, BitSet.Of( ttype ) );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 184 return GetTokens( start, stop, (BitSet)null );
189 * the token type BitSet. Return null if no tokens were found. This
193 public IList<SlimToken> GetTokens( int start, int stop, BitSet types )
231 return GetTokens( start, stop, new BitSet( types ) );
236 return GetTokens( start, stop, BitSet.Of( ttype ) );
  /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));
Parser.java 62 BitSet follow)
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRParser.h 51 BitSet:(ANTLRBitSet *)follow;

Completed in 460 milliseconds

1 2 3 45 6 7 8 910