Home
last modified time | relevance | path

Searched refs:IKey (Results 1 – 5 of 5) sorted by relevance

/external/jcommander/src/main/java/com/beust/jcommander/
DFuzzyMap.java12 interface IKey { interface in FuzzyMap
16 public static <V> V findInMap(Map<? extends IKey, V> map, IKey name, in findInMap() argument
24 for (IKey c : map.keySet()) { in findInMap()
34 private static <V> V findAbbreviatedValue(Map<? extends IKey, V> map, IKey name, in findAbbreviatedValue() argument
38 for (IKey c : map.keySet()) { in findAbbreviatedValue()
DStringKey.java3 import com.beust.jcommander.FuzzyMap.IKey;
5 public class StringKey implements IKey {
DJCommander.java41 import com.beust.jcommander.FuzzyMap.IKey;
71 private Map<IKey, ParameterDescription> m_descriptions;
128 private Map<IKey, ProgramName> aliasMap = Maps.newLinkedHashMap();
409 for (Map.Entry<IKey, ParameterDescription> es : m_descriptions.entrySet()) { in getPrefixDescriptionFor()
1399 IKey alias = new StringKey(a); in addCommand()
1502 private static final class ProgramName implements IKey {
/external/llvm/lib/CodeGen/
DRegAllocPBQP.cpp189 typedef std::pair<AllowedRegVecPtr, AllowedRegVecPtr> IKey; typedef in __anond9172c710111::Interference
190 typedef DenseMap<IKey, PBQPRAGraph::MatrixPtr> IMatrixCache;
191 typedef DenseSet<IKey> DisjointAllowedRegsCache;
205 return D.count(IKey(NRegs, MRegs)) > 0; in haveDisjointAllowedRegs()
207 return D.count(IKey(MRegs, NRegs)) > 0; in haveDisjointAllowedRegs()
219 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()
221 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()
379 IKey K(&NRegs, &MRegs); in createInterferenceEdge()
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h344 const internal_key_type &IKey = InfoObj.GetInternalKey(EKey);
345 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
346 return find_hashed(IKey, KeyHash, InfoPtr);
350 iterator find_hashed(const internal_key_type &IKey, hash_value_type KeyHash,
391 if (!InfoPtr->EqualKey(X, IKey)) {