Searched defs:Map (Results 76 - 100 of 136) sorted by relevance

123456

/external/guava/guava/src/com/google/common/collect/
H A DStandardTable.java38 import java.util.Map;
39 import java.util.Map.Entry;
55 * the data is stored in a {@code Map<R, Map<C, V>>}. A method call like {@code
68 @GwtTransient final Map<R, Map<C, V>> backingMap;
69 @GwtTransient final Supplier<? extends Map<C, V>> factory;
71 StandardTable(Map<R, Map<C, V>> backingMap, argument
72 Supplier<? extends Map<
[all...]
H A DTables.java33 import java.util.Map;
158 public Map<C, V> column(R columnKey) {
168 public Map<R, Map<C, V>> columnMap() {
214 public Map<R, V> row(C rowKey) {
224 public Map<C, Map<R, V>> rowMap() {
257 * generate a table based on arbitrary {@link Map} classes.
272 * the data is stored in a {@code Map<R, Map<
297 newCustomTable( Map<R, Map<C, V>> backingMap, Supplier<? extends Map<C, V>> factory) argument
[all...]
H A DAbstractMapBasedMultimap.java36 import java.util.Map;
37 import java.util.Map.Entry;
110 private transient Map<K, Collection<V>> map;
120 protected AbstractMapBasedMultimap(Map<K, Collection<V>> map) {
126 final void setMap(Map<K, Collection<V>> map) {
170 Map<K, Collection<V>> backingMap() {
843 KeySet(final Map<K, Collection<V>> subMap) { argument
848 final Iterator<Map.Entry<K, Collection<V>>> entryIterator
851 Map.Entry<K, Collection<V>> entry;
962 final Iterator<Map
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java34 import java.util.Map;
828 Map<Integer, AtomicInteger> replica,
854 Map<Integer, AtomicInteger> replica, int value) {
827 insertIntoReplica( Map<Integer, AtomicInteger> replica, int newValue) argument
853 removeFromReplica( Map<Integer, AtomicInteger> replica, int value) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateIntervalInfo.java16 import java.util.Map;
17 import java.util.Map.Entry;
305 private Map<String, Map<String, PatternInfo>> fIntervalPatterns = null;
333 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>();
404 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>(DEFAULT_HASH_SIZE);
485 Map<String, PatternInfo> oldValue = fIntervalPatterns.get(skeleton);
487 Map<String, PatternInfo> newValue = fIntervalPatterns.get(skeleton);
661 Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
698 Map<Strin
853 cloneIntervalPatterns( Map<String, Map<String, PatternInfo>> patterns) argument
[all...]
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp421 void ValueEnumerator::print(raw_ostream &OS, const ValueMapType &Map, argument
424 OS << "Map Name: " << Name << "\n";
425 OS << "Size: " << Map.size() << "\n";
426 for (ValueMapType::const_iterator I = Map.begin(),
427 E = Map.end(); I != E; ++I) {
450 void ValueEnumerator::print(raw_ostream &OS, const MetadataMapType &Map, argument
453 OS << "Map Name: " << Name << "\n";
454 OS << "Size: " << Map.size() << "\n";
455 for (auto I = Map.begin(), E = Map
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp628 RelocAddrMap *Map = StringSwitch<RelocAddrMap*>(RelSecName) local
639 if (!Map) {
643 Map = &TypesSections[*RelocatedSection].Relocs;
645 Map = &TypesDWOSections[*RelocatedSection].Relocs;
690 Map->insert(std::make_pair(Address, std::make_pair(R.Width, R.Value)));
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnknownFieldSet.java42 import java.util.Map;
89 private UnknownFieldSet(final Map<Integer, Field> fields) { argument
92 private Map<Integer, Field> fields;
110 public Map<Integer, Field> asMap() {
130 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
200 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
212 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
224 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
285 private Map<Integer, Field> fields;
395 for (final Map
[all...]
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc518 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map; typedef in struct:google::protobuf::DynamicMessageFactory::PrototypeMap
519 Map map_;
533 for (PrototypeMap::Map::iterator iter = prototypes_->map_.begin();
/external/eigen/Eigen/src/Core/
H A DPlainObjectBase.h111 template<typename PlainObjectType, int MapOptions, typename StrideType> friend class Eigen::Map;
112 friend class Eigen::Map<Derived, Unaligned>;
113 typedef Eigen::Map<Derived, Unaligned> MapType;
114 friend class Eigen::Map<const Derived, Unaligned>;
115 typedef const Eigen::Map<const Derived, Unaligned> ConstMapType;
116 friend class Eigen::Map<Derived, Aligned>;
117 typedef Eigen::Map<Derived, Aligned> AlignedMapType;
118 friend class Eigen::Map<const Derived, Aligned>;
119 typedef const Eigen::Map<const Derived, Aligned> ConstAlignedMapType;
120 template<typename StrideType> struct StridedMapType { typedef Eigen::Map<Derive
475 static inline ConstMapType Map(const Scalar* data) function in class:Eigen::PlainObjectBase
477 static inline MapType Map(Scalar* data) function in class:Eigen::PlainObjectBase
479 static inline ConstMapType Map(const Scalar* data, Index size) function in class:Eigen::PlainObjectBase
481 static inline MapType Map(Scalar* data, Index size) function in class:Eigen::PlainObjectBase
483 static inline ConstMapType Map(const Scalar* data, Index rows, Index cols) function in class:Eigen::PlainObjectBase
485 static inline MapType Map(Scalar* data, Index rows, Index cols) function in class:Eigen::PlainObjectBase
502 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
505 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
508 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, Index size, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
511 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, Index size, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
514 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, Index rows, Index cols, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
517 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, Index rows, Index cols, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
[all...]
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h301 * Specialization of Map<Quaternion<Scalar>>
306 struct traits<Map<Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
308 typedef Map<Matrix<_Scalar,4,1>, _Options> Coefficients;
314 struct traits<Map<const Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
316 typedef Map<const Matrix<_Scalar,4,1>, _Options> Coefficients;
328 * \tparam _Options see class Map
330 * This is a specialization of class Map for Quaternion. This class allows to view
333 * \sa class Map, class Quaternion, class QuaternionBase
336 class Map<const Quaternion<_Scalar>, _Options > class in namespace:Eigen
337 : public QuaternionBase<Map<cons
353 EIGEN_STRONG_INLINE Map(const Scalar* coeffs) : m_coeffs(coeffs) {} function in class:Eigen::Map
373 class Map<Quaternion<_Scalar>, _Options > class in namespace:Eigen
390 EIGEN_STRONG_INLINE Map(Scalar* coeffs) : m_coeffs(coeffs) {} function in class:Eigen::Map
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypeToken.java46 import java.util.Map;
202 * {@code Map<K, V>} for any {@code K} and {@code V} type: <pre> {@code
203 * static <K, V> TypeToken<Map<K, V>> mapOf(
205 * return new TypeToken<Map<K, V>>() {}
226 * {@code Map<K, V>} for any {@code K} and {@code V} type: <pre> {@code
227 * static <K, V> TypeToken<Map<K, V>> mapOf(
229 * return new TypeToken<Map<K, V>>() {}
428 * {@code <? extends Map<String, Integer>[]>} etc.
479 * {@code <? extends Map<String, Integer>[]>} etc.), or else {@code null} is returned.
1125 Map<
1158 sortKeysByValue( final Map<K, V> map, final Comparator<? super V> valueComparator) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMeasureUnitTest.java23 import java.util.Map;
1094 static Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> getUnitsToPerParts() {
1096 Map<MeasureUnit, Pair<String, String>> unitsToPerStrings =
1098 Map<String, MeasureUnit> namesToUnits = new HashMap<String, MeasureUnit>();
1099 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1115 Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> unitsToPerUnits =
1117 for (Map.Entry<MeasureUnit, Pair<String, String>> entry : unitsToPerStrings.entrySet()) {
1131 Map<String, MeasureUnit> seen = new HashMap<String, MeasureUnit>();
1134 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1166 Map<Strin
1165 checkForDup( Map<String, MeasureUnit> seen, String name, MeasureUnit unit) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h637 /// the SCEVUnknown components following the Map (Value -> Value).
642 ValueToValueMap &Map,
644 SCEVParameterRewriter Rewriter(SE, Map, InterpretConsts);
649 : SE(S), Map(M), InterpretConsts(C) {}
712 if (Map.count(V)) {
713 Value *NV = Map[V];
727 ValueToValueMap &Map; member in struct:llvm::SCEVParameterRewriter
734 /// the Map (Loop -> SCEV) to all AddRecExprs.
738 static const SCEV *rewrite(const SCEV *Scev, LoopToScevMapT &Map, argument
740 SCEVApplyRewriter Rewriter(SE, Map);
641 rewrite(const SCEV *Scev, ScalarEvolution &SE, ValueToValueMap &Map, bool InterpretConsts = false) argument
823 LoopToScevMapT &Map; member in struct:llvm::SCEVApplyRewriter
827 apply(const SCEV *Scev, LoopToScevMapT &Map, ScalarEvolution &SE) argument
[all...]
/external/llvm/include/llvm/IR/
H A DValueMap.h86 MapT Map; member in class:llvm::ValueMap
98 : Map(NumInitBuckets), Data() {}
100 : Map(NumInitBuckets), Data(Data) {}
111 inline iterator begin() { return iterator(Map.begin()); }
112 inline iterator end() { return iterator(Map.end()); }
113 inline const_iterator begin() const { return const_iterator(Map.begin()); }
114 inline const_iterator end() const { return const_iterator(Map.end()); }
116 bool empty() const { return Map.empty(); }
117 size_type size() const { return Map.size(); }
120 void resize(size_t Size) { Map
224 ValueMapT *Map; member in class:llvm::ValueMapCallbackVH
226 ValueMapCallbackVH(KeyT Key, ValueMapT *Map) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp39 MMIAddrLabelMap *Map; member in class:llvm::MMIAddrLabelMapCallbackPtr
41 MMIAddrLabelMapCallbackPtr() : Map(nullptr) {}
42 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(nullptr) {}
48 void setMap(MMIAddrLabelMap *map) { Map = map; }
245 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
249 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
517 /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call site
/external/llvm/lib/IR/
H A DConstantsContext.h550 MapTy Map; member in class:llvm::ConstantUniqueMap
553 typename MapTy::iterator map_begin() { return Map.begin(); }
554 typename MapTy::iterator map_end() { return Map.end(); }
557 for (auto &I : Map)
579 if (I == Map.end())
590 return Map.find_as(Lookup);
594 void insert(ConstantClass *CP) { Map[CP] = '\0'; }
598 typename MapTy::iterator I = Map.find(CP);
599 assert(I != Map.end() && "Constant not found in constant table!");
601 Map
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp61 StringMap<int> Map; member in class:__anon11187::NameToIdxMap
65 return !Map.insert(std::make_pair(Name, (int)i)).second;
69 StringMap<int>::const_iterator I = Map.find(Name);
70 if (I == Map.end())
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp288 // Map the param back to the param of the original function declaration
732 // Merge values from Map into the current variable map.
734 void SExprBuilder::mergeEntryMap(LVarDefinitionMap Map) { argument
738 // Steal Map, using copy-on-write.
739 CurrentLVarMap = std::move(Map);
742 if (CurrentLVarMap.sameAs(Map))
747 unsigned MSz = Map.size();
751 if (CurrentLVarMap[i].first != Map[i].first) {
757 if (CurrentLVarMap[i].second != Map[i].second)
758 makePhiNodeVar(i, NPreds, Map[
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp159 void DiagnosticsEngine::setSeverity(diag::kind Diag, diag::Severity Map, argument
164 (Map == diag::Severity::Fatal || Map == diag::Severity::Error)) &&
172 if (Map == diag::Severity::Warning) {
176 Map = Info.getSeverity();
178 DiagnosticMapping Mapping = makeUserMapping(Map, L);
228 StringRef Group, diag::Severity Map,
237 setSeverity(Diag, Map, Loc);
304 diag::Severity Map,
313 setSeverity(AllDiags[i], Map, Lo
227 setSeverityForGroup(diag::Flavor Flavor, StringRef Group, diag::Severity Map, SourceLocation Loc) argument
303 setSeverityForAll(diag::Flavor Flavor, diag::Severity Map, SourceLocation Loc) argument
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp139 diag::Severity Map, StringRef Str) override;
444 diag::Severity Map,
449 switch (Map) {
442 PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, diag::Severity Map, StringRef Str) argument
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp986 StoredDeclsMap *Map = NS->buildLookup(); local
989 LookupResults.reserve(Map->size());
990 for (auto &Entry : *Map)
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1264 SemanticSpellingMap &Map) {
1287 Map[Idx] = EnumName;
1310 const SemanticSpellingMap &Map,
1314 for (const auto &I : Map)
1263 CreateSemanticSpellings(const std::vector<FlattenedSpelling> &Spellings, SemanticSpellingMap &Map) argument
1309 WriteSemanticSpellingSwitch(const std::string &VarName, const SemanticSpellingMap &Map, raw_ostream &OS) argument
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h93 typedef MappedSparseMatrix<Scalar,Flags> Map; typedef in class:Eigen::SparseMatrix
110 Eigen::Map<Matrix<Index,Dynamic,1> > innerNonZeros() { return Eigen::Map<Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); }
111 const Eigen::Map<const Matrix<Index,Dynamic,1> > innerNonZeros() const { return Eigen::Map<const Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); }
699 Eigen::Map<Matrix<Index, Dynamic, 1> >(&this->m_data.index(0), rows()).setLinSpaced(0, rows()-1);
700 Eigen::Map<Matrix<Scalar, Dynamic, 1> >(&this->m_data.value(0), rows()).setOnes();
701 Eigen::Map<Matrix<Index, Dynamic, 1> >(this->m_outerIndex, rows()+1).setLinSpaced(0, rows());
1075 Eigen::Map<Matrix<Index, Dynamic, 1> > (dest.m_outerIndex,dest.outerSize()).setZero();
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h150 static SluMatrix Map(MatrixBase<MatrixType>& _mat) function in struct:Eigen::SluMatrix
168 static SluMatrix Map(SparseMatrixBase<MatrixType>& mat) function in struct:Eigen::SluMatrix
267 return SluMatrix::Map(mat);
655 m_sluB = SluMatrix::Map(b.const_cast_derived());
656 m_sluX = SluMatrix::Map(x.derived());
662 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
965 m_sluB = SluMatrix::Map(b.const_cast_derived());
966 m_sluX = SluMatrix::Map(x.derived());
972 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());

Completed in 715 milliseconds

123456