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

1 2 3 4 5 6 7 891011

  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 33 import java.util.BitSet;
56 /** Bitset containing bits for each block that has been found executable */
57 private BitSet executableBlocks;
76 this.executableBlocks = new BitSet(ssaMeth.getBlocks().size());
EscapeAnalysis.java 43 import java.util.BitSet;
57 BitSet regSet;
75 regSet = new BitSet(size);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoEncoder.java 38 import java.util.BitSet;
531 BitSet seen = new BitSet(regSize - argBase);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 34 import java.util.BitSet;
57 /** Bitset containing bits for each block that has been found executable */
58 private BitSet executableBlocks;
77 this.executableBlocks = new BitSet(ssaMeth.getBlocks().size());
EscapeAnalysis.java 44 import java.util.BitSet;
58 BitSet regSet;
76 regSet = new BitSet(size);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g 48 import org.antlr.runtime.BitSet;
AssignTokenTypesWalker.g 98 import org.antlr.runtime.BitSet;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java 38 import java.util.BitSet;
64 private BitSet analyzedInstructions;
120 analyzedInstructions = new BitSet(instructions.size());
185 BitSet instructionsToAnalyze = new BitSet(instructions.size());
192 BitSet undeodexedInstructions = new BitSet(instructions.size());
309 BitSet instructionsToVerify = new BitSet(instructions.size());
310 BitSet verifiedInstructions = new BitSet(instructions.size())
    [all...]
AnalyzedInstruction.java 180 protected boolean mergeRegister(int registerNumber, RegisterType registerType, BitSet verifiedInstructions) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java     [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 47 import java.util.BitSet;
261 public void write(BitSet value, String name, BitSet defVal)
265 writeAlias(name, BinaryClassField.BITSET);
674 // BitSet
676 protected void write(BitSet value) throws IOException {
BinaryInputCapsule.java 47 import java.util.BitSet;
86 case BinaryClassField.BITSET: {
266 public BitSet readBitSet(String name, BitSet defVal) throws IOException {
270 return (BitSet) fieldData.get(field.alias);
    [all...]
  /frameworks/native/include/input/
InputTransport.h 36 #include <utils/BitSet.h>
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 27 #include <utils/BitSet.h>
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 223 BitSet usedBeforeAssigned(allLValues.getSize(), true);
224 BitSet assigned(allLValues.getSize(), true);
nv50_ir.h 905 BitSet liveSet;
906 BitSet defSet;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 223 BitSet usedBeforeAssigned(allLValues.getSize(), true);
224 BitSet assigned(allLValues.getSize(), true);
  /external/guava/guava/src/com/google/common/primitives/
Booleans.java 29 import java.util.BitSet;
77 * BitSet} instead, replacing {@code Booleans.contains(array, true)}
78 * with {@code !bitSet.isEmpty()} and {@code Booleans.contains(array, false)}
79 * with {@code bitSet.nextClearBit(0) == sizeOfBitSet}.
99 * <p><b>Note:</b> consider representing the array as a {@link BitSet}
100 * instead, and using {@link BitSet#nextSetBit(int)} or {@link
101 * BitSet#nextClearBit(int)}.
301 * BitSet} instead.
  /frameworks/base/services/input/
EventHub.h 36 #include <utils/BitSet.h>
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 38 import org.antlr.misc.BitSet;
592 BitSet bits = BitSet.of(follow.tokenTypeSet);
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatTest.java 29 import java.util.BitSet;
619 BitSet failures = new BitSet();
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 31 import java.util.BitSet;
    [all...]
SerializationStressTest4.java 552 // java.io.ObjectOutputStream.writeObject(java.util.BitSet)
558 objToSave = new java.util.BitSet();
559 ((java.util.BitSet) objToSave).set(3);
560 ((java.util.BitSet) objToSave).set(5);
561 ((java.util.BitSet) objToSave).set(61, 89);
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 105 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
149 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
172 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
189 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
515 * @returns {org.antlr.runtime.BitSet}
577 * @returns {org.antlr.runtime.BitSet}
587 * @returns {org.antlr.runtime.BitSet}
593 followSet = new org.antlr.runtime.BitSet();
646 * @param {org.antlr.runtime.BitSet} follow
682 * @param {org.antlr.runtime.BitSet} follo
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMInputCapsule.java     [all...]

Completed in 586 milliseconds

1 2 3 4 5 6 7 891011