Home
last modified time | relevance | path

Searched refs:IntSet (Results 1 – 25 of 42) sorted by relevance

12

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
DIntSet.java43 public interface IntSet { interface
50 void addAll(IntSet set); in addAll()
55 IntSet and(IntSet a); in and()
57 IntSet complement(IntSet elements); in complement()
59 IntSet or(IntSet a); in or()
61 IntSet subtract(IntSet a); in subtract()
DBitSet.java53 public class BitSet implements IntSet, Cloneable {
96 public void addAll(IntSet set) { in addAll()
151 public IntSet and(IntSet a) { in and()
287 public IntSet complement() { in complement()
293 public IntSet complement(IntSet set) { in complement()
341 public static BitSet of(IntSet set) { in of()
371 public IntSet or(IntSet a) { in or()
442 public IntSet subtract(IntSet a) { in subtract()
DIntervalSet.java52 public class IntervalSet implements IntSet {
187 public void addAll(IntSet set) { in addAll()
205 public IntSet complement(int minElement, int maxElement) { in complement()
215 public IntSet complement(IntSet vocabulary) { in complement()
260 public IntSet subtract(IntSet other) { in subtract()
390 public IntSet or(IntSet a) { in or()
403 public IntSet and(IntSet other) { in and()
/external/ceres-solver/internal/ceres/
Dcanonical_views_clustering.cc49 typedef HashSet<int> IntSet; typedef
69 void FindValidViews(IntSet* valid_views) const;
109 IntSet valid_views; in ComputeClustering()
117 for (IntSet::const_iterator view = valid_views.begin(); in ComputeClustering()
148 IntSet* valid_views) const { in FindValidViews()
149 const IntSet& views = graph_->vertices(); in FindValidViews()
150 for (IntSet::const_iterator view = views.begin(); in FindValidViews()
171 const IntSet& neighbors = graph_->Neighbors(candidate); in ComputeClusteringQualityDifference()
172 for (IntSet::const_iterator neighbor = neighbors.begin(); in ComputeClusteringQualityDifference()
198 const IntSet& neighbors = graph_->Neighbors(canonical_view); in UpdateCanonicalViewAssignments()
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DMachineProbe.java31 import org.antlr.misc.IntSet;
79 public List<IntSet> getEdgeLabels(DFAState targetState) { in getEdgeLabels()
81 List<IntSet> labels = new ArrayList<IntSet>(); in getEdgeLabels()
101 public String getInputSequenceDisplay(Grammar g, List<IntSet> labels) { in getInputSequenceDisplay()
103 for (IntSet label : labels) in getInputSequenceDisplay()
116 List<Set<NFAState>> nfaStates, List<IntSet> labels) { in getGrammarLocationsForInputSequence()
121 IntSet label = labels.get(i); in getGrammarLocationsForInputSequence()
DLabel.java30 import org.antlr.misc.IntSet;
122 protected IntSet labelSet;
129 public Label(IntSet labelSet) { in Label()
217 public IntSet getSet() { in getSet()
225 public void setSet(IntSet set) { in setSet()
244 public boolean matches(IntSet set) { in matches()
DLookaheadSet.java30 import org.antlr.misc.IntSet;
46 public LookaheadSet(IntSet s) { in LookaheadSet()
77 IntSet i = this.tokenTypeSet.and(s.tokenTypeSet); in intersection()
DDFAState.java30 import org.antlr.misc.IntSet;
317 IntSet t = label.getSet(); in addReachableLabel()
318 IntSet remainder = t; // remainder starts out as whole set to add in addReachableLabel()
338 IntSet s_i = rl.getSet(); in addReachableLabel()
339 IntSet intersection = s_i.and(t); in addReachableLabel()
343 IntSet existingMinusNewElements = s_i.subtract(t); in addReachableLabel()
/external/dexmaker/src/dx/java/com/android/dx/ssa/
DSetFactory.java20 import com.android.dx.util.IntSet;
65 /*package*/ static IntSet makeDomFrontSet(int szBlocks) { in makeDomFrontSet()
78 public static IntSet makeInterferenceSet(int countRegs) { in makeInterferenceSet()
90 /*package*/ static IntSet makeLivenessSet(int countRegs) { in makeLivenessSet()
DInterferenceRegisterMapper.java22 import com.android.dx.util.IntSet;
88 IntSet existing = newRegInterference.get(newReg); in interferes()
DDomFront.java19 import com.android.dx.util.IntSet;
51 public IntSet dominanceFrontiers;
DSsaBasicBlock.java32 import com.android.dx.util.IntSet;
106 private IntSet liveIn;
112 private IntSet liveOut;
819 public IntSet getLiveInRegs() { in getLiveInRegs()
832 public IntSet getLiveOutRegs() { in getLiveOutRegs()
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
DInterferenceGraph.java25 import com.android.dx.util.IntSet;
41 private final ArrayList<IntSet> interference;
50 interference = new ArrayList<IntSet>(countRegs); in InterferenceGraph()
93 public void mergeInterferenceSet(int reg, IntSet set) { in mergeInterferenceSet()
DFirstFitAllocator.java25 import com.android.dx.util.IntSet;
87 IntSet current = new BitIntSet(oldRegCount); in allocateRegisters()
DRegisterAllocator.java30 import com.android.dx.util.IntSet;
178 IntSet liveOut = block.getLiveOutRegs(); in insertMoveBefore()
/external/emma/core/java12/com/vladium/util/
DIntSet.java23 final class IntSet class
30 public IntSet () in IntSet() method in IntSet
38 public IntSet (final int initialCapacity) in IntSet() method in IntSet
49 public IntSet (int initialCapacity, final float loadFactor) in IntSet() method in IntSet
/external/emma/core/java12/com/vladium/emma/data/
DMethodDescriptor.java18 import com.vladium.util.IntSet;
145 IntSet blockIDs = (IntSet) lineMap.get (line); in getLineMap()
149 blockIDs = new IntSet (); in getLineMap()
162 final int [] blockIDs = ((IntSet) lineMap.get (line)).values (); in getLineMap()
/external/dexmaker/src/dx/java/com/android/dx/util/
DIntSet.java22 public interface IntSet { interface
52 void merge(IntSet other); in merge()
DListIntSet.java24 public class ListIntSet implements IntSet {
61 public void merge(IntSet other) { in merge()
DBitIntSet.java24 public class BitIntSet implements IntSet {
71 public void merge(IntSet other) { in merge()
/external/v8/test/cctest/
Dtest-hashmap.cc45 class IntSet { class
47 explicit IntSet(IntKeyHash hash) : hash_(hash), map_(DefaultMatchFun) {} in IntSet() function in IntSet
95 IntSet set(hash); in TestSet()
/external/chromium-trace/catapult/third_party/Paste/paste/util/
Dintset.py80 class IntSet(object): class
101 if len(args) == 1 and isinstance(args[0],IntSet):
216 if isinstance(other,IntSet):
493 x = IntSet((10,20),30)
494 y = IntSet((10,20))
495 z = IntSet((10,20),30,(15,19),min=0,max=40)
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DTreeToNFAConverter.g76 public final IntSet setRule(GrammarAST t) throws RecognitionException {
498 IntSet notAtom = grammar.complement(ttype);
512 IntSet notAtom = null;
547 //IntSet notSet = grammar.complement(stNode.getSetValue());
549 IntSet s = stNode.getSetValue();
658 IntSet elements=new IntervalSet();
674 setRule returns [IntSet elements=new IntervalSet()]
677 IntSet s=null;
691 setElement[IntSet elements]
695 IntSet ns=null;
[all …]
/external/emma/pregenerated/res/com/vladium/emma/rt/
DRTExitHook.closure3 …mma.rt.RTCoverageDataPersister,com.vladium.util.IntSet,com.vladium.logging.Logger,com.vladium.util…
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammarAST.java33 import org.antlr.misc.IntSet;
88 protected IntSet setValue = null;
321 public IntSet getSetValue() { in getSetValue()
325 public void setSetValue(IntSet setValue) { in setSetValue()

12