/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form11x.java | 25 import java.util.BitSet; 74 public BitSet compatibleRegs(DalvInsn insn) { 76 BitSet bits = new BitSet(1);
|
Form21t.java | 25 import java.util.BitSet; 79 public BitSet compatibleRegs(DalvInsn insn) { 81 BitSet bits = new BitSet(1);
|
Form22t.java | 25 import java.util.BitSet; 81 public BitSet compatibleRegs(DalvInsn insn) { 83 BitSet bits = new BitSet(2);
|
Form22x.java | 25 import java.util.BitSet; 76 public BitSet compatibleRegs(DalvInsn insn) { 78 BitSet bits = new BitSet(2);
|
Form23x.java | 25 import java.util.BitSet; 78 public BitSet compatibleRegs(DalvInsn insn) { 80 BitSet bits = new BitSet(3);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCParser.java | [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCParser.java | [all...] |
/external/smack/src/org/xbill/DNS/ |
NXTRecord.java | 22 private BitSet bitmap; 37 NXTRecord(Name name, int dclass, long ttl, Name next, BitSet bitmap) { 46 bitmap = new BitSet(); 59 bitmap = new BitSet(); 93 public BitSet
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
PostInstructionRegisterInfoMethodItem.java | 40 import java.util.BitSet; 62 BitSet registers = new BitSet(registerCount); 77 private void addDestRegs(BitSet printPostRegister, int registerCount) { 86 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers) throws IOException {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
DebugTreeGrammar.cs | 815 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL}); 816 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL}); 817 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL}); 818 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL}); 819 public static readonly BitSet _expr_in_stat102 = new BitSet(new ulong[]{0x8UL}) [all...] |
ProfileTreeGrammar.cs | 820 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL}); 821 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL}); 822 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL}); 823 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL}); 824 public static readonly BitSet _expr_in_stat102 = new BitSet(new ulong[]{0x8UL}) [all...] |
/libcore/luni/src/main/java/java/util/ |
BitSet.java | 29 * The {@code BitSet} class implements a 31 * Each element is either true or false. A {@code BitSet} is created with a given size and grows 34 public class BitSet implements Serializable, Cloneable { 74 * Creates a new {@code BitSet} with size equal to 64 bits. 76 public BitSet() { 81 * Creates a new {@code BitSet} with size equal to {@code bitCount}, rounded up to 86 public BitSet(int bitCount) { 94 private BitSet(long[] bits) { 106 BitSet clone = (BitSet) super.clone() [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
BitSet.as | 30 /**A stripped-down version of org.antlr.misc.BitSet that is just 34 public class BitSet { 49 public function BitSet(bits:Array = null) { 61 public static function of(... args):BitSet { 62 var s:BitSet = new BitSet(); 70 public function or(a:BitSet):BitSet { 74 var s:BitSet = this.clone(); 97 public function orInPlace(a:BitSet):void [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/test/ |
cmap_iterator_test.cc | 40 typedef std::vector<bool> BitSet; 67 BitSet* GenerateCMapEntries(int32_t start, int32_t count); 70 BitSet* bit_set); 89 BitSet* CMapIteratorTests::GenerateCMapEntries(int32_t start, int32_t count) { 90 BitSet* entries = new BitSet(count); 102 BitSet* bit_set) { 104 BitSet::iterator end = bit_set->end(), 124 fprintf(stderr, "%s %d: Differences between iterator and bitset: %d\n", 131 BitSet* bit_set = GenerateCMapEntries(0, 0x10ffff) [all...] |
/external/sfntly/cpp/src/test/ |
cmap_iterator_test.cc | 40 typedef std::vector<bool> BitSet; 67 BitSet* GenerateCMapEntries(int32_t start, int32_t count); 70 BitSet* bit_set); 89 BitSet* CMapIteratorTests::GenerateCMapEntries(int32_t start, int32_t count) { 90 BitSet* entries = new BitSet(count); 102 BitSet* bit_set) { 104 BitSet::iterator end = bit_set->end(), 124 fprintf(stderr, "%s %d: Differences between iterator and bitset: %d\n", 131 BitSet* bit_set = GenerateCMapEntries(0, 0x10ffff) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaConverter.java | 23 import java.util.BitSet; 205 BitSet preds = (BitSet)block.getPredecessors().clone(); 242 BitSet successors = (BitSet)block.getSuccessors().clone(); 300 BitSet[] defsites = new BitSet[regCount]; 303 BitSet[] phisites = new BitSet[regCount]; 306 defsites[i] = new BitSet(blockCount) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaConverter.java | 24 import java.util.BitSet; 206 BitSet preds = (BitSet)block.getPredecessors().clone(); 243 BitSet successors = (BitSet)block.getSuccessors().clone(); 301 BitSet[] defsites = new BitSet[regCount]; 304 BitSet[] phisites = new BitSet[regCount]; 307 defsites[i] = new BitSet(blockCount) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form21t.java | 24 import java.util.BitSet; 78 public BitSet compatibleRegs(DalvInsn insn) { 80 BitSet bits = new BitSet(1);
|
Form22t.java | 24 import java.util.BitSet; 80 public BitSet compatibleRegs(DalvInsn insn) { 82 BitSet bits = new BitSet(2);
|
Form22x.java | 24 import java.util.BitSet; 75 public BitSet compatibleRegs(DalvInsn insn) { 77 BitSet bits = new BitSet(2);
|
Form23x.java | 24 import java.util.BitSet; 77 public BitSet compatibleRegs(DalvInsn insn) { 79 BitSet bits = new BitSet(3);
|
Form31i.java | 26 import java.util.BitSet; 88 public BitSet compatibleRegs(DalvInsn insn) { 90 BitSet bits = new BitSet(1);
|
Form31t.java | 24 import java.util.BitSet; 77 public BitSet compatibleRegs(DalvInsn insn) { 79 BitSet bits = new BitSet(1);
|
Form32x.java | 24 import java.util.BitSet; 74 public BitSet compatibleRegs(DalvInsn insn) { 76 BitSet bits = new BitSet(2);
|
Form51l.java | 27 import java.util.BitSet; 85 public BitSet compatibleRegs(DalvInsn insn) { 87 BitSet bits = new BitSet(1);
|